Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/ParenthesizedExpression.java')
-rw-r--r--extraplugins/alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/ParenthesizedExpression.java104
1 files changed, 0 insertions, 104 deletions
diff --git a/extraplugins/alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/ParenthesizedExpression.java b/extraplugins/alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/ParenthesizedExpression.java
deleted file mode 100644
index 381af9d9cbd..00000000000
--- a/extraplugins/alf/org.eclipse.papyrus.alf/src-gen/org/eclipse/papyrus/alf/alf/ParenthesizedExpression.java
+++ /dev/null
@@ -1,104 +0,0 @@
-/**
- */
-package org.eclipse.papyrus.alf.alf;
-
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Parenthesized Expression</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.papyrus.alf.alf.ParenthesizedExpression#getExpOrTypeCast <em>Exp Or Type Cast</em>}</li>
- * <li>{@link org.eclipse.papyrus.alf.alf.ParenthesizedExpression#getCasted <em>Casted</em>}</li>
- * <li>{@link org.eclipse.papyrus.alf.alf.ParenthesizedExpression#getSuffix <em>Suffix</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.papyrus.alf.alf.AlfPackage#getParenthesizedExpression()
- * @model
- * @generated
- */
-public interface ParenthesizedExpression extends ValueSpecification, NonLiteralValueSpecification
-{
- /**
- * Returns the value of the '<em><b>Exp Or Type Cast</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Exp Or Type Cast</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>Exp Or Type Cast</em>' containment reference.
- * @see #setExpOrTypeCast(Expression)
- * @see org.eclipse.papyrus.alf.alf.AlfPackage#getParenthesizedExpression_ExpOrTypeCast()
- * @model containment="true"
- * @generated
- */
- Expression getExpOrTypeCast();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.ParenthesizedExpression#getExpOrTypeCast <em>Exp Or Type Cast</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Exp Or Type Cast</em>' containment reference.
- * @see #getExpOrTypeCast()
- * @generated
- */
- void setExpOrTypeCast(Expression value);
-
- /**
- * Returns the value of the '<em><b>Casted</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Casted</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>Casted</em>' containment reference.
- * @see #setCasted(NonLiteralValueSpecification)
- * @see org.eclipse.papyrus.alf.alf.AlfPackage#getParenthesizedExpression_Casted()
- * @model containment="true"
- * @generated
- */
- NonLiteralValueSpecification getCasted();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.ParenthesizedExpression#getCasted <em>Casted</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Casted</em>' containment reference.
- * @see #getCasted()
- * @generated
- */
- void setCasted(NonLiteralValueSpecification value);
-
- /**
- * Returns the value of the '<em><b>Suffix</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Suffix</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>Suffix</em>' containment reference.
- * @see #setSuffix(SuffixExpression)
- * @see org.eclipse.papyrus.alf.alf.AlfPackage#getParenthesizedExpression_Suffix()
- * @model containment="true"
- * @generated
- */
- SuffixExpression getSuffix();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.alf.alf.ParenthesizedExpression#getSuffix <em>Suffix</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Suffix</em>' containment reference.
- * @see #getSuffix()
- * @generated
- */
- void setSuffix(SuffixExpression value);
-
-} // ParenthesizedExpression

Back to the top