2006-07-13 Audrius Meskauskas <[EMAIL PROTECTED]>
* javax/swing/text/html/HTMLDocument.java (insertAfterEnd,
insertAfterStart, insertBeforeEnd): Removed stub markings.
Index: HTMLDocument.java
===================================================================
RCS file: /sources/classpath/classpath/javax/swing/text/html/HTMLDocument.java,v
retrieving revision 1.36
diff -u -r1.36 HTMLDocument.java
--- HTMLDocument.java 13 Jul 2006 12:48:58 -0000 1.36
+++ HTMLDocument.java 13 Jul 2006 13:54:38 -0000
@@ -1275,7 +1275,6 @@
* @since 1.3
*/
public void handleEndOfLineString(String eol)
- throws NotImplementedException
{
// FIXME: Implement.
print ("HTMLReader.handleEndOfLineString not implemented yet");
@@ -1721,7 +1720,7 @@
* @throws IllegalStateException - if parser is not set
*/
public void insertBeforeEnd(Element elem, String htmlText)
- throws BadLocationException, IOException, NotImplementedException
+ throws BadLocationException, IOException
{
HTMLEditorKit.ParserCallback reader = getInsertingReader(
elem.getEndOffset(), 0, 0, HTML.Tag.BODY, elem);
@@ -1742,7 +1741,7 @@
* @throws IllegalStateException - if parser is not set
*/
public void insertAfterEnd(Element elem, String htmlText)
- throws BadLocationException, IOException, NotImplementedException
+ throws BadLocationException, IOException
{
HTMLEditorKit.ParserCallback reader = getInsertingReader(
elem.getEndOffset(), 0, 0, HTML.Tag.BODY, elem);
@@ -1762,7 +1761,7 @@
* @throws IllegalStateException - if parser is not set
*/
public void insertAfterStart(Element elem, String htmlText)
- throws BadLocationException, IOException, NotImplementedException
+ throws BadLocationException, IOException
{
HTMLEditorKit.ParserCallback reader = getInsertingReader(
elem.getStartOffset(), 0, 0, HTML.Tag.BODY, elem);