Skip to content

Commit

Permalink
improved/fixed javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
hboutemy committed May 7, 2017
1 parent b5a840e commit f33497c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 7 additions & 5 deletions jansi/src/main/java/org/fusesource/jansi/AnsiOutputStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
* A ANSI output stream extracts ANSI escape codes written to
* an output 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 @@ -429,15 +429,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
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
import java.io.IOException;
import java.io.OutputStream;

import org.fusesource.jansi.internal.Kernel32;
import org.fusesource.jansi.internal.WindowsSupport;
import org.fusesource.jansi.internal.Kernel32.CONSOLE_SCREEN_BUFFER_INFO;
import org.fusesource.jansi.internal.Kernel32.COORD;
Expand Down

0 comments on commit f33497c

Please sign in to comment.