|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Class | |
org.apache.xml.utils.synthetic | |
org.apache.xml.utils.synthetic.reflection |
Uses of Class in org.apache.xml.utils.synthetic |
Methods in org.apache.xml.utils.synthetic that return Class | |
static Class |
Class.forClass(java.lang.Class cls)
Returns the synthetic Class object associated with the "real" class specified, creating one if it didn't already exist. |
Class |
Class.forNameInContext(java.lang.String classname)
Like forName, but if the classname doesn't have a package prefix we first attempt to look it up as one of our own inner clases. |
static Class |
Class.forName(java.lang.String className)
Returns the synthetic Class object associated with the class with the given fully-qualified name. |
static Class |
Class.declareClass(java.lang.String className)
Start to create a synthetic Class with the given fully-qualified name. |
static Class |
Class.reallyDeclareClass(java.lang.String className)
Start to create a synthetic Class with the given fully-qualified name. |
Class[] |
Class.getClasses()
Returns an array containing Class objects representing all the public classes and interfaces that are members of the class represented by this Class object. |
Class |
Class.getComponentType()
If this class represents an array type, returns the Class object representing the component type of the array; otherwise returns null. |
Class[] |
Class.getDeclaredClasses()
This method is not implemented in VAJAVA 3.0 |
Class |
Class.declareInterface(Class newifce)
State that this class implements a specified interface. |
Class |
Class.getDeclaringClass()
This method is not implemented in VAJava 3.0 |
Class |
Class.declareInnerClass(java.lang.String className)
Declare a class contained within this class. |
Class[] |
Class.getInnerClasses()
Fetch a list of classes contained within this class. |
Class[] |
Class.getInterfaces()
Determines the interfaces implemented by the class or interface represented by this object. |
Class |
Class.getSuperclass()
If this object represents any class other than the class Object, then the object that represents the superclass of that class is returned. |
Methods in org.apache.xml.utils.synthetic with parameters of type Class | |
Constructor |
Class.getConstructor(Class[] parameterTypes)
Returns a Constructor object that reflects the specified public constructor of the class represented by this Class object. |
void |
Class.addExtends(Class newclass)
Adds an "extends" description for the class or interface represented by this Class object |
Constructor |
Class.getDeclaredConstructor(Class[] parameterTypes)
Returns a Constructor object that reflects the specified declared constructor of the class or interface represented by this Class object. |
Class |
Class.declareInterface(Class newifce)
State that this class implements a specified interface. |
Method |
Class.getDeclaredMethod(java.lang.String name,
Class[] parameterTypes)
Returns a Method object that reflects the specified declared method of the class or interface represented by this Class object. |
void |
Class.addImplements(Class newclass)
Adds an "implements" description for the class or interface represented by this Class object |
Method |
Class.getMethod(java.lang.String name,
Class[] parameterTypes)
Returns a Method object that reflects the specified public member method of the class or interface represented by this Class object. |
void |
Class.setSuperClass(Class superclass)
Set the superclass for this synthetic class. |
boolean |
Class.isAssignableFrom(Class cls)
Determines if the class or interface represented by this Class object is either the same as, or is a superclass or superinterface of, the class or interface represented by the specified Class parameter. |
static void |
TestDriver.dumpClass(Class C)
Method dumpClass |
Uses of Class in org.apache.xml.utils.synthetic.reflection |
Methods in org.apache.xml.utils.synthetic.reflection that return Class | |
Class |
Field.getDeclaringClass()
Returns the Class object representing the class or interface that declares the field represented by this Field object. |
Class |
Field.getType()
Returns a Class object that identifies the declared type for the field represented by this Field object. |
Class |
EntryPoint.getDeclaringClass()
Returns the Class object representing the class that declares the constructor represented by this Constructor object. |
Class |
EntryPoint.getReturnType()
Returns the Class object representing the class that will be returned by this EntryPoint. |
Class[] |
EntryPoint.getExceptionTypes()
Returns an array of Class objects that represent the types of the checked exceptions thrown by the underlying constructor represented by this Constructor object. |
Class[] |
EntryPoint.getParameterTypes()
Returns an array of Class objects that represent the formal parameter types, in declaration order, of the constructor represented by this Constructor object. |
Class |
Member.getDeclaringClass()
Returns the Class object representing the class or interface that declares the member or constructor represented by this Member. |
Methods in org.apache.xml.utils.synthetic.reflection with parameters of type Class | |
void |
Field.setType(Class type)
Method setType |
void |
Field.setDeclaringClass(Class declaringClass)
Returns the Class object representing the class that declares the constructor represented by this Constructor object. |
void |
EntryPoint.addExceptionType(Class exception)
Method addExceptionType |
void |
EntryPoint.addParameter(Class type,
java.lang.String name)
Method addParameter |
void |
EntryPoint.setDeclaringClass(Class declaringClass)
Assert the Class object representing the class that declares the constructor represented by this Constructor object. |
void |
Member.setDeclaringClass(Class declaringClass)
Returns the Class object representing the class or interface that declares the member or constructor represented by this Member. |
void |
Method.setReturnType(Class returntype)
Method setReturnType |
Constructors in org.apache.xml.utils.synthetic.reflection with parameters of type Class | |
Field.Field(java.lang.reflect.Field realfield,
Class declaringClass)
Proxy constructor |
|
Field.Field(java.lang.String name,
Class declaringClass)
Synthesis constructor |
|
EntryPoint.EntryPoint(Class declaringclass)
Insert the method's description here. |
|
Constructor.Constructor(Class declaringclass)
Insert the method's description here. |
|
Constructor.Constructor(java.lang.reflect.Constructor ctor,
Class declaringclass)
Insert the method's description here. |
|
Method.Method(java.lang.String name,
Class declaringclass)
Insert the method's description here. |
|
Method.Method(java.lang.reflect.Method ctor,
Class declaringclass)
Insert the method's description here. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |