Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/ClassDefinitionOrStub.java')
-rw-r--r--sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/ClassDefinitionOrStub.java77
1 files changed, 77 insertions, 0 deletions
diff --git a/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/ClassDefinitionOrStub.java b/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/ClassDefinitionOrStub.java
new file mode 100644
index 00000000000..aa70f28d69b
--- /dev/null
+++ b/sandbox/Alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/ClassDefinitionOrStub.java
@@ -0,0 +1,77 @@
+/**
+ */
+package org.eclipse.papyrus.alf.alf;
+
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Class Definition Or Stub</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <p>
+ * The following features are supported:
+ * <ul>
+ * <li>{@link org.eclipse.papyrus.alf.alf.ClassDefinitionOrStub#getClassDeclaration <em>Class Declaration</em>}</li>
+ * <li>{@link org.eclipse.papyrus.alf.alf.ClassDefinitionOrStub#getClassBody <em>Class Body</em>}</li>
+ * </ul>
+ * </p>
+ *
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getClassDefinitionOrStub()
+ * @model
+ * @generated
+ */
+public interface ClassDefinitionOrStub extends ClassifierDefinitionOrStub
+{
+ /**
+ * Returns the value of the '<em><b>Class Declaration</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Class Declaration</em>' containment reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Class Declaration</em>' containment reference.
+ * @see #setClassDeclaration(ClassDeclaration)
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getClassDefinitionOrStub_ClassDeclaration()
+ * @model containment="true"
+ * @generated
+ */
+ ClassDeclaration getClassDeclaration();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.ClassDefinitionOrStub#getClassDeclaration <em>Class Declaration</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Class Declaration</em>' containment reference.
+ * @see #getClassDeclaration()
+ * @generated
+ */
+ void setClassDeclaration(ClassDeclaration value);
+
+ /**
+ * Returns the value of the '<em><b>Class Body</b></em>' containment reference.
+ * <!-- begin-user-doc -->
+ * <p>
+ * If the meaning of the '<em>Class Body</em>' containment reference isn't clear,
+ * there really should be more of a description here...
+ * </p>
+ * <!-- end-user-doc -->
+ * @return the value of the '<em>Class Body</em>' containment reference.
+ * @see #setClassBody(ClassBody)
+ * @see org.eclipse.papyrus.alf.alf.AlfPackage#getClassDefinitionOrStub_ClassBody()
+ * @model containment="true"
+ * @generated
+ */
+ ClassBody getClassBody();
+
+ /**
+ * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.ClassDefinitionOrStub#getClassBody <em>Class Body</em>}' containment reference.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param value the new value of the '<em>Class Body</em>' containment reference.
+ * @see #getClassBody()
+ * @generated
+ */
+ void setClassBody(ClassBody value);
+
+} // ClassDefinitionOrStub

Back to the top