diff options
Diffstat (limited to 'examples/plan/src')
-rw-r--r-- | examples/plan/src/org/apache/fop/plan/PlanElement.java | 6 | ||||
-rw-r--r-- | examples/plan/src/org/apache/fop/plan/PlanObj.java | 15 |
2 files changed, 11 insertions, 10 deletions
diff --git a/examples/plan/src/org/apache/fop/plan/PlanElement.java b/examples/plan/src/org/apache/fop/plan/PlanElement.java index 92e30cf78..a4dfac439 100644 --- a/examples/plan/src/org/apache/fop/plan/PlanElement.java +++ b/examples/plan/src/org/apache/fop/plan/PlanElement.java @@ -86,10 +86,8 @@ public class PlanElement extends PlanObj { return doc; } - /** - * @see org.apache.fop.fo.XMLObj#getDocumentNamespace() - */ - public String getDocumentNamespace() { + /** @see org.apache.fop.fo.FONode#getNamespaceURI() */ + public String getNamespaceURI() { if (svgDoc == null) { return PlanElementMapping.NAMESPACE; } diff --git a/examples/plan/src/org/apache/fop/plan/PlanObj.java b/examples/plan/src/org/apache/fop/plan/PlanObj.java index 075c639fb..08da53819 100644 --- a/examples/plan/src/org/apache/fop/plan/PlanObj.java +++ b/examples/plan/src/org/apache/fop/plan/PlanObj.java @@ -1,5 +1,5 @@ /* - * Copyright 1999-2004 The Apache Software Foundation. + * Copyright 1999-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -37,11 +37,14 @@ public class PlanObj extends XMLObj { super(parent); } - /** - * @see org.apache.fop.fo.XMLObj#getNameSpace() - */ - public String getNameSpace() { - return "http://xml.apache.org/fop/plan"; + /** @see org.apache.fop.fo.FONode#getNamespaceURI() */ + public String getNamespaceURI() { + return PlanElementMapping.NAMESPACE; + } + + /** @see org.apache.fop.fo.FONode#getNormalNamespacePrefix() */ + public String getNormalNamespacePrefix() { + return "plan"; } } |