Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/ClearAssociationAction.java')
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/ClearAssociationAction.java140
1 files changed, 140 insertions, 0 deletions
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/ClearAssociationAction.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/ClearAssociationAction.java
new file mode 100644
index 00000000..988550d7
--- /dev/null
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/ClearAssociationAction.java
@@ -0,0 +1,140 @@
+/*
+ * Copyright (c) 2005 IBM Corporation and others.
+ * 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:
+ * IBM - initial API and implementation
+ *
+ * $Id: ClearAssociationAction.java,v 1.1 2005/11/14 22:25:59 khussey Exp $
+ */
+package org.eclipse.uml2.uml;
+
+import java.util.Map;
+
+import org.eclipse.emf.common.util.DiagnosticChain;
+
+import org.eclipse.emf.ecore.EClass;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Clear Association Action</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ * This action destroys all links of an association that have a particular object at one end.
+ * <!-- end-model-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.uml2.uml.ClearAssociationAction#getObject <em>Object</em>}</li>
+ * <li>{@link org.eclipse.uml2.uml.ClearAssociationAction#getAssociation <em>Association</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.uml2.uml.UMLPackage#getClearAssociationAction()
+ * @model
+ * @generated
+ */
+public interface ClearAssociationAction
+ extends Action {
+
+ /**
+ * Returns the value of the '<em><b>Object</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * Gives the input pin from which is obtained the object whose participation in the association is to be cleared.
+ * <!-- end-model-doc -->
+ * @return the value of the '<em>Object</em>' containment reference.
+ * @see #setObject(InputPin)
+ * @see org.eclipse.uml2.uml.UMLPackage#getClearAssociationAction_Object()
+ * @model containment="true" resolveProxies="false" required="true" ordered="false"
+ * @generated
+ */
+ InputPin getObject();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.uml2.uml.ClearAssociationAction#getObject <em>Object</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Object</em>' containment reference.
+ * @see #getObject()
+ * @generated
+ */
+ void setObject(InputPin value);
+
+ /**
+ * Creates a {@link org.eclipse.uml2.uml.InputPin} and sets the '<em><b>Object</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param eClass The Ecore class of the {@link org.eclipse.uml2.uml.InputPin} to create.
+ * @return The new {@link org.eclipse.uml2.uml.InputPin}.
+ * @see #getObject()
+ * @generated
+ */
+ InputPin createObject(EClass eClass);
+
+ /**
+ * Creates a {@link org.eclipse.uml2.uml.InputPin} and sets the '<em><b>Object</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return The new {@link org.eclipse.uml2.uml.InputPin}.
+ * @see #getObject()
+ * @generated
+ */
+ InputPin createObject();
+
+ /**
+ * Returns the value of the '<em><b>Association</b></em>' reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * Association to be cleared.
+ * <!-- end-model-doc -->
+ * @return the value of the '<em>Association</em>' reference.
+ * @see #setAssociation(Association)
+ * @see org.eclipse.uml2.uml.UMLPackage#getClearAssociationAction_Association()
+ * @model required="true" ordered="false"
+ * @generated
+ */
+ Association getAssociation();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.uml2.uml.ClearAssociationAction#getAssociation <em>Association</em>}' reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Association</em>' reference.
+ * @see #getAssociation()
+ * @generated
+ */
+ void setAssociation(Association value);
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * The type of the input pin must be the same as the type of at least one of the association ends of the association.
+ * self.association->exists(end.type = self.object.type)
+ * <!-- end-model-doc -->
+ * @model
+ * @generated
+ */
+ boolean validateSameType(DiagnosticChain diagnostics, Map context);
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * The multiplicity of the input pin is 1..1.
+ * self.object.multiplicity.is(1,1)
+ * <!-- end-model-doc -->
+ * @model
+ * @generated
+ */
+ boolean validateMultiplicity(DiagnosticChain diagnostics, Map context);
+
+} // ClearAssociationAction

Back to the top