Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Java Code Generation"

(Created page with "=== JAVA Code Generation === The Java code generation is available in the extra plugins of Papyrus. It can be used by installing the latest version of Papyrus. It allows to ...")
 
(Replaced content with "= Page has moved to [https://gitlab.eclipse.org/eclipse/papyrus/org.eclipse.papyrus-designer/-/wikis/Java_code_generation gitlab] =")
 
(31 intermediate revisions by 5 users not shown)
Line 1: Line 1:
=== JAVA Code Generation  ===
+
= Page has moved to [https://gitlab.eclipse.org/eclipse/papyrus/org.eclipse.papyrus-designer/-/wikis/Java_code_generation gitlab] =
 
+
The Java code generation is available in the extra plugins of Papyrus. It can be used by installing the latest version of Papyrus. It allows to create Java source code from a class diagram.
+
 
+
== Generate a class source from a class diagram. ==
+
 
+
Open a class diagram, and choose a UML class by clicking on it. 
+
Right clicking, and choose Java -> Generate Java code. 
+
A Java class while be created on a project, which has the same name that you model. 
+
Note that you can also generate java code source for multiple classes, or generate packages.
+
Moreover, the generation process also create all needed classes, like associations or fields.
+
 
+
[[File:GenerateJavaCode.jpg]]
+
 
+
== Change generation preferences ==
+
 
+
You can change the generation preferences using the eclipse preferences menu, and choose Papyrus -> Java classes Generation.
+
Available options are:
+
 
+
*stop generation on first error (enabled by default),   
+
*implement methods of inheres interfaces and abstractt class (enabled by default),   
+
*generate getters & setters (enabled by default), 
+
*manage packages to not include into generation,   
+
*choose the generic classe to use for association (java.util.List by default). 
+
 
+
== Change project name for generation ==
+
 
+
By default, the generator use the name of the model as Java project name for generation. To change the default project name, you can use the profiles system. 
+
First, add the java profile to your model:
+
 
+
*click on your model (on the Model Explorer view),
+
*in the Properties view, choose the Profile tab,
+
*click on Apply registered profile,
+
[[File:applyRegisteredProfile.jpg]]
+
*into the opened pop-up, choose Java
+
[[File:javaRegisteredProfile.jpg]]
+
 
+
You now can change the default project name by adding a profile into your model
+
 
+
*on Properties View, Profile tab, click on Apply stereotypes,
+
*on the opened pop-up choose JavaSrcFolder, and add it into Applied Stereotypes, and close the pop-up by clicking on Ok button.
+
[[File:JavaSrcFolder.jpg]]
+
*you now can change the project name into the JavaSrcFolder stereotype
+
[[File:changeProjectName.jpg]]
+

Latest revision as of 05:10, 18 March 2024

Page has moved to gitlab

Back to the top