Uses of Package
koala.dynamicjava.tree

Packages that use koala.dynamicjava.tree
koala.dynamicjava.classinfo Contains all the classes and interfaces for using reflection on Java or interpreted classes. 
koala.dynamicjava.interpreter Contains the classes for interpreting Java language statements. 
koala.dynamicjava.interpreter.context Provides the classes that hold the context of execution. 
koala.dynamicjava.interpreter.error Contains the runtime errors classes. 
koala.dynamicjava.interpreter.modifier Provides interfaces and classes for dealing with different types of left hand side modifier in an assignment. 
koala.dynamicjava.interpreter.throwable Provides interfaces and classes for dealing with different types of non local gotos and errors. 
koala.dynamicjava.parser Provides the classes that compose the default parser for the language. 
koala.dynamicjava.parser.wrapper Provides a collection of classes used to hide the implementation of the parser. 
koala.dynamicjava.tree Provides classes and interfaces for producing an abstract syntax tree. 
koala.dynamicjava.tree.visitor Contains interfaces and classes for traversing the syntax tree. 
koala.dynamicjava.util Contains miscellaneous utility classes. 
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.classinfo
ArrayType
          This class represents the array type nodes of the syntax tree
ConstructorDeclaration
          This class represents constructor declarations in an AST
FieldDeclaration
          This class represents field declarations in an AST
MethodDeclaration
          This class represents method declarations in an AST
PrimitiveType
          This class represents the primitive type nodes of the syntax tree
ReferenceType
          This class represents the reference type nodes of the syntax tree
TypeDeclaration
          This class represents a type declaration
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.interpreter
AddAssignExpression
          This class represents the add assign expression nodes of the syntax tree
AddExpression
          This class represents the add expression nodes of the syntax tree
AndExpression
          This class represents the and expression nodes of the syntax tree
ArrayAccess
          This class represents the array access nodes of the syntax tree
ArrayAllocation
          This class represents the array allocation nodes of the syntax tree
ArrayInitializer
          This class represents the array initializer nodes of the syntax tree
ArrayType
          This class represents the array type nodes of the syntax tree
BinaryExpression
          This class represents the binary expression nodes of the syntax tree
BitAndAssignExpression
          This class represents the bit and assign expression nodes of the syntax tree
BitAndExpression
          This class represents the bit and expression nodes of the syntax tree
BitOrAssignExpression
          This class represents the bit and assign expression nodes of the syntax tree
BitOrExpression
          This class represents the bit or expression nodes of the syntax tree
BlockStatement
          This class represents the block statement nodes of the syntax tree
BreakStatement
          This class represents the break statement nodes of the syntax tree
CastExpression
          This class represents the cast expression nodes of the syntax tree
CatchStatement
          To store the informations about the catch statements
ClassAllocation
          This class represents the anonymous class allocation nodes of the syntax tree
ClassDeclaration
          This class represents a class declaration
ClassInitializer
          This class represents the class initializer statement nodes of the syntax tree
ComplementExpression
          This class represents the complement expression nodes of the syntax tree
ConditionalExpression
          This class represents the binary expression nodes of the syntax tree
ConstructorInvocation
          This class represents the constructor call nodes of the syntax tree
ContinueStatement
          This class represents the continue statement nodes of the syntax tree
DivideAssignExpression
          This class represents the divide assign expression nodes of the syntax tree
DivideExpression
          This class represents the divide expression nodes of the syntax tree
DoStatement
          This class represents the do statement nodes of the syntax tree
EqualExpression
          This class represents the equal expression nodes of the syntax tree
ExclusiveOrAssignExpression
          This class represents the exclusive and assign expression nodes of the syntax tree
ExclusiveOrExpression
          This class represents the bit or expression nodes of the syntax tree
FieldDeclaration
          This class represents field declarations in an AST
FormalParameter
          This class represents the method parameters in the syntax tree
ForStatement
          This class represents the for statement nodes of the syntax tree
FunctionCall
          This class represents the function call nodes of the syntax tree
