|
|
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.
|
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 object
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();
|
|
|
|
|
|
|