ujf.verimag.bip.cmodel
Interface CConditionalExpression

All Superinterfaces:
CBodyItem, CConditionalStm, CExpression, CStm
All Known Implementing Classes:
CConditionalExpressionImpl

public interface CConditionalExpression
extends CExpression, CConditionalStm

A representation of the model object 'CConditional Expression'.

The following features are supported:

See Also:
CmodelPackage.getCConditionalExpression()

Method Summary
 CExpression getFalseCase()
          Returns the value of the 'False Case' containment reference.
 CExpression getTrueCase()
          Returns the value of the 'True Case' containment reference.
 void setFalseCase(CExpression value)
          Sets the value of the 'False Case' containment reference.
 void setTrueCase(CExpression value)
          Sets the value of the 'True Case' containment reference.
 
Methods inherited from interface ujf.verimag.bip.cmodel.CConditionalStm
getCondition, setCondition
 

Method Detail

getTrueCase

CExpression getTrueCase()
Returns the value of the 'True Case' containment reference.

If the meaning of the 'True Case' containment reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'True Case' containment reference.
See Also:
setTrueCase(CExpression), CmodelPackage.getCConditionalExpression_TrueCase()

setTrueCase

void setTrueCase(CExpression value)
Sets the value of the 'True Case' containment reference.

Parameters:
value - the new value of the 'True Case' containment reference.
See Also:
getTrueCase()

getFalseCase

CExpression getFalseCase()
Returns the value of the 'False Case' containment reference.

If the meaning of the 'False Case' containment reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'False Case' containment reference.
See Also:
setFalseCase(CExpression), CmodelPackage.getCConditionalExpression_FalseCase()

setFalseCase

void setFalseCase(CExpression value)
Sets the value of the 'False Case' containment reference.

Parameters:
value - the new value of the 'False Case' containment reference.
See Also:
getFalseCase()