Package | Description |
---|---|
com.asakusafw.utils.java.internal.model.syntax |
Naive Java DOM implementations.
|
com.asakusafw.utils.java.internal.model.util |
Internal utlities for Java DOM building/emitting.
|
com.asakusafw.utils.java.model.syntax |
Interfaces for representing Java DOMs.
|
Modifier and Type | Class and Description |
---|---|
class |
VariableDeclaratorImpl
An implementation of
VariableDeclarator . |
Modifier and Type | Method and Description |
---|---|
VariableDeclarator |
ModelFactoryImpl.newVariableDeclarator(SimpleName name,
int extraDimensions,
Expression initializer) |
Modifier and Type | Method and Description |
---|---|
List<? extends VariableDeclarator> |
LocalVariableDeclarationImpl.getVariableDeclarators() |
List<? extends VariableDeclarator> |
FieldDeclarationImpl.getVariableDeclarators() |
Modifier and Type | Method and Description |
---|---|
FieldDeclaration |
ModelFactoryImpl.newFieldDeclaration(Javadoc javadoc,
List<? extends Attribute> modifiers,
Type type,
List<? extends VariableDeclarator> variableDeclarators) |
LocalVariableDeclaration |
ModelFactoryImpl.newLocalVariableDeclaration(List<? extends Attribute> modifiers,
Type type,
List<? extends VariableDeclarator> variableDeclarators) |
void |
LocalVariableDeclarationImpl.setVariableDeclarators(List<? extends VariableDeclarator> variableDeclarators)
Sets the variable declarators.
|
void |
FieldDeclarationImpl.setVariableDeclarators(List<? extends VariableDeclarator> variableDeclarators)
Sets the field variable declarators.
|
Modifier and Type | Method and Description |
---|---|
Void |
ModelDigester.visitVariableDeclarator(VariableDeclarator elem,
com.asakusafw.utils.java.internal.model.util.DigestContext context) |
Boolean |
ModelMatcher.visitVariableDeclarator(VariableDeclarator elem,
Model context) |
Modifier and Type | Method and Description |
---|---|
default VariableDeclarator |
ModelFactory.newVariableDeclarator(SimpleName name,
Expression initializer)
Returns a new
VariableDeclarator object. |
VariableDeclarator |
ModelFactory.newVariableDeclarator(SimpleName name,
int extraDimensions,
Expression initializer)
Returns a new
VariableDeclarator object. |
Modifier and Type | Method and Description |
---|---|
List<? extends VariableDeclarator> |
LocalVariableDeclaration.getVariableDeclarators()
Returns the variable declarators.
|
List<? extends VariableDeclarator> |
FieldDeclaration.getVariableDeclarators()
Returns the field variable declarators.
|
Modifier and Type | Method and Description |
---|---|
R |
StrictVisitor.visitVariableDeclarator(VariableDeclarator elem,
C context) |
R |
Visitor.visitVariableDeclarator(VariableDeclarator elem,
C context)
Processes
VariableDeclarator using this visitor. |
Modifier and Type | Method and Description |
---|---|
FieldDeclaration |
ModelFactory.newFieldDeclaration(Javadoc javadoc,
List<? extends Attribute> modifiers,
Type type,
List<? extends VariableDeclarator> variableDeclarators)
Returns a new
FieldDeclaration object. |
LocalVariableDeclaration |
ModelFactory.newLocalVariableDeclaration(List<? extends Attribute> modifiers,
Type type,
List<? extends VariableDeclarator> variableDeclarators)
Returns a new
LocalVariableDeclaration object. |
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.