Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/widget/component/metaclass/AbstractGetMetaclassWidget.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/widget/component/metaclass/AbstractGetMetaclassWidget.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/widget/component/metaclass/AbstractGetMetaclassWidget.java b/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/widget/component/metaclass/AbstractGetMetaclassWidget.java
index a1d5e0d451d..55199fba220 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/widget/component/metaclass/AbstractGetMetaclassWidget.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/widget/component/metaclass/AbstractGetMetaclassWidget.java
@@ -1,11 +1,11 @@
/**
* Copyright (c) 2012 Mia-Software.
- *
+ *
* 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
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
* Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors
@@ -24,26 +24,26 @@ import org.eclipse.swt.widgets.Composite;
/**
* This abstract class provides a simple way for the selection of a type.
- *
+ *
* Label : [ textField ][...] </p>
- *
+ *
* The button will display the {@link SelectETypeWizardImpl} wizard when
* pressed. </p>
- *
+ *
* The {@link #getLabel()} method have to be override and provide the label of
* the 'Label'.</p>
- *
+ *
* The {@link #createTextField(boolean)} create a non editable text field.</p>
- *
+ *
* The {@link #getETypeSelectionOption()} have to be override and type of the
* selection in the wizard.</p>
- *
+ *
* If the value of the {@link PropertyElement} is null, then the message
* returned by {@link #getErrorMessage()} is displayed on the top of the dialog.
- *
+ *
* @see SelectETypeWizardImpl
* @see ETypeSelectionOptions
- *
+ *
* @see GetConformanceMetaclassWidget
* @see GetElementTypeWidget
* @see GetExtendedMetaclassWidget
@@ -58,7 +58,7 @@ public abstract class AbstractGetMetaclassWidget<T extends EClassifier>
/**
* Constructor.
- *
+ *
* @param parent
* the parent of this composite.
* @param editingDomain
@@ -80,7 +80,7 @@ public abstract class AbstractGetMetaclassWidget<T extends EClassifier>
/**
* Constructor.
- *
+ *
* @param parent
* the parent of this composite.
* @param editingDomain
@@ -132,7 +132,7 @@ public abstract class AbstractGetMetaclassWidget<T extends EClassifier>
/**
* Return the EPackage.
- *
+ *
* @return the ePackage.
*/
protected abstract EPackage getEPackage();

Back to the top