Package javassist.compiler.ast
Class CondExpr
- java.lang.Object
-
- javassist.compiler.ast.ASTree
-
- javassist.compiler.ast.ASTList
-
- 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 void
accept(Visitor v)
Is a method for the visitor pattern.ASTree
condExpr()
ASTree
elseExpr()
String
getTag()
Returns the type of this node.void
setCond(ASTree t)
void
setElse(ASTree t)
void
setThen(ASTree t)
ASTree
thenExpr()
-
-
-
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:ASTree
Returns the type of this node. This method is used bytoString()
.
-
accept
public void accept(Visitor v) throws CompileError
Description copied from class:ASTree
Is a method for the visitor pattern. It callsatXXX()
on the given visitor, whereXXX
is the class name of the node object.- Overrides:
accept
in classASTList
- Throws:
CompileError
-
-