Class CondExpr
- java.lang.Object
-
- org.hotswap.agent.javassist.compiler.ast.ASTree
-
- org.hotswap.agent.javassist.compiler.ast.ASTList
-
- org.hotswap.agent.javassist.compiler.ast.CondExpr
-
- All Implemented Interfaces:
Serializable
public class CondExpr extends ASTList
Conditional expression.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor v)Is a method for the visitor pattern.ASTreecondExpr()ASTreeelseExpr()StringgetTag()Returns the type of this node.voidsetCond(ASTree t)voidsetElse(ASTree t)voidsetThen(ASTree t)ASTreethenExpr()
-
-
-
Method Detail
-
condExpr
public ASTree condExpr()
-
setCond
public void setCond(ASTree t)
-
thenExpr
public ASTree thenExpr()
-
setThen
public void setThen(ASTree t)
-
elseExpr
public ASTree elseExpr()
-
setElse
public void setElse(ASTree t)
-
getTag
public String getTag()
Description copied from class:ASTreeReturns the type of this node. This method is used bytoString().
-
accept
public void accept(Visitor v) throws CompileError
Description copied from class:ASTreeIs a method for the visitor pattern. It callsatXXX()on the given visitor, whereXXXis the class name of the node object.- Overrides:
acceptin classASTList- Throws:
CompileError
-
-