How do I navigate, programmatically in java, an Ecore model to extract the elements information?
feedback
|
|
The best single resource on EMF is the "Eclipse Modeling Framework" book (2nd edition). @Pangea's answer links to the EObject interfaces. But a better way to use a model instance is to use the generated interfaces. If you read the "A Tour of the Eclipse Modeling Framework" article by Lars Vogel, it includes a simple example of accessing a model using the generated APIs. And "the book" has a lot more on this subject. | |||||||
feedback
|
|
You can use EObject's api like eContents(), eSet(), eGet() etc..or you can use oAW's xText. | |||
|
feedback
|