com.togethersoft.openapi.sci
Interface SciAssignmentExpression
- public interface SciAssignmentExpression
- extends SciExpression
An assignment expression.
Contains getLValue and getRValue methods for getting
expressions from both sides of an assignment operator.
For example, for this expression:
someObject.someAttribute=anotherObject.anotherAttribute;
getLValue and getRValue methods will return expressions for
someObject.someAttribute and anotherObject.anotherAttribute respectively.- Author:
- TogetherSoft
- Since: Together 3.0
| Methods inherited from interface com.togethersoft.openapi.sci.SciObject |
canCut, canDelete, canReplace, copy, cut, delete, getContainingFile, getContainingScope, getLanguage, getPositions, getText, getUserProperty, isReadOnly, replace, setUserProperty |
getLValue
public SciExpression getLValue()
- Returns
SciExpression for the left part of this assignment operation.- Returns:
SciExpression for the left part of this assignment operation
getRValue
public SciExpression getRValue()
- Returns
SciExpression for the right part of this assignment operation.- Returns:
SciExpression for the right part of this assignment operation