|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ModifierAST | |
jparse | Provides the main classes that parse and evaluate Java programs. |
jparse.expr | Provides classes that represent Java expressions. |
jparse.stmt | Provides classes that represent Java statements. |
Uses of ModifierAST in jparse |
Fields in jparse declared as ModifierAST | |
(package private) ModifierAST |
TypeAST.modifiers
The modifiers for this type |
private ModifierAST |
ParameterAST.mods
The modifiers for this parameter |
private ModifierAST |
MethAST.modifiers
The modifiers for this method |
private ModifierAST |
ConstrAST.modifiers
The modifiers for this constructor |
ModifierAST |
CompileContext.mods
The current modifiers |
Methods in jparse that return ModifierAST | |
ModifierAST |
ParameterAST.getModifiers()
Get the modifiers for this variable |
Methods in jparse with parameters of type ModifierAST | |
protected void |
JavaParser.classDefinition(ModifierAST modifiers)
|
protected void |
JavaParser.interfaceDefinition(ModifierAST modifiers)
|
protected void |
TypeAST.setInfo(String pkg,
String typeName,
TypeAST out,
ModifierAST mods)
Set the name and outer class for this type |
Constructors in jparse with parameters of type ModifierAST | |
ParameterAST(ModifierAST mod,
TypeAST type,
VarAST variable)
Create a new parameter AST |
|
MethAST(ModifierAST mods,
TypeAST retType,
IdentifierAST name,
JavaAST parameters,
JavaAST brackets,
JavaAST exceptions,
CompoundAST block)
Create a new method AST |
|
ConstrAST(ModifierAST mods,
JavaAST parameters,
JavaAST exceptions,
CompoundAST block)
Create a new constructor AST |
Uses of ModifierAST in jparse.expr |
Fields in jparse.expr declared as ModifierAST | |
private ModifierAST |
VarAST.mods
The modifiers for this variable |
Methods in jparse.expr that return ModifierAST | |
ModifierAST |
VarAST.getModifiers()
Get the modifiers for this variable |
Uses of ModifierAST in jparse.stmt |
Fields in jparse.stmt declared as ModifierAST | |
private ModifierAST |
DeclarationAST.modifiers
The modifiers for this declaration |
Methods in jparse.stmt that return ModifierAST | |
ModifierAST |
DeclarationAST.getModifiers()
Get the modifiers for this declaration |
Constructors in jparse.stmt with parameters of type ModifierAST | |
DeclarationAST(ModifierAST mods,
TypeAST type,
antlr.collections.AST vars)
Create a new declaration statement AST |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |