Skip to content

Commit 2a505ba

Browse files
committed
improved javadoc to link to Jansi native
1 parent 1e0f706 commit 2a505ba

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,14 @@
2626
import java.util.Locale;
2727

2828
/**
29-
* Provides consistent access to an ANSI aware console PrintStream.
29+
* Provides consistent access to an ANSI aware console PrintStream or an ANSI codes stripping PrintStream
30+
* if not on a terminal (see
31+
* <a href="http://fusesource.github.io/jansi/documentation/native-api/index.html?org/fusesource/jansi/internal/CLibrary.html">Jansi native isatty(int)</a>).
3032
*
3133
* @author <a href="http://hiramchirino.com">Hiram Chirino</a>
3234
* @since 1.0
33-
* @see #wrapPrintStream(PrintStream, int) wrapPrintStream(PrintStream, int) for more details on ANSI mode selection
3435
* @see #systemInstall()
36+
* @see #wrapPrintStream(PrintStream, int) wrapPrintStream(PrintStream, int) for more details on ANSI mode selection
3537
*/
3638
public class AnsiConsole {
3739

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@
4444

4545
/**
4646
* A Windows ANSI escape processor, that uses JNA to access native platform
47-
* API's to change the console attributes.
47+
* API's to change the console attributes (see
48+
* <a href="http://fusesource.github.io/jansi/documentation/native-api/index.html?org/fusesource/jansi/internal/Kernel32.html">Jansi native Kernel32</a>).
4849
*
4950
* @since 1.7
5051
* @author <a href="http://hiramchirino.com">Hiram Chirino</a>

0 commit comments

Comments
 (0)