* gcj.texi (Strings): Fix documentation for JvNewString.

From-SVN: r121356
This commit is contained in:
Tom Tromey 2007-01-30 19:58:19 +00:00 committed by Tom Tromey
parent 13a89f0af5
commit e4cf973dd9
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2007-01-30 Tom Tromey <tromey@redhat.com>
* gcj.texi (Strings): Fix documentation for JvNewString.
2007-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* gcj.texi (Invoking gcjh, Invoking gjnih, Arrays): Fix some

View File

@ -2083,9 +2083,9 @@ working with Java Java @code{String} objects.
The names and interfaces are analogous to those of @acronym{JNI}.
@deftypefun jstring JvNewString (const char* @var{chars}, jsize @var{len})
Returns a Java @code{String} object with characters from the C string
@var{chars} up to the index @var{len} in that array.
@deftypefun jstring JvNewString (const jchar* @var{chars}, jsize @var{len})
Returns a Java @code{String} object with characters from the array of
Unicode characters @var{chars} up to the index @var{len} in that array.
@end deftypefun
@deftypefun jstring JvNewStringLatin1 (const char* @var{bytes}, jsize @var{len})