Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenoit Maggi2018-06-01 08:08:28 +0000
committerQuentin Le Menez2018-06-01 09:33:22 +0000
commitc39d2473c9c273c84cae8fd1208d49bb4c4a5695 (patch)
treee6983b779e98564c9d848272cb11bd2bedc34587 /plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src
parentef46a8f6f3acb600bc62e0eda549fba86f20eb4b (diff)
downloadorg.eclipse.papyrus-c39d2473c9c273c84cae8fd1208d49bb4c4a5695.tar.gz
org.eclipse.papyrus-c39d2473c9c273c84cae8fd1208d49bb4c4a5695.tar.xz
org.eclipse.papyrus-c39d2473c9c273c84cae8fd1208d49bb4c4a5695.zip
Bug 528895 - [Quality] Field modifier should follow convention order
- use correct order for field modifier - add missing header - replace C<>line by Celine Change-Id: I2608484da46215dbd65a1e85d47d0aa7706feb58 Signed-off-by: Benoit Maggi <benoit.maggi@cea.fr>
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src')
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus/commands/CreationCommandExtensionFactory.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus/commands/CreationCommandExtensionFactory.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus/commands/CreationCommandExtensionFactory.java
index 18da1947c0c..da3152f66fc 100644
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus/commands/CreationCommandExtensionFactory.java
+++ b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus/commands/CreationCommandExtensionFactory.java
@@ -27,28 +27,28 @@ import org.eclipse.ui.plugin.AbstractUIPlugin;
public class CreationCommandExtensionFactory extends ExtensionUtils {
/** singleton eINSTANCE of this class */
- public final static CreationCommandExtensionFactory eINSTANCE = new CreationCommandExtensionFactory();
+ public static final CreationCommandExtensionFactory eINSTANCE = new CreationCommandExtensionFactory();
/** constant for the creation command **/
- public final static String CREATION_COMMAND_EXTENSIONPOINT = "creationCommand";
+ public static final String CREATION_COMMAND_EXTENSIONPOINT = "creationCommand";
/** constant for the attribute creationCommandClass **/
- public final static String CREATION_COMMAND_CLASS_ATTR = "creationCommandClass";
+ public static final String CREATION_COMMAND_CLASS_ATTR = "creationCommandClass";
/** constant for the attribute creationCommandClass **/
- public final static String CONDITION_COMMAND_CLASS_ATTR = "creationCondition";
+ public static final String CONDITION_COMMAND_CLASS_ATTR = "creationCondition";
/** constant for the attribute label **/
- public final static String LABEL_ATTR = "label";
+ public static final String LABEL_ATTR = "label";
/** constant for the attribute contextId **/
- public final static String ID_ATTRIBUTE = "id";
+ public static final String ID_ATTRIBUTE = "id";
/** constant for the attribute icon **/
- public final static String ICON_ATTR = "icon";
+ public static final String ICON_ATTR = "icon";
/** constant for the attribute language **/
- public final static String LANGUAGE_ATTR = "language";
+ public static final String LANGUAGE_ATTR = "language";
/**
* @return the eINSTANCE

Back to the top