]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Changed constructor signature to take XMLEvent instead of FoXMLEvent
authorPeter Bernard West <pbwest@apache.org>
Wed, 14 Jan 2004 15:07:46 +0000 (15:07 +0000)
committerPeter Bernard West <pbwest@apache.org>
Wed, 14 Jan 2004 15:07:46 +0000 (15:07 +0000)
Test for CHARACTERS event now performed using event.type rather than event.foType

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197168 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/FOAttributes.java

index 3e6c74ebe0c5547d0d587fec182c75c9de3afc63..fe181f68c0f251cd67084558bedfbe7adb0903e9 100644 (file)
@@ -68,7 +68,7 @@ import org.xml.sax.Attributes;
 import org.apache.fop.apps.FOPException;
 import org.apache.fop.datatypes.Ints;
 import org.apache.fop.fo.expr.PropertyException;
-import org.apache.fop.xml.FoXMLEvent;
+import org.apache.fop.xml.XMLEvent;
 import org.apache.fop.xml.XMLNamespaces;
 
 /**
@@ -135,7 +135,7 @@ public class FOAttributes {
      * @param foNode - the <tt>FONode</tt> with which these attributes are
      * associated.
      */
-    public FOAttributes(FoXMLEvent event, FONode foNode) throws FOPException {
+    public FOAttributes(XMLEvent event, FONode foNode) throws FOPException {
 
         // If the event is null, there is no event associated with this
         // node, probably because this is a manufactured node; e.g.,
@@ -143,7 +143,7 @@ public class FOAttributes {
         // includes an empty foAttrMap HashMap.
         if (event == null) return;
 
-        if (event.getFoType() == FObjectNames.PCDATA)
+        if (event.getType() == XMLEvent.CHARACTERS)
             return;  // go with the empty foAttrMap
 
         // Create the foAttrMap.