GreaterExpression
          This class represents the greater expression nodes of the syntax tree
GreaterOrEqualExpression
          This class represents the greater or equal expression nodes of the syntax tree
IfThenElseStatement
          This class represents the if-then-else statement nodes of the syntax tree
IfThenStatement
          This class represents the if-then statement nodes of the syntax tree
ImportDeclaration
          This class represents the import declarations
InnerAllocation
          This class represents the inner allocation nodes of the syntax tree
InnerClassAllocation
          This class represents the anonymous inner classe allocation nodes of the syntax tree
InstanceInitializer
          This class represents the instance initializer statement nodes of the syntax tree
InstanceOfExpression
          This class represents the instanceof expression nodes of the syntax tree
InterfaceDeclaration
          This class represents an interface declaration
LabeledStatement
          This class represents the labeled statement nodes of the syntax tree
LessExpression
          This class represents the less expression nodes of the syntax tree
LessOrEqualExpression
          This class represents the less or equal expression nodes of the syntax tree
Literal
          This class represents the literal nodes of the syntax tree
MethodDeclaration
          This class represents method declarations in an AST
MinusExpression
          This class represents the minus expression nodes of the syntax tree
MultiplyAssignExpression
          This class represents the multiply assign expression nodes of the syntax tree
MultiplyExpression
          This class represents the multiply expression nodes of the syntax tree
Node
          This class represents the nodes of the syntax tree
NotEqualExpression
          This class represents the not equal expression nodes of the syntax tree
NotExpression
          This class represents the not expression nodes of the syntax tree
ObjectFieldAccess
          This class represents the field access nodes of the syntax tree
ObjectMethodCall
          This class represents the method call nodes of the syntax tree
OrExpression
          This class represents the or expression nodes of the syntax tree
PackageDeclaration
          This class represents the package declarations
PlusExpression
          This class represents the plus expression nodes of the syntax tree
PostDecrement
          This class represents the post decrement nodes of the syntax tree
PostIncrement
          This class represents the post increment nodes of the syntax tree
PreDecrement
          This class represents the pre decrement nodes of the syntax tree
PreIncrement
          This class represents the pre increment nodes of the syntax tree
PrimitiveType
          This class represents the primitive type nodes of the syntax tree
QualifiedName
          This class represents the qualified name nodes of the syntax tree
ReferenceType
          This class represents the reference type nodes of the syntax tree
RemainderAssignExpression
          This class represents the remainder assign expression nodes of the syntax tree
RemainderExpression
          This class represents the remainder expression nodes of the syntax tree
ReturnStatement
          This class represents the return statement nodes of the syntax tree
ShiftLeftAssignExpression
          This class represents the shift left assign expression nodes of the syntax tree
ShiftLeftExpression
          This class represents the shift left expression nodes of the syntax tree
ShiftRightAssignExpression
          This class represents the shift right assign expression nodes of the syntax tree
ShiftRightExpression
          This class represents the shift right expression nodes of the syntax tree
SimpleAllocation
          This class represents the allocation nodes of the syntax tree
SimpleAssignExpression
          This class represents the assign expression nodes of the syntax tree
StaticFieldAccess
          This class represents the field access nodes of the syntax tree
StaticMethodCall
          This class represents the static method call nodes of the syntax tree
SubtractAssignExpression
          This class represents the subtract assign expression nodes of the syntax tree
SubtractExpression
          This class represents the subtract expression nodes of the syntax tree
SuperFieldAccess
          This class represents the super field access nodes of the syntax tree
SuperMethodCall
          This class represents the super method call nodes of the syntax tree
SwitchBlock
          This class represents the switch expression-statement bindings
SwitchStatement
          This class represents the switch statement nodes of the syntax tree
SynchronizedStatement
          This class represents the synchronized statement nodes of the syntax tree
ThisExpression
          This class represents the 'this' expression nodes of the syntax tree
ThrowStatement
          This class represents the throw statement nodes of the syntax tree
