classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: API doc fixes for HTMLEditorKit


From: David Gilbert
Subject: [cp-patches] FYI: API doc fixes for HTMLEditorKit
Date: Fri, 22 Jul 2005 09:19:48 +0000
User-agent: Mozilla Thunderbird 1.0.2 (X11/20050426)

I committed this patch:

2005-07-22  David Gilbert  <address@hidden>

        * javax/swing/text/html/HTMLEditorKit.java: API doc fixes.

Regards,

Dave Gilbert

Index: javax/swing/text/html/HTMLEditorKit.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/javax/swing/text/html/HTMLEditorKit.java,v
retrieving revision 1.3
diff -u -r1.3 HTMLEditorKit.java
--- javax/swing/text/html/HTMLEditorKit.java    2 Jul 2005 20:32:51 -0000       
1.3
+++ javax/swing/text/html/HTMLEditorKit.java    22 Jul 2005 08:15:22 -0000
@@ -38,6 +38,7 @@
 
 package javax.swing.text.html;
 
+import java.io.IOException;
 import java.io.Reader;
 import java.io.Serializable;
 
@@ -75,7 +76,7 @@
     public abstract void parse(Reader reader, ParserCallback callback,
                                boolean ignoreCharSet
                               )
-                        throws java.io.IOException;
+                        throws IOException;
   }
 
   /**
@@ -123,8 +124,8 @@
      * The method is called when the HTML closing tag ((like &lt;/table&gt;)
      * is found or if the parser concludes that the one should be present
      * in the current position.
-     * @param The tag being handled
-     * @position the tag position in the text being parsed.
+     * @param tag The tag being handled
+     * @param position the tag position in the text being parsed.
      */
     public void handleEndTag(HTML.Tag tag, int position)
     {

reply via email to

[Prev in Thread] Current Thread [Next in Thread]