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()
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()
-
-