| Summary: | getting the selected model when loading a model from EMF Registry | ||
|---|---|---|---|
| Product: | [Modeling] MoDisco | Reporter: | Missing name <trostren> |
| Component: | Infrastructure | Assignee: | Fabien Giquel <fabien.giquel> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P2 | CC: | fabien.giquel, gdupe, hugo.bruneliere, modisco.web-inbox |
| Version: | 0.8.0 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
|
Description
Missing name
Hello Tony,
that is uml2 eclipse components declaration which induces this behavior.
Here is an extract of "org.eclipse.uml2.uml plugin.xml" :
<extension point="org.eclipse.emf.ecore.generated_package">
<package
uri = "http://www.eclipse.org/uml2/2.0.0/UML"
class = "org.eclipse.uml2.uml.UMLPackage" />
</extension>
<extension point="org.eclipse.emf.ecore.generated_package">
<package
uri = "http://www.eclipse.org/uml2/2.1.0/UML"
class = "org.eclipse.uml2.uml.UMLPackage" />
</extension>
<extension point="org.eclipse.emf.ecore.generated_package">
<package
uri = "http://www.eclipse.org/uml2/3.0.0/UML"
class = "org.eclipse.uml2.uml.UMLPackage"
genModel = "model/UML.genmodel" />
</extension>
The three uris are declared implemented by the same EPackage class (wich has "http://www.eclipse.org/uml2/3.0.0/UML" uri). The declaration for two old uris respond to compatibility requirements.
Not a MoDisco bug. |