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 voidaccept(Visitor v)Is a method for the visitor pattern.ASTreecondExpr()ASTreeelseExpr()StringgetTag()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()
-
-