| java.lang.Object org.jfree.xml.factory.objects.ArrayClassFactory
ArrayClassFactory | public class ArrayClassFactory implements ClassFactory(Code) | | An class that implements the
ClassFactory interface to
create Arrays of objects. The object descriptions are created on
demand.
author: Thomas Morgner. |
ArrayClassFactory | public ArrayClassFactory()(Code) | | Default constructor.
|
configure | public void configure(Configuration config)(Code) | | Configures this factory. The configuration contains several keys and
their defined values. The given reference to the configuration object
will remain valid until the report parsing or writing ends.
The configuration contents may change during the reporting.
Parameters: config - the configuration, never null |
equals | public boolean equals(Object o)(Code) | | ArrayClassFactories are always equal, there is nothing that could
not be equal :)
Parameters: o - the other object. true, if both object factories describe the same objects, false otherwise. |
getDescriptionForClass | public ObjectDescription getDescriptionForClass(Class c)(Code) | | Returns an object description for a class.
Parameters: c - the class. The object description. |
getRegisteredClasses | public Iterator getRegisteredClasses()(Code) | | Returns an iterator for the registered classes. This returns a list
of pre-registered classes known to this ClassFactory. A class may be able
to handle more than the registered classes.
This method exists to support query tools for UI design, do not rely on it
for day to day work.
The iterator. |
getSuperClassObjectDescription | public ObjectDescription getSuperClassObjectDescription(Class d, ObjectDescription knownSuperClass)(Code) | | Returns an object description for the super class of a class.
This method always returns null.
Parameters: d - the class. Parameters: knownSuperClass - the last known super class or null. The object description. |
hashCode | public int hashCode()(Code) | | Returns a hash code value for the object. This method is
supported for the benefit of hashtables such as those provided by
java.util.Hashtable .
the computed hashcode. |
|
|