Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "MDT/UML2/New and Noteworthy/Luna"

< MDT‎ | UML2
m (Bug 401804)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
MDT UML2 New and Noteworthy items for the Kepler release.  
+
MDT UML2 New and Noteworthy items for the Luna release.  
  
 
For a complete list of the enhancements provided in the Luna release, see the [http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/uml2/project-info/plan_luna.xml&component=UML2 Luna Project Plan].
 
For a complete list of the enhancements provided in the Luna release, see the [http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/uml2/project-info/plan_luna.xml&component=UML2 Luna Project Plan].
Line 5: Line 5:
 
== Milestone 3 ==
 
== Milestone 3 ==
  
This milestone was completed on November 15, 2013.
+
This milestone was completed on November 11, 2013.
  
 
====Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=251963 251963]====
 
====Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=251963 251963]====
Line 31: Line 31:
 
== Milestone 4 ==
 
== Milestone 4 ==
  
This milestone was completed on December 20, 2014.
+
This milestone was completed on December 16, 2013.
  
 
====Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=180744 180744]====
 
====Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=180744 180744]====
Line 81: Line 81:
 
== Milestone 5 ==
 
== Milestone 5 ==
  
This milestone was completed on January 31, 2014.
+
This milestone was completed on January 27, 2014.
  
 
====Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=227616 227616]====
 
====Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=227616 227616]====
Line 151: Line 151:
  
 
[[Image:uml2nn_420338model.png]]
 
[[Image:uml2nn_420338model.png]]
 +
 +
== Milestone 6 ==
 +
 +
This milestone was completed on March 10, 2014.
 +
 +
====Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=418466 418466]====
 +
 +
The UML2 API has been updated based on the latest version of the UML (and MOF) specification (UML 2.5).
 +
 +
*  The version of UML as defined by the OMG is UML 2.5.
 +
*  The latest version of the UML2 API is 5.0.0.
 +
 +
* The UML2 API was regenerated based on updated specification changes.
 +
 +
* The metamodel from which the UML2 API is generated was updated.
 +
 +
* A static versions of the new standard UML profile was introduced.
 +
 +
* Migration code was added to migrate previous versions of serialized UML to the latest.
 +
 +
* A migration guide was created at http://wiki.eclipse.org/MDT/UML2/UML2_5.0_Migration_Guide .
 +
 +
====Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=427833 427833]====
 +
 +
The sample UML tree editor now shows error/warning markers (with tooltips) for validation problems.
 +
 +
[[Image:uml2nn_427833.png]]

Latest revision as of 11:39, 23 February 2014

MDT UML2 New and Noteworthy items for the Luna release.

For a complete list of the enhancements provided in the Luna release, see the Luna Project Plan.

Milestone 3

This milestone was completed on November 11, 2013.

Bug 251963

The UML2 package merge algorithm now injects documentation into the generated API to indicate the source package of classes, properties, and operations that originate in merge increments when the Capabilities merge option is enabled. For API elements defined in the receiving package of the merge, no such annotation is included in the documentation.

Uml2luna nn251963.png

Bug 268444

The Apply Stereotype action's dialog is enhanced to let the user specify an alternative resource in which to store the resultant stereotype application(s).

Uml2luna nn268444.png

Bug 397508

A new class org.eclipse.uml2.uml.validation.UMLTraversalStrategy implements an EMF Validation Framework "traversal strategy" that applications may register to let validation operations discover the instances of stereotypes that are attached to UML model elements, to validate them.

Bug 409396

A new UML-to-Ecore conversion option, available in the EMF model importer and the profile definition action, lets the user determine how to handle properties that are untyped. In a UML model, a property that has no type can take any value; it is simply unconstrained. However, EMF cannot generate code for such a property, so now UML2 lets the user either substitute EObject type (the "Process" option), issue a warning ("Report"), or omit the property altogether ("Discard").

Uml2luna nn409396.png

Milestone 4

This milestone was completed on December 16, 2013.

Bug 180744

The UML Editor menu sports a new Element → Expand Templates... action that reifies template bindings, replacing (in situ) the binding relationships in the bound element with elements merged from the templates. Constructs supported include

  • template bindings for packages, classifiers, and operations
  • bindings to multiple templates
  • multiple bindings to the same template
  • substitution of operands in name expressions (useful for disambiguating parameter substitutions from multiple bindings)

So, for example, a "deployment system" package that binds the same "system" package template twice, once for hardware components and once for software components. SoftwareSpec and HardwareSpec substitute for the ResourceKind in the template and the name of the Allocation class in the template is an expression in which the first segment is substituted by default with the string "Resource".

Uml2nn 180744before.png

The template expansion algorithm is based on package merge. Most of the options are defaulted to values appropriate for template expansion, but the options for handling redundant generalizations and capabilities trace annotations are left to the user to decide.

Uml2nn 180744expand.png

The result of the expansion shows the substitution of parts of the name expressions for the SoftwareAllocation and HardwareAllocation which otherwise, using the default substitution, would both be named ResourceAllocation. Also, a trace annotation references all of the elements in the expanded package that were merged from the system template (just as in package merges).

Uml2nn 180744after.png

Bug 403374

UML-to-Ecore conversion (and, consequently, code generation) now supports transformation of OCL invariant constraints in EMF's non-API style for classes. These generate code only in the XyzValidator class, not as validation operations in the model API. This enhancement provides parity with constraint transformations for data types, which in EMF only support the non-API style of validation.

This model:

