com.borland.jbuilder.jot
Interface JotTypeop
- All Superinterfaces:
- JotExpression, JotMarker, JotSourceElement
- public interface JotTypeop
- extends JotExpression
This interface represents a type operation such as a cast or instanceof
expression. See sections 15.15 and 15.19.2 in the Java Language Specification
for more information.
Method Summary |
JotExpression |
getExpr()
Returns the expression that is being cast, or the LHS of the
instanceof expression. |
JotType |
getType()
Returns the type of the cast, or the RHS of the instanceof
expression. |
getExpr
public JotExpression getExpr()
- Returns the expression that is being cast, or the LHS of the
instanceof
expression.
getType
public JotType getType()
- Returns the type of the cast, or the RHS of the
instanceof
expression.