]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Second phase of performance improvement.
authorFinn Bock <bckfnn@apache.org>
Tue, 19 Oct 2004 13:43:22 +0000 (13:43 +0000)
committerFinn Bock <bckfnn@apache.org>
Tue, 19 Oct 2004 13:43:22 +0000 (13:43 +0000)
- Move from addProperties() to processNode().

PR: 31699

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198064 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/extensions/Outline.java

index ae0ef523e6168334caf927a7dc7598d25a5fd75e..6d3ed01aeb7a66397cb1295bcd892ed8205d790b 100644 (file)
 package org.apache.fop.fo.extensions;
 
 import org.apache.fop.fo.FONode;
+import org.apache.fop.fo.PropertyList;
 
 import java.util.ArrayList;
 
 import org.xml.sax.Attributes;
 import org.xml.sax.SAXParseException;
+import org.xml.sax.Locator;
 
 
 /**
@@ -50,9 +52,11 @@ public class Outline extends ExtensionObj {
      * The attributes on the outline object are the internal and external
      * destination. One of these is required.
      *
-     * @see org.apache.fop.fo.FObj#addProperties
+     * @see org.apache.fop.fo.FObj#processNode
      */
-    protected void addProperties(Attributes attlist) throws SAXParseException {
+    public void processNode(String elementName, Locator locator, 
+            Attributes attlist, PropertyList propertyList) throws SAXParseException 
+    {
         internalDestination =
             attlist.getValue("internal-destination");
         externalDestination =