TryStatement
          This class represents the try statement nodes of the syntax tree
TypeDeclaration
          This class represents a type declaration
TypeExpression
          This class represents the type expression nodes of the syntax tree
UnaryExpression
          This class represents the unary expression nodes of the syntax tree
UnsignedShiftRightAssignExpression
          This class represents the unsigned shift right assign expression nodes of the syntax tree
UnsignedShiftRightExpression
          This class represents the unsigned shift right expression nodes of the syntax tree
VariableDeclaration
          This class represents variable declarations in an AST
WhileStatement
          This class represents the while statement nodes of the syntax tree
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.interpreter.context
ArrayInitializer
          This class represents the array initializer nodes of the syntax tree
ArrayType
          This class represents the array type nodes of the syntax tree
ClassAllocation
          This class represents the anonymous class allocation nodes of the syntax tree
Expression
          This class represents the expression nodes of the syntax tree
FieldDeclaration
          This class represents field declarations in an AST
Identifier
          This class implements a tree token
IdentifierToken
          This interface represents an identifier token, ie a token from the tree point of view
MethodDeclaration
          This class represents method declarations in an AST
Node
          This class represents the nodes of the syntax tree
ObjectFieldAccess
          This class represents the field access nodes of the syntax tree
QualifiedName
          This class represents the qualified name nodes of the syntax tree
ReferenceType
          This class represents the reference type nodes of the syntax tree
SimpleAllocation
          This class represents the allocation nodes of the syntax tree
StaticFieldAccess
          This class represents the field access nodes of the syntax tree
SuperFieldAccess
          This class represents the super field access nodes of the syntax tree
TypeDeclaration
          This class represents a type declaration
TypeExpression
          This class represents the type expression nodes of the syntax tree
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.interpreter.error
Node
          This class represents the nodes of the syntax tree
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.interpreter.modifier
ArrayAccess
          This class represents the array access nodes of the syntax tree
Node
          This class represents the nodes of the syntax tree
ObjectFieldAccess
          This class represents the field access nodes of the syntax tree
QualifiedName
          This class represents the qualified name nodes of the syntax tree
SuperFieldAccess
          This class represents the super field access nodes of the syntax tree
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.interpreter.throwable
Node
          This class represents the nodes of the syntax tree
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.parser
Allocation
          This class represents the allocation nodes of the syntax tree
ArrayAllocation.TypeDescriptor
          This class contains informations about the array to create
ArrayInitializer
          This class represents the array initializer nodes of the syntax tree
BlockStatement
          This class represents the block statement nodes of the syntax tree
BreakStatement
          This class represents the break statement nodes of the syntax tree
ClassDeclaration
          This class represents a class declaration
ConstructorDeclaration
          This class represents constructor declarations in an AST
ConstructorInvocation
          This class represents the constructor call nodes of the syntax tree
ContinueStatement
          This class represents the continue statement nodes of the syntax tree
DoStatement
          This class represents the do statement nodes of the syntax tree
EmptyStatement
          This class represents the empty statement nodes of the syntax tree
Expression
          This class represents the expression nodes of the syntax tree
FormalParameter
          This class represents the method parameters in the syntax tree
ForStatement
          This class represents the for statement nodes of the syntax tree
ImportDeclaration
          This class represents the import declarations
Initializer
          This class represents the initializer statement nodes of the syntax tree
InterfaceDeclaration
          This class represents an interface declaration
MethodDeclaration
          This class represents method declarations in an AST
Node
          This class represents the nodes of the syntax tree
PackageDeclaration
          This class represents the package declarations
ReturnStatement
          This class represents the return statement nodes of the syntax tree
Statement
          This class represents the statement nodes of the syntax tree
SwitchStatement
          This class represents the switch statement nodes of the syntax tree
SynchronizedStatement
          This class represents the synchronized statement nodes of the syntax tree
ThrowStatement
          This class represents the throw statement nodes of the syntax tree
TryStatement
          This class represents the try statement nodes of the syntax tree
Type
          This class represents the type nodes of the syntax tree
TypeDeclaration
          This class represents a type declaration
WhileStatement
          This class represents the while statement nodes of the syntax tree
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.parser.wrapper
IdentifierToken
          This interface represents an identifier token, ie a token from the tree point of view
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.tree
Allocation
          This class represents the allocation nodes of the syntax tree
ArrayAllocation.TypeDescriptor
          This class contains informations about the array to create
ArrayInitializer
          This class represents the array initializer nodes of the syntax tree
AssignExpression
          This class represents the assign expression nodes of the syntax tree
BinaryExpression
          This class represents the binary expression nodes of the syntax tree
BlockStatement
          This class represents the block statement nodes of the syntax tree
ConstructorInvocation
          This class represents the constructor call nodes of the syntax tree
ContinueTarget
          The classes that implements this interface can contain a continue statement
Expression
          This class represents the expression nodes of the syntax tree
ExpressionContainer
          This interface is implemented by the classes that contains an expression
ExpressionStatement
          This interface represents the statement expressions
FieldAccess
          This class represents the field access nodes of the syntax tree
FormalParameter
          This class represents the method parameters in the syntax tree
IdentifierToken
          This interface represents an identifier token, ie a token from the tree point of view
IfThenStatement
          This class represents the if-then statement nodes of the syntax tree
Initializer
          This class represents the initializer statement nodes of the syntax tree
InnerAllocation
          This class represents the inner allocation nodes of the syntax tree
LeftHandSide
          This interface represents the target of an assignment
Literal
          This class represents the literal nodes of the syntax tree
MethodCall
          This class represents the method call nodes of the syntax tree
Node
          This class represents the nodes of the syntax tree
PrimaryExpression
          This class represents the primary expression nodes of the syntax tree
PrimitiveType
          This class represents the primitive type nodes of the syntax tree
ReferenceType
          This class represents the reference type nodes of the syntax tree
Statement
          This class represents the statement nodes of the syntax tree
Type
          This class represents the type nodes of the syntax tree
TypeDeclaration
          This class represents a type declaration
UnaryExpression
          This class represents the unary expression nodes of the syntax tree
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.tree.visitor
AddAssignExpression
          This class represents the add assign expression nodes of the syntax tree
AddExpression
          This class represents the add expression nodes of the syntax tree
AndExpression
          This class represents the and expression nodes of the syntax tree
ArrayAccess
          This class represents the array access nodes of the syntax tree
ArrayAllocation
          This class represents the array allocation nodes of the syntax tree
ArrayInitializer
          This class represents the array initializer nodes of the syntax tree
ArrayType
          This class represents the array type nodes of the syntax tree
BitAndAssignExpression
          This class represents the bit and assign expression nodes of the syntax tree
BitAndExpression
          This class represents the bit and expression nodes of the syntax tree
BitOrAssignExpression
          This class represents the bit and assign expression nodes of the syntax tree
BitOrExpression
          This class represents the bit or expression nodes of the syntax tree
BlockStatement
          This class represents the block statement nodes of the syntax tree
BreakStatement
          This class represents the break statement nodes of the syntax tree
CastExpression
          This class represents the cast expression nodes of the syntax tree
CatchStatement
          To store the informations about the catch statements
ClassAllocation
          This class represents the anonymous class allocation nodes of the syntax tree
ClassDeclaration
          This class represents a class declaration
ClassInitializer
          This class represents the class initializer statement nodes of the syntax tree
ComplementExpression
          This class represents the complement expression nodes of the syntax tree
ConditionalExpression
          This class represents the binary expression nodes of the syntax tree
ConstructorDeclaration
          This class represents constructor declarations in an AST
ConstructorInvocation
          This class represents the constructor call nodes of the syntax tree
ContinueStatement
          This class represents the continue statement nodes of the syntax tree
DivideAssignExpression
          This class represents the divide assign expression nodes of the syntax tree
DivideExpression
          This class represents the divide expression nodes of the syntax tree
DoStatement
          This class represents the do statement nodes of the syntax tree
