Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Ecore/EObject"

(New page: All EMF generated models implement the [http://download.eclipse.org/modeling/emf/emf/javadoc/2.6.0/org/eclipse/emf/ecore/EObject.html EObject interface], and directly or indirectly ext...)
(No difference)

Revision as of 21:08, 9 December 2010

All EMF generated models implement the EObject interface, and directly or indirectly extends the EObjectImpl superclass.

Documentation

FAQ

How to obtain EPackage that contains an EObject?

eObject.eClass().getEPackage()

Back to the top