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/toolsmiths/org.eclipse.papyrus.toolsmiths.palette
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/toolsmiths/org.eclipse.papyrus.toolsmiths.palette')
-rw-r--r--plugins/toolsmiths/org.eclipse.papyrus.toolsmiths.palette/src/org/eclipse/papyrus/toolsmiths/palette/dialog/AbstractPaletteConfigurationWizard.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/toolsmiths/org.eclipse.papyrus.toolsmiths.palette/src/org/eclipse/papyrus/toolsmiths/palette/dialog/AbstractPaletteConfigurationWizard.java b/plugins/toolsmiths/org.eclipse.papyrus.toolsmiths.palette/src/org/eclipse/papyrus/toolsmiths/palette/dialog/AbstractPaletteConfigurationWizard.java
index 4107f4037c2..4ab9f47dd3e 100644
--- a/plugins/toolsmiths/org.eclipse.papyrus.toolsmiths.palette/src/org/eclipse/papyrus/toolsmiths/palette/dialog/AbstractPaletteConfigurationWizard.java
+++ b/plugins/toolsmiths/org.eclipse.papyrus.toolsmiths.palette/src/org/eclipse/papyrus/toolsmiths/palette/dialog/AbstractPaletteConfigurationWizard.java
@@ -199,12 +199,12 @@ public abstract class AbstractPaletteConfigurationWizard extends Wizard {
/**
* Load models on papyrus( Palettes, element types, etc...).
*/
- abstract protected void deployModels();
+ protected abstract void deployModels();
/**
* save resources()
*/
- abstract protected void saveResources();
+ protected abstract void saveResources();
/**
* {@inheritDoc}

Back to the top