EmptyStatement
          This class represents the empty statement nodes of the syntax tree
EqualExpression
          This class represents the equal expression nodes of the syntax tree
ExclusiveOrAssignExpression
          This class represents the exclusive and assign expression nodes of the syntax tree
ExclusiveOrExpression
          This class represents the bit or expression nodes of the syntax tree
FieldDeclaration
          This class represents field declarations in an AST
FormalParameter
          This class represents the method parameters in the syntax tree
ForStatement
          This class represents the for statement nodes of the syntax tree
FunctionCall
          This class represents the function call nodes of the syntax tree
GreaterExpression
          This class represents the greater expression nodes of the syntax tree
GreaterOrEqualExpression
          This class represents the greater or equal expression nodes of the syntax tree
IfThenElseStatement
          This class represents the if-then-else statement nodes of the syntax tree
IfThenStatement
          This class represents the if-then statement nodes of the syntax tree
ImportDeclaration
          This class represents the import declarations
InnerAllocation
          This class represents the inner allocation nodes of the syntax tree
InnerClassAllocation
          This class represents the anonymous inner classe allocation nodes of the syntax tree
InstanceInitializer
          This class represents the instance initializer statement nodes of the syntax tree
InstanceOfExpression
          This class represents the instanceof expression nodes of the syntax tree
InterfaceDeclaration
          This class represents an interface declaration
LabeledStatement
          This class represents the labeled statement nodes of the syntax tree
LessExpression
          This class represents the less expression nodes of the syntax tree
LessOrEqualExpression
          This class represents the less or equal expression nodes of the syntax tree
Literal
          This class represents the literal nodes of the syntax tree
MethodDeclaration
          This class represents method declarations in an AST
MinusExpression
          This class represents the minus expression nodes of the syntax tree
MultiplyAssignExpression
          This class represents the multiply assign expression nodes of the syntax tree
MultiplyExpression
          This class represents the multiply expression nodes of the syntax tree
NotEqualExpression
          This class represents the not equal expression nodes of the syntax tree
NotExpression
          This class represents the not expression nodes of the syntax tree
ObjectFieldAccess
          This class represents the field access nodes of the syntax tree
ObjectMethodCall
          This class represents the method call nodes of the syntax tree
OrExpression
          This class represents the or expression nodes of the syntax tree
PackageDeclaration
          This class represents the package declarations
PlusExpression
          This class represents the plus expression nodes of the syntax tree
PostDecrement
          This class represents the post decrement nodes of the syntax tree
PostIncrement
          This class represents the post increment nodes of the syntax tree
PreDecrement
          This class represents the pre decrement nodes of the syntax tree
PreIncrement
          This class represents the pre increment nodes of the syntax tree
PrimitiveType
          This class represents the primitive type nodes of the syntax tree
QualifiedName
          This class represents the qualified name nodes of the syntax tree
ReferenceType
          This class represents the reference type nodes of the syntax tree
RemainderAssignExpression
          This class represents the remainder assign expression nodes of the syntax tree
RemainderExpression
          This class represents the remainder expression nodes of the syntax tree
ReturnStatement
          This class represents the return statement nodes of the syntax tree
ShiftLeftAssignExpression
          This class represents the shift left assign expression nodes of the syntax tree
ShiftLeftExpression
          This class represents the shift left expression nodes of the syntax tree
ShiftRightAssignExpression
          This class represents the shift right assign expression nodes of the syntax tree
ShiftRightExpression
          This class represents the shift right expression nodes of the syntax tree
SimpleAllocation
          This class represents the allocation nodes of the syntax tree
SimpleAssignExpression
          This class represents the assign expression nodes of the syntax tree
StaticFieldAccess
          This class represents the field access nodes of the syntax tree
StaticMethodCall
          This class represents the static method call nodes of the syntax tree
SubtractAssignExpression
          This class represents the subtract assign expression nodes of the syntax tree
SubtractExpression
          This class represents the subtract expression nodes of the syntax tree
