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/AssociationEndNavigationHandlerState.java')
-rw-r--r--plugins/uml/properties/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/modelhandler/AssociationEndNavigationHandlerState.java90
1 files changed, 90 insertions, 0 deletions
diff --git a/plugins/uml/properties/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/modelhandler/AssociationEndNavigationHandlerState.java b/plugins/uml/properties/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/modelhandler/AssociationEndNavigationHandlerState.java
new file mode 100644
index 00000000000..0f1f9feb57d
--- /dev/null
+++ b/plugins/uml/properties/org.eclipse.papyrus.uml.properties.runtime/src/org/eclipse/papyrus/uml/properties/runtime/modelhandler/AssociationEndNavigationHandlerState.java
@@ -0,0 +1,90 @@
+/*****************************************************************************
+ * 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 java.beans.PropertyChangeListener;
+import java.util.Collections;
+import java.util.List;
+
+import org.eclipse.papyrus.views.properties.runtime.modelhandler.emf.IEMFModelHandlerState;
+import org.eclipse.papyrus.views.properties.runtime.state.AbstractState;
+import org.eclipse.papyrus.views.properties.runtime.state.ITraversableModelElement;
+import org.w3c.dom.Document;
+import org.w3c.dom.Element;
+import org.w3c.dom.Node;
+
+
+/**
+ * state for {@link AssociationEndNavigationModelHandler}
+ */
+public class AssociationEndNavigationHandlerState extends AbstractState implements IEMFModelHandlerState {
+
+ /** model handler managed by this state */
+ private final AssociationEndNavigationModelHandler modelHandler;
+
+ /**
+ * Creates a new MultiplicityHandlerState.
+ *
+ * @param modelHandler
+ * the model handler managed by this state
+ * @param readOnly
+ * the read only mode for this state
+ */
+ public AssociationEndNavigationHandlerState(AssociationEndNavigationModelHandler modelHandler, boolean readOnly) {
+ super(readOnly);
+ this.modelHandler = modelHandler;
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ public List<? extends ITraversableModelElement> getChildren() {
+ return Collections.emptyList();
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ public AssociationEndNavigationModelHandler getDescriptor() {
+ return modelHandler;
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ public String getEditionDialogId() {
+ return null;
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ public void addPropertyChangeListener(PropertyChangeListener listener) {
+ // nothing here
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ public void removePropertyChangeListener(PropertyChangeListener listener) {
+ // nothing here
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ public Node generateNode(Document document) {
+ Element node = document.createElement("feature");
+ node.setAttribute("handlerID", getDescriptor().getId());
+ return node;
+ }
+}

Back to the top