Package com._1c.g5.v8.dt.bsl.model
Interface BinaryExpression
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject
,Expression
,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
BinaryExpressionImpl
public interface BinaryExpression extends Expression
A representation of the model object 'Binary Expression'.The following features are supported:
- See Also:
BslPackage.getBinaryExpression()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Expression
getLeft()
Returns the value of the 'Left' containment reference.BinaryOperation
getOperation()
Returns the value of the 'Operation' attribute.Expression
getRight()
Returns the value of the 'Right' containment reference.void
setLeft(Expression value)
Sets the value of the 'Left
' containment reference.void
setOperation(BinaryOperation value)
Sets the value of the 'Operation
' attribute.void
setRight(Expression value)
Sets the value of the 'Right
' containment reference.-
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface com._1c.g5.v8.dt.bsl.model.Expression
getRetValTypes, getTypes
-
-
-
-
Method Detail
-
getOperation
BinaryOperation getOperation()
Returns the value of the 'Operation' attribute. The literals are from the enumerationBinaryOperation
.- Returns:
- the value of the 'Operation' attribute.
- See Also:
BinaryOperation
,setOperation(BinaryOperation)
,BslPackage.getBinaryExpression_Operation()
-
setOperation
void setOperation(BinaryOperation value)
Sets the value of the 'Operation
' attribute.- Parameters:
value
- the new value of the 'Operation' attribute.- See Also:
BinaryOperation
,getOperation()
-
getLeft
Expression getLeft()
Returns the value of the 'Left' containment reference.- Returns:
- the value of the 'Left' containment reference.
- See Also:
setLeft(Expression)
,BslPackage.getBinaryExpression_Left()
-
setLeft
void setLeft(Expression value)
Sets the value of the 'Left
' containment reference.- Parameters:
value
- the new value of the 'Left' containment reference.- See Also:
getLeft()
-
getRight
Expression getRight()
Returns the value of the 'Right' containment reference.- Returns:
- the value of the 'Right' containment reference.
- See Also:
setRight(Expression)
,BslPackage.getBinaryExpression_Right()
-
setRight
void setRight(Expression value)
Sets the value of the 'Right
' containment reference.- Parameters:
value
- the new value of the 'Right' containment reference.- See Also:
getRight()
-
-