Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/internal/core/NaryAttributeCellEditor.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/internal/core/NaryAttributeCellEditor.java108
1 files changed, 54 insertions, 54 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/internal/core/NaryAttributeCellEditor.java b/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/internal/core/NaryAttributeCellEditor.java
index a63db464899..90fda2d5d01 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/internal/core/NaryAttributeCellEditor.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/internal/core/NaryAttributeCellEditor.java
@@ -1,54 +1,54 @@
-/*******************************************************************************
- * Copyright (c) 2010, 2011 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:
- * Nicolas Bros (Mia-Software) - initial API and implementation
- * Nicolas Bros (Mia-Software) - Bug 339664 - org.eclipse.papyrus.emf.facet.widgets.celleditors API cleaning
- * Nicolas Guyomar (Mia-Software) - Bug 342451 - To be able to edit derived facet attributes and derived facet references in a table
- *******************************************************************************/
-package org.eclipse.papyrus.emf.facet.widgets.celleditors.internal.core;
-
-import java.util.List;
-
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.emf.ecore.EStructuralFeature;
-import org.eclipse.papyrus.emf.facet.widgets.celleditors.IModelCellEditHandler;
-import org.eclipse.papyrus.emf.facet.widgets.celleditors.INaryEAttributeCellEditor;
-import org.eclipse.papyrus.emf.facet.widgets.celleditors.internal.ui.NaryAttributeEditingDialog;
-import org.eclipse.swt.SWT;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.swt.widgets.Control;
-
-public class NaryAttributeCellEditor<T extends Object> implements INaryEAttributeCellEditor<T> {
-
- private NaryAttributeEditingDialog<T> naryAttributeEditingDialog;
-
- public Control activateCell(final Composite parent, final List<T> values,
- final IModelCellEditHandler editHandler, final EObject eObject,
- final EStructuralFeature feature) {
- final Composite placeholderComposite = new Composite(parent, SWT.NONE);
- this.naryAttributeEditingDialog = new NaryAttributeEditingDialog<T>(parent.getShell(),
- values, editHandler, eObject, feature) {
- @Override
- public boolean close() {
- placeholderComposite.dispose();
- return super.close();
- }
- };
- this.naryAttributeEditingDialog.open();
-
- return placeholderComposite;
- }
-
- public List<T> getValue() {
- if (this.naryAttributeEditingDialog != null) {
- return this.naryAttributeEditingDialog.getValue();
- }
- return null;
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2010, 2011 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:
+ * Nicolas Bros (Mia-Software) - initial API and implementation
+ * Nicolas Bros (Mia-Software) - Bug 339664 - org.eclipse.papyrus.emf.facet.widgets.celleditors API cleaning
+ * Nicolas Guyomar (Mia-Software) - Bug 342451 - To be able to edit derived facet attributes and derived facet references in a table
+ *******************************************************************************/
+package org.eclipse.papyrus.emf.facet.widgets.celleditors.internal.core;
+
+import java.util.List;
+
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.emf.ecore.EStructuralFeature;
+import org.eclipse.papyrus.emf.facet.widgets.celleditors.IModelCellEditHandler;
+import org.eclipse.papyrus.emf.facet.widgets.celleditors.INaryEAttributeCellEditor;
+import org.eclipse.papyrus.emf.facet.widgets.celleditors.internal.ui.NaryAttributeEditingDialog;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+
+public class NaryAttributeCellEditor<T extends Object> implements INaryEAttributeCellEditor<T> {
+
+ private NaryAttributeEditingDialog<T> naryAttributeEditingDialog;
+
+ public Control activateCell(final Composite parent, final List<T> values,
+ final IModelCellEditHandler editHandler, final EObject eObject,
+ final EStructuralFeature feature) {
+ final Composite placeholderComposite = new Composite(parent, SWT.NONE);
+ this.naryAttributeEditingDialog = new NaryAttributeEditingDialog<T>(parent.getShell(),
+ values, editHandler, eObject, feature) {
+ @Override
+ public boolean close() {
+ placeholderComposite.dispose();
+ return super.close();
+ }
+ };
+ this.naryAttributeEditingDialog.open();
+
+ return placeholderComposite;
+ }
+
+ public List<T> getValue() {
+ if (this.naryAttributeEditingDialog != null) {
+ return this.naryAttributeEditingDialog.getValue();
+ }
+ return null;
+ }
+}

Back to the top