I committed this just so the mauve test compiles. It is not implemented
yet.

2005-12-09  Lillian Angel  <[EMAIL PROTECTED]>

        * javax/swing/text/html/HTMLDocument.java
        (getReader): Added function. Not implemented. It was
        added so a certain mauve test committed compiles with
        classpath fine.

Index: javax/swing/text/html/HTMLDocument.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/text/html/HTMLDocument.java,v
retrieving revision 1.6
diff -u -r1.6 HTMLDocument.java
--- javax/swing/text/html/HTMLDocument.java	19 Oct 2005 14:37:56 -0000	1.6
+++ javax/swing/text/html/HTMLDocument.java	9 Dec 2005 17:50:37 -0000
@@ -265,4 +265,16 @@
       return super.getName();
     }
   }
+  
+  /**
+   * Gets the reader for the parser to use when loading the document with HTML. 
+   * 
+   * @param pos - the starting position
+   * @return - the reader
+   */
+  public HTMLEditorKit.ParserCallback getReader(int pos)
+  {
+    // FIXME: Not implemented.
+    return null;
+  }
 }
_______________________________________________
Classpath-patches mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to