File tree 2 files changed +7
-6
lines changed
jansi/src/main/java/org/fusesource/jansi
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 26
26
* A ANSI output stream extracts ANSI escape codes written to
27
27
* an output stream and calls corresponding <code>process*</code> methods.
28
28
*
29
- * For more information about ANSI escape codes, see:
30
- * http://en.wikipedia.org/wiki/ANSI_escape_code
29
+ * <p> For more information about ANSI escape codes, see
30
+ * <a href=" http://en.wikipedia.org/wiki/ANSI_escape_code">Wikipedia article</a>
31
31
*
32
- * This class just filters out the escape codes so that they are not
32
+ * <p> This class just filters out the escape codes so that they are not
33
33
* sent out to the underlying OutputStream: <code>process*</code> methods
34
34
* are empty. Subclasses should actually perform the ANSI escape behaviors
35
35
* by implementing active code in <code>process*</code> methods.
@@ -429,15 +429,17 @@ protected void processSaveCursorPosition() throws IOException {
429
429
}
430
430
431
431
/**
432
- * Process <code>CSI s </code> ANSI code, corresponding to <code>IL – Insert Line</code>
432
+ * Process <code>CSI L </code> ANSI code, corresponding to <code>IL – Insert Line</code>
433
433
* @throws IOException
434
+ * @since 1.16
434
435
*/
435
436
protected void processInsertLine (int optionInt ) throws IOException {
436
437
}
437
438
438
439
/**
439
- * Process <code>CSI s </code> ANSI code, corresponding to <code>DL – Delete Line</code>
440
+ * Process <code>CSI M </code> ANSI code, corresponding to <code>DL – Delete Line</code>
440
441
* @throws IOException
442
+ * @since 1.16
441
443
*/
442
444
protected void processDeleteLine (int optionInt ) throws IOException {
443
445
}
Original file line number Diff line number Diff line change 38
38
import java .io .IOException ;
39
39
import java .io .OutputStream ;
40
40
41
- import org .fusesource .jansi .internal .Kernel32 ;
42
41
import org .fusesource .jansi .internal .WindowsSupport ;
43
42
import org .fusesource .jansi .internal .Kernel32 .CONSOLE_SCREEN_BUFFER_INFO ;
44
43
import org .fusesource .jansi .internal .Kernel32 .COORD ;
You can’t perform that action at this time.
0 commit comments