jeremias 2003/07/04 12:59:40
Modified: src/java/org/apache/fop/fo PropertyListBuilder.java
Log:
Style only
Revision Changes Path
1.12 +4 -6 xml-fop/src/java/org/apache/fop/fo/PropertyListBuilder.java
Index: PropertyListBuilder.java
===================================================================
RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/PropertyListBuilder.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- PropertyListBuilder.java 1 May 2003 09:02:17 -0000 1.11
+++ PropertyListBuilder.java 4 Jul 2003 19:59:40 -0000 1.12
@@ -56,7 +56,7 @@
// FOP
import org.apache.fop.apps.FOPException;
-import org.apache.fop.fo.Property.*;
+import org.apache.fop.fo.Property.Maker;
public class PropertyListBuilder {
@@ -129,7 +129,7 @@
* properties.
* @return PropertyList object containing collection of Properties objects
* appropriate for the FObj
- * @throws FOPException
+ * @throws FOPException If an error occurs while building the PropertyList
*/
public PropertyList makeList(String nameSpaceURI, String elementName,
Attributes attributes,
@@ -203,8 +203,7 @@
Property prop = null;
if (subPropertyName == null) {
prop = propertyMaker.make(propList, attributeValue, parentFO);
- }
- else {
+ } else {
Property baseProperty = findBaseProperty(attributes, propList,
parentFO, basePropertyName, propertyMaker);
prop = propertyMaker.make(baseProperty, subPropertyName,
@@ -213,8 +212,7 @@
if (prop != null) {
propList.put(basePropertyName, prop);
}
- }
- catch (FOPException e) {
+ } catch (FOPException e) {
/[EMAIL PROTECTED] log this exception */
// log.error(e.getMessage());
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]