|
|||||||||||
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(Class cls)
Returns the synthetic Class object associated with the "real" class specified, creating one if it didn't already exist. |
Class |
Class.forNameInContext(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(String className)
Returns the synthetic Class object associated with the class with the given fully-qualified name. |
static Class |
Class.declareClass(String className)
Start to create a synthetic Class with the given fully-qualified name. |
static Class |
Class.reallyDeclareClass(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 Returns an array of Class objects reflecting all the classes and interfaces declared as members of the class represented by this Class object. |
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 If the class or interface represented by this Class object is a member of another class, returns the Class object representing the class of which it is a member (its declaring class). |
Class |
Class.declareInnerClass(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 | |
static void |
TestDriver.dumpClass(Class C)
Method dumpClass |
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(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(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. |
Uses of Class in org.apache.xml.utils.synthetic.reflection |
Methods in org.apache.xml.utils.synthetic.reflection that return Class | |
Class |
Member.getDeclaringClass()
Returns the Class object representing the class or interface that declares the member or constructor represented by this Member. |
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. |
Methods in org.apache.xml.utils.synthetic.reflection with parameters of type Class | |
void |
Method.setReturnType(Class returntype)
Method setReturnType |
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 |
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,
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. |
Constructors in org.apache.xml.utils.synthetic.reflection with parameters of type Class | |
Method(String name,
Class declaringclass)
Insert the method's description here. |
|
Method(Method ctor,
Class declaringclass)
Insert the method's description here. |
|
Field(Field realfield,
Class declaringClass)
Proxy constructor |
|
Field(String name,
Class declaringClass)
Synthesis constructor |
|
EntryPoint(Class declaringclass)
Insert the method's description here. |
|
Constructor(Class declaringclass)
Insert the method's description here. |
|
Constructor(Constructor ctor,
Class declaringclass)
Insert the method's description here. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |