Skip to content

Commit 16d9210

Browse files
committed
improved/fixed javadoc
reported #86 fix after #95 PrintStream copy of OutputStream
1 parent 4b24c09 commit 16d9210

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

jansi/src/main/java/org/fusesource/jansi/AnsiPrintStream.java

+7-5
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
* A ANSI print stream extracts ANSI escape codes written to
2626
* a print stream and calls corresponding <code>process*</code> methods.
2727
*
28-
* For more information about ANSI escape codes, see:
29-
* http://en.wikipedia.org/wiki/ANSI_escape_code
28+
* <p>For more information about ANSI escape codes, see
29+
* <a href="http://en.wikipedia.org/wiki/ANSI_escape_code">Wikipedia article</a>
3030
*
31-
* This class just filters out the escape codes so that they are not
31+
* <p>This class just filters out the escape codes so that they are not
3232
* sent out to the underlying OutputStream: <code>process*</code> methods
3333
* are empty. Subclasses should actually perform the ANSI escape behaviors
3434
* by implementing active code in <code>process*</code> methods.
@@ -441,15 +441,17 @@ protected void processSaveCursorPosition() throws IOException {
441441
}
442442

443443
/**
444-
* Process <code>CSI s</code> ANSI code, corresponding to <code>IL – Insert Line</code>
444+
* Process <code>CSI L</code> ANSI code, corresponding to <code>IL – Insert Line</code>
445445
* @throws IOException
446+
* @since 1.16
446447
*/
447448
protected void processInsertLine(int optionInt) throws IOException {
448449
}
449450

450451
/**
451-
* Process <code>CSI s</code> ANSI code, corresponding to <code>DL – Delete Line</code>
452+
* Process <code>CSI M</code> ANSI code, corresponding to <code>DL – Delete Line</code>
452453
* @throws IOException
454+
* @since 1.16
453455
*/
454456
protected void processDeleteLine(int optionInt) throws IOException {
455457
}

0 commit comments

Comments
 (0)