Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/properties/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/modelhandler/AssociationEndOwnerModelHandlerFactory.java')
-rw-r--r--plugins/uml/properties/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/modelhandler/AssociationEndOwnerModelHandlerFactory.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/uml/properties/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/modelhandler/AssociationEndOwnerModelHandlerFactory.java b/plugins/uml/properties/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/modelhandler/AssociationEndOwnerModelHandlerFactory.java
new file mode 100644
index 00000000000..8e46921e0e3
--- /dev/null
+++ b/plugins/uml/properties/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/modelhandler/AssociationEndOwnerModelHandlerFactory.java
@@ -0,0 +1,32 @@
+/*****************************************************************************
+ * Copyright (c) 2010 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:
+ * Remi Schnekenburger (CEA LIST) remi.schnekenburger@cea.fr - Initial API and implementation
+ *****************************************************************************/
+package org.eclipse.papyrus.uml.properties.runtime.modelhandler;
+
+import org.eclipse.papyrus.views.properties.runtime.modelhandler.emf.EMFModelHandlerFactory;
+import org.eclipse.papyrus.views.properties.runtime.modelhandler.emf.IEMFModelHandler;
+import org.w3c.dom.Node;
+
+
+/**
+ * factory for Multiplicity model handlers
+ */
+public class AssociationEndOwnerModelHandlerFactory extends EMFModelHandlerFactory {
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public IEMFModelHandler createModelHandler(Node modelHandlerNode) {
+ return new AssociationEndOwnerModelHandler();
+ }
+
+}

Back to the top