All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class openjava.ptree.Modifier

java.lang.Object
   |
   +----openjava.ptree.PtreeObject
           |
           +----openjava.ptree.Leaf
                   |
                   +----openjava.ptree.Modifier

public class Modifier
extends Leaf
The Modifier class represents a modifier node of parse tree.

See Also:
Ptree, Leaf

Variable Index

 o ABSTRACT
 o FINAL
 o NATIVE
 o PRIVATE
 o PROTECTED
 o PUBLIC
 o STATIC
 o SYNCHRONIZED
 o TRANSIENT
 o USERMODIFIER
 o VOLATILE

Constructor Index

 o Modifier(int)
 o Modifier(String)

Method Index

 o getKind()
 o writeCode()
Writes the code of this token.

Variables

 o ABSTRACT
 public static final int ABSTRACT
 o FINAL
 public static final int FINAL
 o PUBLIC
 public static final int PUBLIC
 o PROTECTED
 public static final int PROTECTED
 o PRIVATE
 public static final int PRIVATE
 o STATIC
 public static final int STATIC
 o TRANSIENT
 public static final int TRANSIENT
 o VOLATILE
 public static final int VOLATILE
 o NATIVE
 public static final int NATIVE
 o SYNCHRONIZED
 public static final int SYNCHRONIZED
 o USERMODIFIER
 public static final int USERMODIFIER

Constructors

 o Modifier
 public Modifier(int id)
 o Modifier
 public Modifier(String str)

Methods

 o getKind
 public int getKind()
 o writeCode
 public void writeCode()
Writes the code of this token.

Overrides:
writeCode in class Leaf

All Packages  Class Hierarchy  This Package  Previous  Next  Index