PropertyConsts Description
by Peter B. West
Introduction
This class, and the singleton object which is generated by the static initializer, is essentially a repository of <property> class instances and the static data from those classes of org.apache.fop.fo.property. The heart of this class is the method setupProperty. Whenever access to the data or methods of a property class is required, this method in the singleton must be called to ensure that an instance of the property exists and that the static data from that instance has been extracted.
The class name is generated and stored in the classNames array; a class instance is generated from the name and stored in the classes array; and an instance of the class is generated from the class object and stored in the properties array.
The other data gathering facilities and access methods of this class will be examined in conjunction with the various types of property classes.
Previous: Property classes overview
Next: Simple property classes