From 2fe04c08178c8401c9275b0ea9874924cadaa8e5 Mon Sep 17 00:00:00 2001 From: Peter Bernard West Date: Fri, 27 Dec 2002 07:47:57 +0000 Subject: [PATCH] Absorbed into getInitialValue.xml git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195802 13f79535-47bb-0310-9956-ffa450edef68 --- .../properties/property-methods.xml | 68 ------------------- 1 file changed, 68 deletions(-) delete mode 100644 src/documentation/content/xdocs/design/alt.design/properties/property-methods.xml diff --git a/src/documentation/content/xdocs/design/alt.design/properties/property-methods.xml b/src/documentation/content/xdocs/design/alt.design/properties/property-methods.xml deleted file mode 100644 index 6c5f46805..000000000 --- a/src/documentation/content/xdocs/design/alt.design/properties/property-methods.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - -
- Property Methods Access - - - -
- -
- Introduction -

- The previous section - discussed the common data elements in the simplest examples of - <property>: classes. This section discusses more complex - classes whose facilities are accessed only through various - methods. -

-
-
- Generating & Accessing Initial Values - -

- org.apache.fop.fo.properties.AutoRestore is an example - of a the next most complex <property> class. In - addition to all of the common static fields, these classes - have initial data value types which require the dynamic - generation of a PropertyValue instance. -

- -

- The method PropertyValue getInitialValue(int) - returns an instance of PropertyValue of the appropriate - subclass containing the initial value for this - <property>. Like the static data fields, this value is, - in turn, stored in the array of initial values maintained in - the PropertyConsts singleton pconsts.` As with the fields, the first invocation of the - method setupProperty on the property - instantiates the singleton instance of the class, and stores - that instance in the in the Property[] - properties array of pconsts. -

- -

- Unlike the static data fields, however, the initial value is - not immediately generated. It is generated by a call to PropertyValue getInitialValue(int) in pconsts. A side-effect of this call is to store the initial - value in PropertyValue[] initialValues. -

- -
- -
-- 2.39.5