Is it possible to use Java5 level annotations to generate EMF using "annotated Java"?
I've recently discovered that it was possible to use annotated Java code to generate an EMF model. However, I was stunned by the fact that this annotated Java code use javadoc annotations, that are not compiled, and as a consequence of very little interest.
So, is it possible to use Java5 level annotations instead ?
EDIT According to Eclips开发者_开发知识库e help, it seems possible to use Java5 code, but no Java5 annotations seems to be provided ... is it really the case ?
No it is not possible. The current Java importer only looks at JavaDoc annotations, not Java5 annotations.
精彩评论