Skip to content

Commit

Permalink
improved/fixed javadoc
Browse files Browse the repository at this point in the history
reported #86 fix after #95 PrintStream copy of OutputStream
  • Loading branch information
hboutemy committed Dec 2, 2017
1 parent 4b24c09 commit 16d9210
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions jansi/src/main/java/org/fusesource/jansi/AnsiPrintStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
* A ANSI print stream extracts ANSI escape codes written to
* a print stream and calls corresponding <code>process*</code> methods.
*
* For more information about ANSI escape codes, see:
* http://en.wikipedia.org/wiki/ANSI_escape_code
* <p>For more information about ANSI escape codes, see
* <a href="http://en.wikipedia.org/wiki/ANSI_escape_code">Wikipedia article</a>
*
* This class just filters out the escape codes so that they are not
* <p>This class just filters out the escape codes so that they are not
* sent out to the underlying OutputStream: <code>process*</code> methods
* are empty. Subclasses should actually perform the ANSI escape behaviors
* by implementing active code in <code>process*</code> methods.
Expand Down Expand Up @@ -441,15 +441,17 @@ protected void processSaveCursorPosition() throws IOException {
}

/**
* Process <code>CSI s</code> ANSI code, corresponding to <code>IL – Insert Line</code>
* Process <code>CSI L</code> ANSI code, corresponding to <code>IL – Insert Line</code>
* @throws IOException
* @since 1.16
*/
protected void processInsertLine(int optionInt) throws IOException {
}

/**
* Process <code>CSI s</code> ANSI code, corresponding to <code>DL – Delete Line</code>
* Process <code>CSI M</code> ANSI code, corresponding to <code>DL – Delete Line</code>
* @throws IOException
* @since 1.16
*/
protected void processDeleteLine(int optionInt) throws IOException {
}
Expand Down

0 comments on commit 16d9210

Please sign in to comment.