Uses of Class
koala.dynamicjava.tree.BinaryExpression

Packages that use BinaryExpression
koala.dynamicjava.interpreter Contains the classes for interpreting Java language statements. 
koala.dynamicjava.tree Provides classes and interfaces for producing an abstract syntax tree. 
 

Uses of BinaryExpression in koala.dynamicjava.interpreter
 

Methods in koala.dynamicjava.interpreter with parameters of type BinaryExpression
protected  void ClassInfoCompiler.ConstructorVisitor.visitBinaryExpression(BinaryExpression node)
          Visits the subexpressions of a BinaryExpression
protected  void ClassInfoCompiler.ConstructorVisitor.visitNumericExpression(BinaryExpression node, java.lang.String s)
          Visits a numeric expression
protected  void ClassInfoCompiler.ConstructorVisitor.visitBitwiseExpression(BinaryExpression node, java.lang.String s)
          Visits a bitwise expression
protected  void ClassInfoCompiler.ConstructorVisitor.visitShiftExpression(BinaryExpression node, java.lang.String s)
          Visits a shift expression
 

Uses of BinaryExpression in koala.dynamicjava.tree
 

Subclasses of BinaryExpression in koala.dynamicjava.tree
 class AddAssignExpression
          This class represents the add assign expression nodes of the syntax tree
 class AddExpression
          This class represents the add expression nodes of the syntax tree
 class AndExpression
          This class represents the and expression nodes of the syntax tree
 class AssignExpression
          This class represents the assign expression nodes of the syntax tree
 class BitAndAssignExpression
          This class represents the bit and assign expression nodes of the syntax tree
 class BitAndExpression
          This class represents the bit and expression nodes of the syntax tree
 class BitOrAssignExpression
          This class represents the bit and assign expression nodes of the syntax tree
 class BitOrExpression
          This class represents the bit or expression nodes of the syntax tree
 class DivideAssignExpression
          This class represents the divide assign expression nodes of the syntax tree
 class DivideExpression
          This class represents the divide expression nodes of the syntax tree
 class EqualExpression
          This class represents the equal expression nodes of the syntax tree
 class ExclusiveOrAssignExpression
          This class represents the exclusive and assign expression nodes of the syntax tree
 class ExclusiveOrExpression
          This class represents the bit or expression nodes of the syntax tree
 class GreaterExpression
          This class represents the greater expression nodes of the syntax tree
 class GreaterOrEqualExpression
          This class represents the greater or equal expression nodes of the syntax tree
 class LessExpression
          This class represents the less expression nodes of the syntax tree
 class LessOrEqualExpression
          This class represents the less or equal expression nodes of the syntax tree
 class MultiplyAssignExpression
          This class represents the multiply assign expression nodes of the syntax tree
 class MultiplyExpression
          This class represents the multiply expression nodes of the syntax tree
 class NotEqualExpression
          This class represents the not equal expression nodes of the syntax tree
 class OrExpression
          This class represents the or expression nodes of the syntax tree
 class RemainderAssignExpression
          This class represents the remainder assign expression nodes of the syntax tree
 class RemainderExpression
          This class represents the remainder expression nodes of the syntax tree
 class ShiftLeftAssignExpression
          This class represents the shift left assign expression nodes of the syntax tree
 class ShiftLeftExpression
          This class represents the shift left expression nodes of the syntax tree
 class ShiftRightAssignExpression
          This class represents the shift right assign expression nodes of the syntax tree
 class ShiftRightExpression
          This class represents the shift right expression nodes of the syntax tree
 class SimpleAssignExpression
          This class represents the assign expression nodes of the syntax tree
 class SubtractAssignExpression
          This class represents the subtract assign expression nodes of the syntax tree
 class SubtractExpression
          This class represents the subtract expression nodes of the syntax tree
 class UnsignedShiftRightAssignExpression
          This class represents the unsigned shift right assign expression nodes of the syntax tree
 class UnsignedShiftRightExpression
          This class represents the unsigned shift right expression nodes of the syntax tree
 



Copyright © 2001 Stephane Hillion. All Rights Reserved.