org.eclipse.ocl.cst.IfExpCS Maven / Gradle / Ivy
/**
*
*
* Copyright (c) 2005, 2008 IBM Corporation, Zeligsoft Inc., 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
* Zeligsoft - Bug 243976
*
*
*
* $Id: IfExpCS.java,v 1.4 2009/12/22 18:42:30 ewillink Exp $
*/
package org.eclipse.ocl.cst;
/**
*
* A representation of the model object 'If Exp CS'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.ocl.cst.IfExpCS#getThenExpression Then Expression}
* - {@link org.eclipse.ocl.cst.IfExpCS#getElseExpression Else Expression}
* - {@link org.eclipse.ocl.cst.IfExpCS#getCondition Condition}
*
*
*
* @see org.eclipse.ocl.cst.CSTPackage#getIfExpCS()
* @model
* @generated
*/
public interface IfExpCS
extends OCLExpressionCS {
/**
* Returns the value of the 'Then Expression' containment reference.
*
*
* If the meaning of the 'Then Expression' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Then Expression' containment reference.
* @see #setThenExpression(OCLExpressionCS)
* @see org.eclipse.ocl.cst.CSTPackage#getIfExpCS_ThenExpression()
* @model containment="true" required="true"
* @generated
*/
OCLExpressionCS getThenExpression();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.IfExpCS#getThenExpression Then Expression}' containment reference.
*
*
* @param value the new value of the 'Then Expression' containment reference.
* @see #getThenExpression()
* @generated
*/
void setThenExpression(OCLExpressionCS value);
/**
* Returns the value of the 'Else Expression' containment reference.
*
*
* If the meaning of the 'Else Expression' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Else Expression' containment reference.
* @see #setElseExpression(OCLExpressionCS)
* @see org.eclipse.ocl.cst.CSTPackage#getIfExpCS_ElseExpression()
* @model containment="true" required="true"
* @generated
*/
OCLExpressionCS getElseExpression();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.IfExpCS#getElseExpression Else Expression}' containment reference.
*
*
* @param value the new value of the 'Else Expression' containment reference.
* @see #getElseExpression()
* @generated
*/
void setElseExpression(OCLExpressionCS value);
/**
* Returns the value of the 'Condition' containment reference.
*
*
* If the meaning of the 'Condition' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Condition' containment reference.
* @see #setCondition(OCLExpressionCS)
* @see org.eclipse.ocl.cst.CSTPackage#getIfExpCS_Condition()
* @model containment="true" required="true"
* @generated
*/
OCLExpressionCS getCondition();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.IfExpCS#getCondition Condition}' containment reference.
*
*
* @param value the new value of the 'Condition' containment reference.
* @see #getCondition()
* @generated
*/
void setCondition(OCLExpressionCS value);
} // IfExpCS