Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/AdditiveExpression.java')
-rw-r--r--extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/AdditiveExpression.java64
1 files changed, 0 insertions, 64 deletions
diff --git a/extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/AdditiveExpression.java b/extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/AdditiveExpression.java
deleted file mode 100644
index 54e6dbf5fb3..00000000000
--- a/extraplugins/alf09/src-gen/org/eclipse/papyrus/alf/alf/AdditiveExpression.java
+++ /dev/null
@@ -1,64 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
-
- */
-package org.eclipse.papyrus.alf.alf;
-
-import org.eclipse.emf.common.util.EList;
-
-import org.eclipse.emf.ecore.EObject;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Additive Expression</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.papyrus.alf.alf.AdditiveExpression#getExp <em>Exp</em>}</li>
- * <li>{@link org.eclipse.papyrus.alf.alf.AdditiveExpression#getOp <em>Op</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.papyrus.alf.alf.AlfPackage#getAdditiveExpression()
- * @model
- * @generated
- */
-public interface AdditiveExpression extends EObject
-{
- /**
- * Returns the value of the '<em><b>Exp</b></em>' containment reference list.
- * The list contents are of type {@link org.eclipse.papyrus.alf.alf.MultiplicativeExpression}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Exp</em>' containment reference list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Exp</em>' containment reference list.
- * @see org.eclipse.papyrus.alf.alf.AlfPackage#getAdditiveExpression_Exp()
- * @model containment="true"
- * @generated
- */
- EList<MultiplicativeExpression> getExp();
-
- /**
- * Returns the value of the '<em><b>Op</b></em>' attribute list.
- * The list contents are of type {@link java.lang.String}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Op</em>' attribute list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Op</em>' attribute list.
- * @see org.eclipse.papyrus.alf.alf.AlfPackage#getAdditiveExpression_Op()
- * @model unique="false"
- * @generated
- */
- EList<String> getOp();
-
-} // AdditiveExpression

Back to the top