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.
 
Methods inherited from interface com.borland.jbuilder.jot.JotExpression
getAssignment, getCondition, getMethodCall, getNew, getOperation, getValue, getVariable, isConstant, isNull
 
Methods inherited from interface com.borland.jbuilder.jot.JotMarker
addUserData, getEndPosition, getStartPosition, getUserData
 
Methods inherited from interface com.borland.jbuilder.jot.JotSourceElement
getIndentLevel, getParent, getText, isModified, setModified, setText
 

Method Detail

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.