Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/OpaqueBehavior.java')
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/OpaqueBehavior.java71
1 files changed, 71 insertions, 0 deletions
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/OpaqueBehavior.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/OpaqueBehavior.java
new file mode 100644
index 00000000..4e41e100
--- /dev/null
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/OpaqueBehavior.java
@@ -0,0 +1,71 @@
+/*
+ * 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: OpaqueBehavior.java,v 1.1 2005/11/14 22:26:00 khussey Exp $
+ */
+package org.eclipse.uml2.uml;
+
+import java.util.List;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Opaque Behavior</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ * An behavior with implementation-specific semantics.
+ * <!-- end-model-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.uml2.uml.OpaqueBehavior#getBodies <em>Body</em>}</li>
+ * <li>{@link org.eclipse.uml2.uml.OpaqueBehavior#getLanguages <em>Language</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.uml2.uml.UMLPackage#getOpaqueBehavior()
+ * @model
+ * @generated
+ */
+public interface OpaqueBehavior
+ extends Behavior {
+
+ /**
+ * Returns the value of the '<em><b>Body</b></em>' attribute list.
+ * The list contents are of type {@link java.lang.String}.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * Specifies the behavior in one or more languages.
+ * <!-- end-model-doc -->
+ * @return the value of the '<em>Body</em>' attribute list.
+ * @see org.eclipse.uml2.uml.UMLPackage#getOpaqueBehavior_Body()
+ * @model type="java.lang.String" required="true"
+ * @generated
+ */
+ List getBodies();
+
+ /**
+ * Returns the value of the '<em><b>Language</b></em>' attribute list.
+ * The list contents are of type {@link java.lang.String}.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * <!-- begin-model-doc -->
+ * Languages the body strings use in the same order as the body strings.
+ * <!-- end-model-doc -->
+ * @return the value of the '<em>Language</em>' attribute list.
+ * @see org.eclipse.uml2.uml.UMLPackage#getOpaqueBehavior_Language()
+ * @model type="java.lang.String"
+ * @generated
+ */
+ List getLanguages();
+
+} // OpaqueBehavior

Back to the top