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 "MoDisco/Components/Java/Composition/Documentation/0.9"

(User manual)
Line 35: Line 35:
 
The plug-in provides the user with a contextual menu to easily create models.  
 
The plug-in provides the user with a contextual menu to easily create models.  
  
By right-clicking on a Java Project in the Eclipse '''Package Explorer''' view, you can quickly create the Java Application model of your application (see next figure).
+
By right-clicking on a Java Project in the Eclipse '''Package Explorer''' view, you can quickly create the Java Application model of your application:
  
[[Image:Javakdmdiscoverypopup.JPG|frame|center|Discovering a JavaApplication model]]
+
[[Image:MoDisco_JavaComposition_Discoverer_Menu.png|frame|center|Discovering a JavaApplication model]]
  
The [[MoDisco/Components/Java/Documentation/0.9#User_manual|Java discovery parameters window]] appears for customizing the Java Model Discovery step.
+
A discovery parameters dialog opens to let you specify the parameters of the discovery:
  
Once launched, a progress bar will appear at the bottom of the window as soon as the operation begins. Depending on the size of your application, the reverse engineering process might take some time to complete (see next figure).  
+
[[Image:Launching_discovery_org.eclipse.modisco.java.composition.discoverer.fromJavaProject.png]]
  
[[Image:MoDisco-JavaDiscoverer progress bar model creation.png|frame|center|Progress bar during model creation]]
+
See the [[MoDisco/Components/Java/Documentation/0.9#User_manual|documentation of the Java discoverer for an explanation of the parameters.
  
At the end of the process, the newly created model files are added to the root of your project and the main file is automatically opened in the default editor.
+
Once launched, a progress dialog will appear as soon as the operation begins. Depending on the size of your application, the reverse engineering process might take some time to complete:
A xmi file suffixed by ''_javaapp.xmi'' contains the root element of the model, which refers to the ''.javaxmi'' Java model file and the ''_source.kdm'' Inventory model file.
+
  
Some referenced xmi ''fragment'' files are serialized into a ''xmiFragmentsJavaApp' directory (see Resources distribution in the [[MoDisco/Components/Java/Composition/Architecture|benchmark]]).
+
[[Image:MoDisco_discoverer_org.eclipse.modisco.java.composition.discoverer.fromJavaProject_in_progress.png|frame|center|Progress bar during model creation]]  
  
[[Image:JavakdmResourcesTree.JPG|frame|center|JavaApplication xmi files in the package explorer]]
+
At the end of the process, the newly created model files are added to the root of your project if you set SERIALIZE_TARGET to true:
 +
 
 +
[[Image:MoDisco_JavaKDM_ResultInProject.png|frame|center|JavaApplication xmi files in the package explorer]]
 +
 
 +
And the model is opened in the default model browser if you selected '''Open model in editor after discovery''':
 +
 
 +
[[Image:MoDisco_JavaKDM_ModelBrowser.png|frame|center|JavaApplication model in the MoDisco model browser]]
 +
 
 +
A xmi file suffixed by ''_java2kdm.xmi'' contains the root element of the model, which refers to the ''_java.xmi'' Java model file and the ''_kdm.xmi'' Inventory model file.
 +
 
 +
Some referenced xmi ''fragment'' files are serialized into a ''java2kdmFragments'' directory (see Resources distribution in the [[MoDisco/Components/Java/Composition/Architecture|benchmark]]).
 +
 
 +
[[Image:MoDisco_JavaKDM_infraCommonCore_PackageExplorer.png|frame|center|JavaApplication xmi files in the package explorer]]
  
 
Once the main file ''_javaapp.xmi'' has been opened in the MoDisco model Browser, you may navigate through the ''JavaApplication'' metamodel instances to the ''Java'' and ''kdm.source'' metamodels instances.
 
Once the main file ''_javaapp.xmi'' has been opened in the MoDisco model Browser, you may navigate through the ''JavaApplication'' metamodel instances to the ''Java'' and ''kdm.source'' metamodels instances.
 +
 +
[[Image:MoDisco_infraCommonCore_Java2KDM_ModelBrowser.png|frame|center|browsing the JavaApplication model]]
  
 
[[Image:JavakdmBrowsing.JPG|frame|center|browsing the JavaApplication model]]
 
[[Image:JavakdmBrowsing.JPG|frame|center|browsing the JavaApplication model]]

Revision as of 10:58, 29 March 2011

MoDisco
Website
Download
Community
Mailing ListForums
Bugzilla
Open
Help Wanted
Bug Day
Contribute
Browse SourceProject Set File

Java Composition Metamodel

Description

This JavaApplication metamodel aims at weaving a MoDisco Java Model with a MoDisco KDM Inventory Model. It relies on the core metamodel described in the kdm.source extension framework.

Such a metamodel allows to link java nodes to their physical position in the source files (JavaNodeSourceRegion metaclass owning startLine, endLine properties).

As proposed in the kdm.source extension framework, the reference JavaASTNodeSourceRegion.javaNode derives from ASTNodeSourceRegion.node. So does Java2File.javaUnit from CodeUnit2File.unit.

JavaApplication Metamodel

Note : the references java2DirectoryChildren and java2FileChildren are expected to be containment references. For some technical reasons (memory usage tuning via lazy loading), they are not containments to make sure that the Java2Directory, Java2File and JavaNodeSourceRegion instances are managed in their own graph compared with JavaApplication instances (see benchmark).

Java Composition Discoverer

Description

MoDisco provides a discoverer associated to the metamodel definition described here.

The discovery takes as an entry one workspace Java project.

The first step of the discovery creates one Java model, using the associated discoverer.

The second step of the discovery creates one Kdm inventory model, using the associated discoverer.

The third step creates a model with JavaApplication metamodel instances with references to the two leaf models.

Java and kdm inventory discovery

User manual

The plug-in provides the user with a contextual menu to easily create models.

By right-clicking on a Java Project in the Eclipse Package Explorer view, you can quickly create the Java Application model of your application:

Discovering a JavaApplication model

A discovery parameters dialog opens to let you specify the parameters of the discovery:

Launching discovery org.eclipse.modisco.java.composition.discoverer.fromJavaProject.png

See the [[MoDisco/Components/Java/Documentation/0.9#User_manual|documentation of the Java discoverer for an explanation of the parameters.

Once launched, a progress dialog will appear as soon as the operation begins. Depending on the size of your application, the reverse engineering process might take some time to complete:

Progress bar during model creation

At the end of the process, the newly created model files are added to the root of your project if you set SERIALIZE_TARGET to true:

JavaApplication xmi files in the package explorer

And the model is opened in the default model browser if you selected Open model in editor after discovery:

JavaApplication model in the MoDisco model browser

A xmi file suffixed by _java2kdm.xmi contains the root element of the model, which refers to the _java.xmi Java model file and the _kdm.xmi Inventory model file.

Some referenced xmi fragment files are serialized into a java2kdmFragments directory (see Resources distribution in the benchmark).

JavaApplication xmi files in the package explorer

Once the main file _javaapp.xmi has been opened in the MoDisco model Browser, you may navigate through the JavaApplication metamodel instances to the Java and kdm.source metamodels instances.

browsing the JavaApplication model
browsing the JavaApplication model

Some facets called javaToKdmShortcuts and KdmToJavaShortcuts are available for allowing navigation shortcuts from some Java/Kdm.source model elements. (enabling the "Show Derived Links" option is necessary to view the shorcut links)

Apply related facets
Navigation shortcut from a java element to the associated source region

To take advantage of memory usage tuning (see the benchmark), for huge Java legacy code, the MoDisco global preferences should have the "resources loading depth" set to 1 (0 works but is less interesting for browsing). This setting allows the lazy loading of xmi fragment files, through the model navigation, for less memory usage than with an initial complete loading of resources.

Setting MoDisco global loading depth preference

Using the Group by package setting will ease the selection in the types panel considering the metamodels (EPackages instances) involved.

Group by package in MoDisco model browser

Discoverer API

Each MoDisco discoverer implements a normalized interface and can be called programmatically (see org.eclipse.gmt.modisco.infra.discoverymanager.Discoverer).

As an example, you may checkout the code from the org.eclipse.gmt.modisco.java.composition.discoverer.tests project.

Java source code synchronization

Description

A new step in Java model browsing is to link model elements directly with their source code. This synchronization is possible thanks to the MoDisco Source Code Synchronization Framework. Basically, this new feature allows the MoDisco Model Browser to behave like the Eclipse outline.

How does it work

Prerequisite is to create a Composition model

Once your composition model is opened, all you have to do to navigate from your java model to its source code is to activate the source code synchronization (this will prevent the Eclipse Properties view from opening on double-click):

Source code synchronisation

And then double click on an element to directly open its file and get this element selected : on the following figure we double-clicked on the method "setMyInteger"

Java source file opened and element selected

If you prefer to keep the action "Open the Properties view" on the double click action, you can use the contextual menu to perform a single synchronization : the result will be exactly the same

Contextual menu

Requirements

To use the plug-ins you need:

  • JDK 1.5 or above
  • a version of Eclipse 3.6 or above with the following set of plug-ins installed
  • EMF 2.5.0 or higher

Source Repository

All of the source code is stored in a public source repository, which you can access at:

https://dev.eclipse.org/svnroot/modeling/org.eclipse.mdt.modisco/plugins/trunk/org.eclipse.modisco.java.composition/

https://dev.eclipse.org/svnroot/modeling/org.eclipse.mdt.modisco/plugins/trunk/org.eclipse.modisco.java.composition.discoverer/

Source code repository for Java Source Code Synchronization Strategy : https://dev.eclipse.org/svnroot/modeling/org.eclipse.mdt.modisco/plugins/trunk/org.eclipse.modisco.java.composition.ui/


MoDisco
Components Infrastructure: KDM · SMM · GASTM · Model Browser · Discovery Manager · MoDisco Workflow · Query Manager · Facet Manager · Metrics Visualization Builder · KDM Source Extension
Technologies: Java · JEE · EjbJar · WebApp · XML
Use Cases: Simple Transformation Chain · Model Filter
Help Installation · SVN
Project API Policy · Retention Policy · Project Plan · metrics · Accessibility Guidelines · Capabilities Disablement

Back to the top