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 "ATL Coding Chart"

(Code templates)
(Code formatter)
Line 2: Line 2:
  
 
== Code formatter ==
 
== Code formatter ==
The Eclipse code formatter helps to correctly indent and format a .java file. Basically it is activated by the ctrl+shift+F command. The formatter is parametrizable, so you must apply the [http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.m2m/org.eclipse.m2m.atl/plugins/org.eclipse.m2m.atl/codeStyle/ATLFormatter.xml?hideattic=1&root=Modeling_Project&view=markup ATL specific configuration].
+
The Eclipse code formatter helps to correctly indent and format a .java file. Basically it is activated by the ctrl+shift+F command. The formatter is parametrizable, so you must apply the [http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.m2m/org.eclipse.m2m.atl/plugins/org.eclipse.m2m.atl/codeStyle/ATLFormatter.xml?hideattic=1&root=Modeling_Project&view=markup ATL formatter specific configuration].
  
  

Revision as of 05:36, 10 September 2008

This page intent to define good coding practices in order to better manage ATL source code. The use of several tools is detailed here and will provide a way for ATL commiters and contributors to correctly contribute to the ATL project.

Code formatter

The Eclipse code formatter helps to correctly indent and format a .java file. Basically it is activated by the ctrl+shift+F command. The formatter is parametrizable, so you must apply the ATL formatter specific configuration.


And here is the way to apply the ATL configuration, in the eclipse preferences : ATL format config.PNG

Code templates

The Eclipse code templates helps the developper to automatically write code parts. In order to keep this in coherence with the code formatter, you must apply the ATL specific configuration.


And here is the way to apply the ATL configuration, in the eclipse preferences : ATL template config.PNG

Checkstyle

Checkstyle is a well known code analyser which detects all kind of problems in a Java code. It is activated on the most relevant ATL plugins, here is the specific configuration.

Back to the top