Uml2nn 403374model.png

Generates this code:

Uml2nn 403374code.png

Bug 412912

The EMF.Edit item providers for the default attribute of the UML Property and Parameter metaclasses are improved to create values of more appropriate type than LiteralString where possible:

  • for property or parameter of an Enumeration type, an InstanceValue referencing the EnumerationLiteral selected by the user from a pick-list
  • for property or parameter of Boolean type, a LiteralBoolean with the value selected by the user from a true/false pick-list
  • for property or parameter of Integer type, a LiteralInteger with the value entered by the user as text
  • for property or parameter of UnlimitedNatural type, a LiteralUnlimitedNatural with the value entered by the user as text
  • for property or parameter of Real type, a LiteralReal with the value entered by the user as text
  • in other cases, a LiteralString is created

Uml2nn 412912.png

Milestone 5

This milestone was completed on January 27, 2014.

Bug 227616

The UML2 run-time bundles are now partitioned into Eclipse Features of finer granularity, to help software integrators to keep unneeded bundles out of their distributions. For example:

  • the absolutely minimal feature is org.eclipse.uml2.common, containing only the org.eclipse.uml2.common and org.eclipse.uml2.types bundles needed to support a custom metamodel defined with UML and generated with UML2, but not actually extending or referencing the UML metamodel as such
  • layered on the above is the org.eclipse.uml2.uml feature, which adds the following bundles for working with the UML metamodel (no editing capabilities included)
    • org.eclipse.uml2.uml — the UML metamodel
    • org.eclipse.uml2.uml2.profile.l2, org.eclipse.uml2.uml2.profile.l3 — standard profiles
    • org.eclipse.uml2.uml2.resources — other supporting resources (metamodels, model libraries, and profiles)

Bug 286404

A new org.eclipse.uml2.ant bundle provides an Ant task for integration of a dynamic profile definition step into a build or other automated process. The uml2.defineProfile task takes a profile resource as input, defines the profile, and saves it again in situ.

Uml2nn 286404.png

Bug 382342

New example project wizards are provided by the UML2 SDK with complete "solutions" of the getting-started tutorials in this Wiki:

Uml2nn 382342wizard.png

Uml2nn 382342code.png

Bug 401804

For stand-alone Java applications using the UML2 APIs that do not mind (or otherwise need to) including at least a portion of the Eclipse Equinox run-time, a new UMLPlugin.ExtensionProcessor API is provided that, like the EcorePlugin.ExtensionProcessor introduced by EMF in the Kepler release, instantiates the Equinox extension registry and populates it from plugin.xml files discovered in the JARs on the classpath. Note that this does not actually require the Eclipse Platform to be instantiated and "running".

The extension processor ensures proper and complete registration of

  • traceability between UML profiles and their statically-generated implementations (the org.eclipse.uml2.uml.generated_package extension point)
  • traceability between dynamic Ecore EPackages and their source UML Packages (the org.eclipse.uml2.uml.dynamic_package extension point)
  • all of the EMF extension points for registration of packages, setting/invocation/validation delegates, etc.

This is particularly useful to ensure availability and function of custom models deployed in your applications. For applications that only need to work with the UML metamodel and its standard resources, it the UMLResourcesUtil::init(ResourceSet) API is still a lighter-weight solution, not requiring any Equinox components.

Uml2nn 401804.png

Bug 405065

Via OpaqueExpressions specified with OCL, it is possible in UML to model initial and derived values for properties. The UML-to-Ecore converter is enhanced to process these defaultValue expressions as follows:

  • for properties that are derived and read-only, generate an OCL setting delegate "derivation" annotation in the Ecore model for the computed property
  • for properties that are not derived, generate an OCL setting delegate "initial" annotation in the Ecore model for the initial value of the mutable property

The actual code generation and run-time support for the latter is still pending, depending on changes in the EMF and/or OCL projects. Computed values are currently fully supported.

Uml2nn 405065model.png

Uml2nn 405065import.png

Uml2nn 405065code.png

Bug 420338

The UML-to-Ecore and Ecore-to-UML converters are enhanced to support the EMOF annotations for opposite role names of reference properties. These are used by OCL and possibly other components to support navigation of implicit opposite references, despite that they are not explicitly represented in the EMOF model nor actually implemented at run-time. The UML-to-Ecore converter creates opposite role name annotations on EReferences in the Ecore model from UML properties that

  • are owned by a binary association (the navigable end is owned by a class)
  • have a role name that is different from what OCL defines as the implicit role name. Because the implicit role name, according to OCL, is the name of the class that is the end's type, the following cases are included:
    • the role name is blank (the UML2 API presents this as the name of the end's type with an initial lower-case character)
    • the role name is explicitly set to something else

Uml2nn 420338options.png

Uml2nn 420338model.png

Milestone 6

This milestone was completed on March 10, 2014.

Bug 418466

The UML2 API has been updated based on the latest version of the UML (and MOF) specification (UML 2.5).

*  The version of UML as defined by the OMG is UML 2.5.
*  The latest version of the UML2 API is 5.0.0.
  • The UML2 API was regenerated based on updated specification changes.
  • The metamodel from which the UML2 API is generated was updated.
  • A static versions of the new standard UML profile was introduced.
  • Migration code was added to migrate previous versions of serialized UML to the latest.

Bug 427833

The sample UML tree editor now shows error/warning markers (with tooltips) for validation problems.

Uml2nn 427833.png

Back to the top