Richard Wettel wrote:
Hi, Doru.
That's good news.
What I indeed found in the mse file is the following:
(FAMIX.AnnotationInstance
(id: 17584)
(name 'SuppressWarnings')
(belongsTo (idref: 17582))
(defaultValue {'deprecation';'unchecked'})
)
To make it work, I modified it to:
(FAMIX.AnnotationInstance
(id: 17584)
(name 'SuppressWarnings')
(belongsTo (idref: 17582))
(defaultValue 'deprecation')
)
I guess that should be (defaultValue 'deprecation' 'unchecked'),
or is
AnnotationInstance not multivalued? It al least seems like that's what
java wants it to be...