File tree 1 file changed +7
-5
lines changed
jansi/src/main/java/org/fusesource/jansi
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 25
25
* A ANSI print stream extracts ANSI escape codes written to
26
26
* a print stream and calls corresponding <code>process*</code> methods.
27
27
*
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>
30
30
*
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
32
32
* sent out to the underlying OutputStream: <code>process*</code> methods
33
33
* are empty. Subclasses should actually perform the ANSI escape behaviors
34
34
* by implementing active code in <code>process*</code> methods.
@@ -441,15 +441,17 @@ protected void processSaveCursorPosition() throws IOException {
441
441
}
442
442
443
443
/**
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>
445
445
* @throws IOException
446
+ * @since 1.16
446
447
*/
447
448
protected void processInsertLine (int optionInt ) throws IOException {
448
449
}
449
450
450
451
/**
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>
452
453
* @throws IOException
454
+ * @since 1.16
453
455
*/
454
456
protected void processDeleteLine (int optionInt ) throws IOException {
455
457
}
You can’t perform that action at this time.
0 commit comments