Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/exported/widget/IFacetSetSelectionWidget.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/exported/widget/IFacetSetSelectionWidget.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/exported/widget/IFacetSetSelectionWidget.java b/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/exported/widget/IFacetSetSelectionWidget.java
index 4453c401c7b..f755dc50579 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/exported/widget/IFacetSetSelectionWidget.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/exported/widget/IFacetSetSelectionWidget.java
@@ -19,7 +19,7 @@ import org.eclipse.swt.widgets.Control;
/**
* A widget to select one or more {@link FacetSet}s from a tree
- *
+ *
* @since 0.2.0
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
@@ -28,7 +28,7 @@ public interface IFacetSetSelectionWidget {
/**
* This method can be called at any time to change the {@link FacetSet}s which can be selected by the user.
- *
+ *
* @param available
* the {@link FacetSet}s that can be selected in this widget
*/
@@ -41,8 +41,7 @@ public interface IFacetSetSelectionWidget {
void setSelectedFacetSets(Collection<? extends FacetSet> newSelection);
/**
- * @return the validation status : the selection is not valid if {@link IStatus#getSeverity()} >=
- * {@link IStatus#ERROR}
+ * @return the validation status : the selection is not valid if {@link IStatus#getSeverity()} >= {@link IStatus#ERROR}
*/
IStatus getValidationStatus();

Back to the top