]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fixed getDocument() method (is now getDOMDocument()). The plan extension still worked...
authorJeremias Maerki <jeremias@apache.org>
Fri, 2 Sep 2005 07:49:30 +0000 (07:49 +0000)
committerJeremias Maerki <jeremias@apache.org>
Fri, 2 Sep 2005 07:49:30 +0000 (07:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@266300 13f79535-47bb-0310-9956-ffa450edef68

examples/plan/src/org/apache/fop/plan/PlanElement.java

index 7bec2861dc3a50cbf323e1bc276e9bd3699df162..92e30cf78cc7fe7acded253751494f7da7ee5380 100644 (file)
@@ -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.
@@ -50,8 +50,7 @@ public class PlanElement extends PlanObj {
      */
     public void processNode(String elementName, Locator locator, 
                             Attributes attlist, PropertyList propertyList)
-        throws FOPException
-    {
+        throws FOPException {
         super.processNode(elementName, locator, attlist, propertyList);
         createBasicDocument();
     }
@@ -80,9 +79,9 @@ public class PlanElement extends PlanObj {
     }
 
     /**
-     * @see org.apache.fop.fo.XMLObj#getDocument()
+     * @see org.apache.fop.fo.XMLObj#getDOMDocument()
      */
-    public Document getDocument() {
+    public Document getDOMDocument() {
         convertToSVG();
         return doc;
     }