Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

openjava.ptree
Class ClassLiteral  view ClassLiteral download ClassLiteral.java

java.lang.Object
  extended byopenjava.ptree.ParseTreeObject
      extended byopenjava.ptree.NonLeaf
          extended byopenjava.ptree.ClassLiteral
All Implemented Interfaces:
java.lang.Cloneable, Expression, ParseTree, VariableInitializer

public class ClassLiteral
extends NonLeaf
implements Expression

The ClassLiteral class represents an expression as a object of Class class, which is suppoted since JDK 1.1. This is like :

     String.class
 

or :
     int.class
 


Field Summary
 
Fields inherited from class openjava.ptree.NonLeaf
 
Fields inherited from class openjava.ptree.ParseTreeObject
LN
 
Constructor Summary
ClassLiteral(openjava.mop.OJClass type)
           
ClassLiteral(TypeName type)
          Allocates a new object.
 
Method Summary
 void accept(openjava.ptree.util.ParseTreeVisitor v)
          Accepts a ParseTreeVisitor object as the role of a Visitor in the Visitor pattern, as the role of an Element in the Visitor pattern.
 openjava.mop.OJClass getType(openjava.mop.Environment env)
           
 TypeName getTypeName()
          Gets the type name of this class literal.
 void setTypeName(TypeName type)
          Sets the type name of this class literal.
 
Methods inherited from class openjava.ptree.NonLeaf
childrenAccept, elementAt, equals, getComment, getContents, getLength, makeRecursiveCopy, replaceChildWith, set, set, set, set, set, set, set, set, set, setComment, setElementAt
 
Methods inherited from class openjava.ptree.ParseTreeObject
clone, equal, getObjectID, getParent, hashCode, lastObjectID, makeCopy, replace, setParent, toFlattenString, toString
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface openjava.ptree.ParseTree
childrenAccept, equals, getObjectID, makeCopy, makeRecursiveCopy, replace, toFlattenString, toString
 

Constructor Detail

ClassLiteral

public ClassLiteral(TypeName type)
Allocates a new object.


ClassLiteral

public ClassLiteral(openjava.mop.OJClass type)
Method Detail

getTypeName

public TypeName getTypeName()
Gets the type name of this class literal.


setTypeName

public void setTypeName(TypeName type)
Sets the type name of this class literal.


getType

public openjava.mop.OJClass getType(openjava.mop.Environment env)
                             throws java.lang.Exception
Specified by:
getType in interface Expression

accept

public void accept(openjava.ptree.util.ParseTreeVisitor v)
            throws ParseTreeException
Description copied from interface: ParseTree
Accepts a ParseTreeVisitor object as the role of a Visitor in the Visitor pattern, as the role of an Element in the Visitor pattern.

This invoke an appropriate visit() method on the accepted visitor.

Specified by:
accept in interface ParseTree
Specified by:
accept in class ParseTreeObject