aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/FONode.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/fo/FONode.java')
-rw-r--r--src/org/apache/fop/fo/FONode.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/org/apache/fop/fo/FONode.java b/src/org/apache/fop/fo/FONode.java
index af4791a40..0843f51e1 100644
--- a/src/org/apache/fop/fo/FONode.java
+++ b/src/org/apache/fop/fo/FONode.java
@@ -22,6 +22,8 @@ import org.apache.log.Logger;
import java.util.Vector;
import java.util.Hashtable;
+import org.xml.sax.Attributes;
+
/**
* base class for nodes in the formatting object tree
*
@@ -93,6 +95,9 @@ abstract public class FONode {
log = logger;
}
+ public void handleAttrs(Attributes attlist) throws FOPException {
+ }
+
public void setIsInTableCell() {
this.isInTableCell = true;
// made recursive by Eric Schaeffer