All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class hpjava.compiler.reflection.ClassReflector

java.lang.Object
    |
    +----hpjava.compiler.reflection.ClassReflector

public abstract class ClassReflector
extends Object

Constructor Index

 o ClassReflector()

Method Index

 o getComponentType()
 o getConstructor(String[])
 o getConstructors()
 o getDeclaredField(String)
 o getDeclaredFields()
 o getDeclaredMethod(String, String[])
 o getDeclaredMethods()
 o getInterfaceNames()
 o getModifier()
 o getName()
 o getSuperclassName()
 o isArray()
 o isDistArray()
 o isInterface()
 o isPrimitive()
 o show(PrintStream)
 o showConstructors(String, PrintStream)
 o showDeclaredFields(String, PrintStream)
 o showDeclaredMethods(String, PrintStream)

Constructors

 o ClassReflector
public ClassReflector()

Methods

 o getComponentType
public abstract ClassReflector getComponentType()
 o getConstructor
public abstract ConstructorReflector getConstructor(String[] paratypeName) throws NoSuchMethodException, SecurityException
 o getConstructors
public abstract ConstructorReflector[] getConstructors() throws SecurityException
 o getDeclaredField
public abstract FieldReflector getDeclaredField(String name) throws NoSuchFieldException, SecurityException
 o getDeclaredFields
public abstract FieldReflector[] getDeclaredFields() throws SecurityException
 o getDeclaredMethod
public abstract MethodReflector getDeclaredMethod(String name,
                                                  String[] paratypeName) throws NoSuchMethodException, SecurityException
 o getDeclaredMethods
public abstract MethodReflector[] getDeclaredMethods() throws SecurityException
 o getSuperclassName
public abstract String getSuperclassName()
 o getInterfaceNames
public abstract String[] getInterfaceNames()
 o getModifier
public abstract ModifierReflector getModifier()
 o getName
public abstract String getName()
 o isArray
public abstract boolean isArray()
 o isDistArray
public abstract boolean isDistArray()
 o isInterface
public abstract boolean isInterface()
 o isPrimitive
public abstract boolean isPrimitive()
 o showConstructors
protected abstract void showConstructors(String space,
                                         PrintStream out)
 o showDeclaredFields
protected abstract void showDeclaredFields(String space,
                                           PrintStream out)
 o showDeclaredMethods
protected abstract void showDeclaredMethods(String space,
                                            PrintStream out)
 o show
public void show(PrintStream out)

All Packages  Class Hierarchy  This Package  Previous  Next  Index