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/widget/IETypedElementSelectionControlManager.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/widget/IETypedElementSelectionControlManager.java102
1 files changed, 51 insertions, 51 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/widget/IETypedElementSelectionControlManager.java b/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/widget/IETypedElementSelectionControlManager.java
index 3dcb72a271a..5211e194143 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/widget/IETypedElementSelectionControlManager.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.efacet.ui/src/org/eclipse/papyrus/emf/facet/efacet/ui/internal/widget/IETypedElementSelectionControlManager.java
@@ -1,51 +1,51 @@
-/*******************************************************************************
- * Copyright (c) 2012 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
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Vincent Lorenzo (CEA-LIST) - Bug 372644 - Create Customizable tooltips for the TreeViewer using a CustomizableLabelProvider
- * Gregoire Dupe (Mia-Software) - Bug 372644 - Create Customizable tooltips for the TreeViewer using a CustomizableLabelProvider
- *******************************************************************************/
-package org.eclipse.papyrus.emf.facet.efacet.ui.internal.widget;
-
-import java.util.Collection;
-import java.util.List;
-
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.emf.ecore.ETypedElement;
-import org.eclipse.jface.viewers.IStructuredSelection;
-
-public interface IETypedElementSelectionControlManager extends
- IETypedElementSelectionWidgetInternal {
-
- /**
- * @return the validation status
- */
- IStatus getValidationStatus();
-
- /**
- * Set the available elements
- *
- * @param eTypedElements
- * available eTypedElements
- */
- void setAvailableETypedElements(
- Collection<? extends ETypedElement> eTypedElements);
-
- /**
- *
- * @param selection
- * the selection
- */
- void setSelection(final IStructuredSelection selection);
-
- /**
- *
- * @return the selection
- */
- List<ETypedElement> computeResult();
-
-}
+/*******************************************************************************
+ * Copyright (c) 2012 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Vincent Lorenzo (CEA-LIST) - Bug 372644 - Create Customizable tooltips for the TreeViewer using a CustomizableLabelProvider
+ * Gregoire Dupe (Mia-Software) - Bug 372644 - Create Customizable tooltips for the TreeViewer using a CustomizableLabelProvider
+ *******************************************************************************/
+package org.eclipse.papyrus.emf.facet.efacet.ui.internal.widget;
+
+import java.util.Collection;
+import java.util.List;
+
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.emf.ecore.ETypedElement;
+import org.eclipse.jface.viewers.IStructuredSelection;
+
+public interface IETypedElementSelectionControlManager extends
+ IETypedElementSelectionWidgetInternal {
+
+ /**
+ * @return the validation status
+ */
+ IStatus getValidationStatus();
+
+ /**
+ * Set the available elements
+ *
+ * @param eTypedElements
+ * available eTypedElements
+ */
+ void setAvailableETypedElements(
+ Collection<? extends ETypedElement> eTypedElements);
+
+ /**
+ *
+ * @param selection
+ * the selection
+ */
+ void setSelection(final IStructuredSelection selection);
+
+ /**
+ *
+ * @return the selection
+ */
+ List<ETypedElement> computeResult();
+
+}

Back to the top