Skip to main content
aboutsummaryrefslogtreecommitdiffstats
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/ModelCellEditorContainer.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/internal/ModelCellEditorContainer.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/internal/ModelCellEditorContainer.java b/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/internal/ModelCellEditorContainer.java
new file mode 100644
index 00000000000..f9483a92e1a
--- /dev/null
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/internal/ModelCellEditorContainer.java
@@ -0,0 +1,39 @@
+/*******************************************************************************
+ * Copyright (c) 2011 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:
+ * Nicolas Guyomar (Mia-Software) - Bug 339554 - org.eclipse.emf.facet.widgets.celleditors API cleaning
+ *******************************************************************************/
+package org.eclipse.emf.facet.widgets.celleditors.internal;
+
+import org.eclipse.emf.facet.widgets.celleditors.IModelCellEditorContainer;
+import org.eclipse.emf.facet.widgets.celleditors.modelCellEditor.AbstractModelCellEditor;
+
+public class ModelCellEditorContainer<T extends AbstractModelCellEditor> implements
+ IModelCellEditorContainer<AbstractModelCellEditor> {
+
+ private AbstractModelCellEditor modelCellEditor;
+ private String bundleName;
+
+ public String getBundleName() {
+ return this.bundleName;
+ }
+
+ public AbstractModelCellEditor getModelCellEditor() {
+ return this.modelCellEditor;
+ }
+
+ public void setBundleName(final String bundleName) {
+ this.bundleName = bundleName;
+ }
+
+ public void setModelCellEditor(final AbstractModelCellEditor modelCellEditor) {
+ this.modelCellEditor = modelCellEditor;
+
+ }
+} \ No newline at end of file

Back to the top