Class AnonymousClassExpr
- java.lang.Object
-
- com.google.api.generator.engine.ast.AnonymousClassExpr
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAnonymousClassExpr.Builder
-
Constructor Summary
Constructors Constructor Description AnonymousClassExpr()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidaccept(AstNodeVisitor visitor)Writes the syntatically-correct Java code representation of this node.static AnonymousClassExpr.Builderbuilder()abstract com.google.common.collect.ImmutableList<MethodDefinition>methods()abstract com.google.common.collect.ImmutableList<Statement>statements()abstract TypeNodetype()
-
-
-
Method Detail
-
methods
public abstract com.google.common.collect.ImmutableList<MethodDefinition> methods()
-
statements
public abstract com.google.common.collect.ImmutableList<Statement> statements()
-
accept
public void accept(AstNodeVisitor visitor)
Description copied from interface:AstNodeWrites the syntatically-correct Java code representation of this node.
-
builder
public static AnonymousClassExpr.Builder builder()
-
-