Uses of Class
javassist.compiler.ast.ASTList
-
Packages that use ASTList Package Description javassist.compiler.ast -
-
Uses of ASTList in javassist.compiler.ast
Subclasses of ASTList in javassist.compiler.ast Modifier and Type Class Description classArrayInitArray initializer such as{ 1, 2, 3 }.classAssignExprAssignment expression.classBinExprBinary expression.classCallExprMethod call expression.classCastExprCast expression.classCondExprConditional expression.classDeclaratorVariable declarator.classExprExpression.classFieldDeclclassInstanceOfExprInstanceof expression.classMethodDeclclassNewExprNew Expression.classStmntStatement.Methods in javassist.compiler.ast that return ASTList Modifier and Type Method Description static ASTListASTList. append(ASTList a, ASTree b)Appends an object to a list.static ASTListASTList. concat(ASTList a, ASTList b)Concatenates two lists.ASTListNewExpr. getArguments()ASTListNewExpr. getArraySize()ASTListCastExpr. getClassName()ASTListNewExpr. getClassName()ASTListFieldDecl. getModifiers()ASTListMethodDecl. getModifiers()ASTListMethodDecl. getParams()ASTListMethodDecl. getThrows()static ASTListASTList. make(ASTree e1, ASTree e2, ASTree e3)ASTListASTList. sublist(int nth)Returns a sub list of the list.ASTListASTList. tail()Returns the cdr part of the list.Methods in javassist.compiler.ast with parameters of type ASTList Modifier and Type Method Description static ASTListASTList. append(ASTList a, ASTree b)Appends an object to a list.static StringDeclarator. astToClassName(ASTList name, char sep)voidVisitor. atASTList(ASTList n)static ASTListASTList. concat(ASTList a, ASTList b)Concatenates two lists.static intASTList. length(ASTList list)static NewExprNewExpr. makeObjectArray(ASTList className, ASTList arraySize, ArrayInit init)voidASTList. setTail(ASTList _tail)Constructors in javassist.compiler.ast with parameters of type ASTList Constructor Description ASTList(ASTree _head, ASTList _tail)CastExpr(ASTList className, int dim, ASTree expr)Declarator(ASTList className, int dim)FieldDecl(ASTree _head, ASTList _tail)InstanceOfExpr(ASTList className, int dim, ASTree expr)MethodDecl(ASTree _head, ASTList _tail)NewExpr(int type, ASTList arraySize, ArrayInit init)NewExpr(ASTList className, ASTList args)Stmnt(int op, ASTree _head, ASTList _tail)
-