|
JUDE API
JUDE API enables you to obtain JUDE model elements and use them on applications software.
The reference of Mind Maps, model elements used in Class Diagrams, UseCase Diagrams,
Activity Diagrams, Sequence Diagrams, Statemachine Diagrams, Flowcharts, ER Diagrams,
Data Flow Diagrams are currently supported.
We are planning to support more reference of model, view elements used in other Diagrams
and also the editing feature for all the model elements and view elements in the future.
* JaveDoc and Sample Applications are equipped with Installer.
* JUDE API Sample Applications
* JUDE API User Guide / Javadoc (Current version: 5.5)
To see past versions of JUDE API Guide / Javadoc, access the URL below directly with the version number you want.
http://jude.change-vision.com/javadoc/jude-api/Version number/api/ja/doc/index.html
i.e.) To open JUDE API User Guide / Javadoc for ver 5.4.1
http://jude.change-vision.com/javadoc/jude-api/5_4_1/api/ja/doc/index.html
How to get a Model of project accessor
All model information in JUDE Project file is stored under the model of project accessor (Project model) in a tree structure.
First, get the ProjectAccessor objec and open JUDE project file, then get the Project Model (IModel Class object).
ClassDefinitionBuilder.java
//Open project file and get project model
ProjectAccessor prjAccessor = ProjectAccessorFactory.getProjectAccessor();
prjAccessor.open(inputFile);
IModel iModel = prjAccessor.getProject();
|
How to get packages under Package recursively
How to get Full Path Name of class
|