Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/CreateLinkObjectAction.java')
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/CreateLinkObjectAction.java113
1 files changed, 113 insertions, 0 deletions
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/CreateLinkObjectAction.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/CreateLinkObjectAction.java
new file mode 100644
index 00000000..03df8691
--- /dev/null
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/CreateLinkObjectAction.java
@@ -0,0 +1,113 @@
+/*
+ * 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: CreateLinkObjectAction.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;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Create Link Object Action</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ * This action is exclusively for creating links of association classes. It returns the created link object.
+ * <!-- end-model-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.uml2.uml.CreateLinkObjectAction#getResult <em>Result</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.uml2.uml.UMLPackage#getCreateLinkObjectAction()
+ * @model
+ * @generated
+ */
+public interface CreateLinkObjectAction
+ extends CreateLinkAction {
+
+ /**
+ * Returns the value of the '<em><b>Result</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * Gives the output pin on which the result is put.
+ * <!-- end-model-doc -->
+ * @return the value of the '<em>Result</em>' containment reference.
+ * @see #setResult(OutputPin)
+ * @see org.eclipse.uml2.uml.UMLPackage#getCreateLinkObjectAction_Result()
+ * @model containment="true" resolveProxies="false" required="true" ordered="false"
+ * @generated
+ */
+ OutputPin getResult();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.uml2.uml.CreateLinkObjectAction#getResult <em>Result</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Result</em>' containment reference.
+ * @see #getResult()
+ * @generated
+ */
+ void setResult(OutputPin value);
+
+ /**
+ * Creates a {@link org.eclipse.uml2.uml.OutputPin} and sets the '<em><b>Result</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return The new {@link org.eclipse.uml2.uml.OutputPin}.
+ * @see #getResult()
+ * @generated
+ */
+ OutputPin createResult();
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * The association must be an association class.
+ * self.association().oclIsKindOf(Class)
+ * <!-- end-model-doc -->
+ * @model
+ * @generated
+ */
+ boolean validateAssociationClass(DiagnosticChain diagnostics, Map context);
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * The type of the result pin must be the same as the association of the action.
+ * self.result.type = self.association()
+ * <!-- end-model-doc -->
+ * @model
+ * @generated
+ */
+ boolean validateTypeOfResult(DiagnosticChain diagnostics, Map context);
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * The multiplicity of the output pin is 1..1.
+ * self.result.multiplicity.is(1,1)
+ * <!-- end-model-doc -->
+ * @model
+ * @generated
+ */
+ boolean validateMultiplicity(DiagnosticChain diagnostics, Map context);
+
+} // CreateLinkObjectAction

Back to the top