Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/customization/org.eclipse.papyrus.customization.properties.generation/src/org/eclipse/papyrus/customization/properties/generation/wizard/AbstractCreateContextPage.java')
-rw-r--r--plugins/customization/org.eclipse.papyrus.customization.properties.generation/src/org/eclipse/papyrus/customization/properties/generation/wizard/AbstractCreateContextPage.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/customization/org.eclipse.papyrus.customization.properties.generation/src/org/eclipse/papyrus/customization/properties/generation/wizard/AbstractCreateContextPage.java b/plugins/customization/org.eclipse.papyrus.customization.properties.generation/src/org/eclipse/papyrus/customization/properties/generation/wizard/AbstractCreateContextPage.java
index 70360dd1701..53a460ee9d4 100644
--- a/plugins/customization/org.eclipse.papyrus.customization.properties.generation/src/org/eclipse/papyrus/customization/properties/generation/wizard/AbstractCreateContextPage.java
+++ b/plugins/customization/org.eclipse.papyrus.customization.properties.generation/src/org/eclipse/papyrus/customization/properties/generation/wizard/AbstractCreateContextPage.java
@@ -1,6 +1,6 @@
/*****************************************************************************
* Copyright (c) 2010 CEA LIST.
- *
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -17,7 +17,7 @@ import org.eclipse.jface.wizard.WizardPage;
/**
* An abstract WizardPage for the CreateContext wizard, providing helper
* methods to its implementers
- *
+ *
* @author Camille Letavernier
*/
public abstract class AbstractCreateContextPage extends WizardPage {
@@ -25,25 +25,25 @@ public abstract class AbstractCreateContextPage extends WizardPage {
/**
* Builds a new WizardPage with the given pageName
* Constructor.
- *
+ *
* @param pageName
- * The name of this wizard page
+ * The name of this wizard page
*/
public AbstractCreateContextPage(String pageName) {
super(pageName);
}
/**
- *
+ *
* Builds a new WizardPage with the given pageName, title and image
- *
+ *
* @param pageName
- * the name of the page
+ * the name of the page
* @param title
- * the title for this wizard page, or <code>null</code> if none
+ * the title for this wizard page, or <code>null</code> if none
* @param titleImage
- * the image descriptor for the title of this wizard page,
- * or <code>null</code> if none
+ * the image descriptor for the title of this wizard page,
+ * or <code>null</code> if none
*/
public AbstractCreateContextPage(String pageName, String title, ImageDescriptor titleImage) {
super(pageName, title, titleImage);
@@ -51,7 +51,7 @@ public abstract class AbstractCreateContextPage extends WizardPage {
@Override
public CreateContextWizard getWizard() {
- return (CreateContextWizard)super.getWizard();
+ return (CreateContextWizard) super.getWizard();
}
}

Back to the top