mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
bb6b92bd34
precise, it is a JNI-wrapper to Readline. It is distributed under the LGPL. You must call Readline.load(ReadlineLibrary lib); before using any other methods. If you omit the call to the load()-method, the pure Java fallback solution is used. Possible values for lib are: ReadlineLibrary.PureJava ReadlineLibrary.GnuReadline ReadlineLibrary.Editline ReadlineLibrary.Getline Note that all programs using GnuReadline will fall under the GPL, since Gnu-Readline is GPL software! WWW: http://sourceforge.net/projects/java-readline/ PR: ports/116817 Submitted by: Martin Kammerhofer <mkamm at gmx.net>
18 lines
598 B
Plaintext
18 lines
598 B
Plaintext
Java-Readline is a port of GNU Readline for Java. Or, to be more
|
|
precise, it is a JNI-wrapper to Readline. It is distributed under the
|
|
LGPL.
|
|
|
|
You must call Readline.load(ReadlineLibrary lib); before using any
|
|
other methods. If you omit the call to the load()-method, the pure
|
|
Java fallback solution is used. Possible values for lib are:
|
|
|
|
ReadlineLibrary.PureJava
|
|
ReadlineLibrary.GnuReadline
|
|
ReadlineLibrary.Editline
|
|
ReadlineLibrary.Getline
|
|
|
|
Note that all programs using GnuReadline will fall under the GPL,
|
|
since Gnu-Readline is GPL software!
|
|
|
|
WWW: http://sourceforge.net/projects/java-readline/
|