From 579ea70d54fbd5a82bc0afe59686c57dae37bc6c Mon Sep 17 00:00:00 2001 From: Glen Mazza Date: Sat, 22 May 2004 03:59:53 +0000 Subject: Switched from handleAttrs() to more intuitive processNode() and (for FO namespace) addProperties() methods. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197613 13f79535-47bb-0310-9956-ffa450edef68 --- examples/plan/src/org/apache/fop/plan/PlanElement.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'examples/plan/src/org') diff --git a/examples/plan/src/org/apache/fop/plan/PlanElement.java b/examples/plan/src/org/apache/fop/plan/PlanElement.java index 8a6956d6d..071647611 100644 --- a/examples/plan/src/org/apache/fop/plan/PlanElement.java +++ b/examples/plan/src/org/apache/fop/plan/PlanElement.java @@ -44,10 +44,11 @@ public class PlanElement extends PlanObj { } /** - * @see org.apache.fop.fo.FONode#handleAttrs(Attributes) + * @see org.apache.fop.fo.FONode#processNode */ - public void handleAttrs(Attributes attlist) throws FOPException { - super.handleAttrs(attlist); + public void processNode(String elementName, Locator locator, + Attributes attlist) throws FOPException { + super.processNode(elementName, locator, attlist); createBasicDocument(); } -- cgit v1.2.3