SuperFieldAccess
          This class represents the super field access nodes of the syntax tree
SuperMethodCall
          This class represents the super method call nodes of the syntax tree
SwitchBlock
          This class represents the switch expression-statement bindings
SwitchStatement
          This class represents the switch statement nodes of the syntax tree
SynchronizedStatement
          This class represents the synchronized statement nodes of the syntax tree
ThisExpression
          This class represents the 'this' expression nodes of the syntax tree
ThrowStatement
          This class represents the throw statement nodes of the syntax tree
TryStatement
          This class represents the try statement nodes of the syntax tree
TypeExpression
          This class represents the type expression nodes of the syntax tree
UnsignedShiftRightAssignExpression
          This class represents the unsigned shift right assign expression nodes of the syntax tree
UnsignedShiftRightExpression
          This class represents the unsigned shift right expression nodes of the syntax tree
VariableDeclaration
          This class represents variable declarations in an AST
WhileStatement
          This class represents the while statement nodes of the syntax tree
 

Classes in koala.dynamicjava.tree used by koala.dynamicjava.util
AddAssignExpression
          This class represents the add assign expression nodes of the syntax tree
AddExpression
          This class represents the add expression nodes of the syntax tree
AndExpression
          This class represents the and expression nodes of the syntax tree
ArrayAccess
          This class represents the array access nodes of the syntax tree
ArrayAllocation
          This class represents the array allocation nodes of the syntax tree
ArrayInitializer
          This class represents the array initializer nodes of the syntax tree
ArrayType
          This class represents the array type nodes of the syntax tree
BitAndAssignExpression
          This class represents the bit and assign expression nodes of the syntax tree
BitAndExpression
          This class represents the bit and expression nodes of the syntax tree
BitOrAssignExpression
          This class represents the bit and assign expression nodes of the syntax tree
BitOrExpression
          This class represents the bit or expression nodes of the syntax tree
BlockStatement
          This class represents the block statement nodes of the syntax tree
BreakStatement
          This class represents the break statement nodes of the syntax tree
CastExpression
          This class represents the cast expression nodes of the syntax tree
CatchStatement
          To store the informations about the catch statements
ClassAllocation
          This class represents the anonymous class allocation nodes of the syntax tree
ClassDeclaration
          This class represents a class declaration
ClassInitializer
          This class represents the class initializer statement nodes of the syntax tree
ComplementExpression
          This class represents the complement expression nodes of the syntax tree
ConditionalExpression
          This class represents the binary expression nodes of the syntax tree
ConstructorDeclaration
          This class represents constructor declarations in an AST
ConstructorInvocation
          This class represents the constructor call nodes of the syntax tree
ContinueStatement
          This class represents the continue statement nodes of the syntax tree
DivideAssignExpression
          This class represents the divide assign expression nodes of the syntax tree
DivideExpression
          This class represents the divide expression nodes of the syntax tree
DoStatement
          This class represents the do statement nodes of the syntax tree
EmptyStatement
          This class represents the empty statement nodes of the syntax tree
EqualExpression
          This class represents the equal expression nodes of the syntax tree
ExclusiveOrAssignExpression
          This class represents the exclusive and assign expression nodes of the syntax tree
ExclusiveOrExpression
          This class represents the bit or expression nodes of the syntax tree
FieldDeclaration
          This class represents field declarations in an AST
FormalParameter
          This class represents the method parameters in the syntax tree
ForStatement
          This class represents the for statement nodes of the syntax tree
FunctionCall
          This class represents the function call nodes of the syntax tree
GreaterExpression
          This class represents the greater expression nodes of the syntax tree
GreaterOrEqualExpression
          This class represents the greater or equal expression nodes of the syntax tree
IfThenElseStatement
          This class represents the if-then-else statement nodes of the syntax tree
IfThenStatement
          This class represents the if-then statement nodes of the syntax tree
ImportDeclaration
          This class represents the import declarations
InnerAllocation
          This class represents the inner allocation nodes of the syntax tree
