Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/src/org/eclipse/papyrus/emf/facet/efacet/sdk/ui/dialog/IFacetDialogFactory.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/src/org/eclipse/papyrus/emf/facet/efacet/sdk/ui/dialog/IFacetDialogFactory.java32
1 files changed, 16 insertions, 16 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/src/org/eclipse/papyrus/emf/facet/efacet/sdk/ui/dialog/IFacetDialogFactory.java b/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/src/org/eclipse/papyrus/emf/facet/efacet/sdk/ui/dialog/IFacetDialogFactory.java
index 37358ddf14c..d6466f8e94a 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/src/org/eclipse/papyrus/emf/facet/efacet/sdk/ui/dialog/IFacetDialogFactory.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.sdk.ui/src/org/eclipse/papyrus/emf/facet/efacet/sdk/ui/dialog/IFacetDialogFactory.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
@@ -28,9 +28,9 @@ import org.eclipse.swt.widgets.Display;
/**
* Interface for the dialogs creation factory.
- *
+ *
* @see FacetDialogFactoryImpl
- *
+ *
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
@@ -44,84 +44,84 @@ public interface IFacetDialogFactory {
/**
* Create an new Dialog for the creation of a FacetSet in a FacetSet.
- *
+ *
* @return the dialog.
*/
IDialog<IENamedElementWidget<FacetSet, IGetOrCreateFilteredFacetSetWidget>> openCreateFacetSetInFacetSetDialog();
/**
* Create an new Dialog for the creation of a Facet in a FacetSet.
- *
+ *
* @return the dialog.
*/
IDialog<IFacetWidget> openCreateFacetInFacetSetDialog();
/**
* Create an new Dialog for the creation of an Attribute in a Facet.
- *
+ *
* @return the dialog.
*/
IDialog<IEStructuralFeatureWidget> openAddAttributeInFacetDialog();
/**
* Create an new Dialog for the creation of an Reference in a Facet.
- *
+ *
* @return the dialog.
*/
IDialog<IEStructuralFeatureWidget> openAddReferenceInFacetDialog();
/**
* Create an new Dialog for the creation of an Operation in a Facet.
- *
+ *
* @return the dialog.
*/
IDialog<IDerivedTypedElementWidget> openAddOperationInFacetDialog();
/**
* Create an new Dialog for the creation of a Parameter in an Operation.
- *
+ *
* @return the dialog.
*/
IDialog<IETypedElementWidget<FacetOperation, IGetOrCreateFilteredElementCommmandWidget<FacetOperation, IDerivedTypedElementWidget>>> openAddParameterInOperationDialog();
/**
* Create an new Dialog for the edition of a FacetSet.
- *
+ *
* @return the dialog.
*/
IDialog<IENamedElementWidget<FacetSet, IGetOrCreateFilteredFacetSetWidget>> openEditFacetSetDialog();
/**
* Create an new Dialog for the edition of a Facet.
- *
+ *
* @return the dialog.
*/
IDialog<IFacetWidget> openEditFacetDialog();
/**
* Create an new Dialog for the edition of an Attribute.
- *
+ *
* @return the dialog.
*/
IDialog<IEStructuralFeatureWidget> openEditFacetAttributeDialog();
/**
* Create an new Dialog for the edition of an Reference.
- *
+ *
* @return the dialog.
*/
IDialog<IEStructuralFeatureWidget> openEditFacetReferenceDialog();
/**
* Create an new Dialog for the edition of an Operation.
- *
+ *
* @return the dialog.
*/
IDialog<IDerivedTypedElementWidget> openEditFacetOperationDialog();
/**
* Create an new Dialog for the edition of a Parameter.
- *
+ *
* @return the dialog.
*/
IDialog<IETypedElementWidget<FacetOperation, IGetOrCreateFilteredElementCommmandWidget<FacetOperation, IDerivedTypedElementWidget>>> openEditFacetOperationParameterDialog();

Back to the top