CVSROOT: /cvsroot/classpath Module name: classpath Changes by: Tom Tromey <tromey> 06/06/06 19:39:53
Modified files: . : ChangeLog javax/swing/text/html: HTMLDocument.java Log message: * javax/swing/text/html/HTMLDocument.java (SpecialAction.start): Implement. (SpecialAction.end): Removed. (IsindexAction.end): Likewise. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/classpath/ChangeLog?cvsroot=classpath&r1=1.7686&r2=1.7687 http://cvs.savannah.gnu.org/viewcvs/classpath/javax/swing/text/html/HTMLDocument.java?cvsroot=classpath&r1=1.30&r2=1.31 Patches: Index: ChangeLog =================================================================== RCS file: /cvsroot/classpath/classpath/ChangeLog,v retrieving revision 1.7686 retrieving revision 1.7687 diff -u -b -r1.7686 -r1.7687 --- ChangeLog 6 Jun 2006 19:11:16 -0000 1.7686 +++ ChangeLog 6 Jun 2006 19:39:52 -0000 1.7687 @@ -1,5 +1,12 @@ 2006-06-06 Tom Tromey <[EMAIL PROTECTED]> + * javax/swing/text/html/HTMLDocument.java (SpecialAction.start): + Implement. + (SpecialAction.end): Removed. + (IsindexAction.end): Likewise. + +2006-06-06 Tom Tromey <[EMAIL PROTECTED]> + * include/jni.h (JDK1_1InitArgs): New struct. (JDK1_1AttachArgs): Likewise. Index: javax/swing/text/html/HTMLDocument.java =================================================================== RCS file: /cvsroot/classpath/classpath/javax/swing/text/html/HTMLDocument.java,v retrieving revision 1.30 retrieving revision 1.31 diff -u -b -r1.30 -r1.31 --- javax/swing/text/html/HTMLDocument.java 17 May 2006 19:28:22 -0000 1.30 +++ javax/swing/text/html/HTMLDocument.java 6 Jun 2006 19:39:53 -0000 1.31 @@ -677,17 +677,6 @@ // FIXME: Implement. print ("IsindexAction.start not implemented"); } - - /** - * Called when an end tag is seen for one of the types of tags associated - * with this Action. - */ - public void end(HTML.Tag t) - throws NotImplementedException - { - // FIXME: Implement. - print ("IsindexAction.end not implemented"); - } } public class ParagraphAction extends BlockAction @@ -745,21 +734,8 @@ * of tags associated with this Action. */ public void start(HTML.Tag t, MutableAttributeSet a) - throws NotImplementedException { - // FIXME: Implement. - print ("SpecialAction.start not implemented"); - } - - /** - * Called when an end tag is seen for one of the types of tags associated - * with this Action. - */ - public void end(HTML.Tag t) - throws NotImplementedException - { - // FIXME: Implement. - print ("SpecialAction.end not implemented"); + addSpecialElement(t, a); } }