InnerClassAllocation
          This class represents the anonymous inner classe allocation nodes of the syntax tree
InstanceInitializer
          This class represents the instance initializer statement nodes of the syntax tree
InstanceOfExpression
          This class represents the instanceof expression nodes of the syntax tree
InterfaceDeclaration
          This class represents an interface declaration
LabeledStatement
          This class represents the labeled statement nodes of the syntax tree
LessExpression
          This class represents the less expression nodes of the syntax tree
LessOrEqualExpression
          This class represents the less or equal expression nodes of the syntax tree
Literal
          This class represents the literal nodes of the syntax tree
MethodDeclaration
          This class represents method declarations in an AST
MinusExpression
          This class represents the minus expression nodes of the syntax tree
MultiplyAssignExpression
          This class represents the multiply assign expression nodes of the syntax tree
MultiplyExpression
          This class represents the multiply expression nodes of the syntax tree
NotEqualExpression
          This class represents the not equal expression nodes of the syntax tree
NotExpression
          This class represents the not expression nodes of the syntax tree
ObjectFieldAccess
          This class represents the field access nodes of the syntax tree
ObjectMethodCall
          This class represents the method call nodes of the syntax tree
OrExpression
          This class represents the or expression nodes of the syntax tree
PackageDeclaration
          This class represents the package declarations
PlusExpression
          This class represents the plus expression nodes of the syntax tree
PostDecrement
          This class represents the post decrement nodes of the syntax tree
PostIncrement
          This class represents the post increment nodes of the syntax tree
PreDecrement
          This class represents the pre decrement nodes of the syntax tree
PreIncrement
          This class represents the pre increment nodes of the syntax tree
PrimitiveType
          This class represents the primitive type nodes of the syntax tree
QualifiedName
          This class represents the qualified name nodes of the syntax tree
ReferenceType
          This class represents the reference type nodes of the syntax tree
RemainderAssignExpression
          This class represents the remainder assign expression nodes of the syntax tree
RemainderExpression
          This class represents the remainder expression nodes of the syntax tree
ReturnStatement
          This class represents the return statement nodes of the syntax tree
ShiftLeftAssignExpression
          This class represents the shift left assign expression nodes of the syntax tree
ShiftLeftExpression
          This class represents the shift left expression nodes of the syntax tree
ShiftRightAssignExpression
          This class represents the shift right assign expression nodes of the syntax tree
ShiftRightExpression
          This class represents the shift right expression nodes of the syntax tree
SimpleAllocation
          This class represents the allocation nodes of the syntax tree
SimpleAssignExpression
          This class represents the assign expression nodes of the syntax tree
StaticFieldAccess
          This class represents the field access nodes of the syntax tree
StaticMethodCall
          This class represents the static method call nodes of the syntax tree
SubtractAssignExpression
          This class represents the subtract assign expression nodes of the syntax tree
SubtractExpression
          This class represents the subtract expression nodes of the syntax tree
SuperFieldAccess
          This class represents the super field access nodes of the syntax tree
SuperMethodCall
          This class represents the super method call nodes of the syntax tree
SwitchBlock
          This class represents the switch expression-statement bindings
SwitchStatement
          This class represents the switch statement nodes of the syntax tree
SynchronizedStatement
          This class represents the synchronized statement nodes of the syntax tree
ThisExpression
          This class represents the 'this' expression nodes of the syntax tree
ThrowStatement
          This class represents the throw statement nodes of the syntax tree
TryStatement
          This class represents the try statement nodes of the syntax tree
TypeExpression
          This class represents the type expression nodes of the syntax tree
UnsignedShiftRightAssignExpression
          This class represents the unsigned shift right assign expression nodes of the syntax tree
UnsignedShiftRightExpression
          This class represents the unsigned shift right expression nodes of the syntax tree
VariableDeclaration
          This class represents variable declarations in an AST
WhileStatement
          This class represents the while statement nodes of the syntax tree
 



Copyright © 2001 Stephane Hillion. All Rights Reserved.