summaryrefslogtreecommitdiffstats
path: root/java/src/hdf/overview.html
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-12-12 19:10:46 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-12-12 19:10:46 (GMT)
commit690cb84f10da7d72fcf87b07d346a26e6fefd1d0 (patch)
tree444a5c330330601a3feed983e194ea3c5351901e /java/src/hdf/overview.html
parent95e96246a67593776da863c88837c6cb0b7d0058 (diff)
downloadhdf5-690cb84f10da7d72fcf87b07d346a26e6fefd1d0.zip
hdf5-690cb84f10da7d72fcf87b07d346a26e6fefd1d0.tar.gz
hdf5-690cb84f10da7d72fcf87b07d346a26e6fefd1d0.tar.bz2
Added java wrappers and tests
Diffstat (limited to 'java/src/hdf/overview.html')
-rw-r--r--java/src/hdf/overview.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/hdf/overview.html b/java/src/hdf/overview.html
index 39d75b7..9c19442 100644
--- a/java/src/hdf/overview.html
+++ b/java/src/hdf/overview.html
@@ -47,20 +47,20 @@ which has a method:
The native method is implemented in C using the
<a href="http://java.sun.com/javase/6/docs/technotes/guides/jni/index.html">Java
Native Method Interface </a>(JNI). This is written something like the following:
-<pre><b>JNIEXPORT jint
+<pre><b>JNIEXPORT jlong
JNICALL Java_hdf_hdf5lib_H5_H5Fopen
(
&nbsp;JNIEnv *env,
&nbsp;jclass class,
&nbsp;jstring hdfFile,
&nbsp;jint flags,
-&nbsp;jint access)
+&nbsp;jlong access)
&nbsp;{
&nbsp;/* ...convert Java String to (char *) */
&nbsp;/* call the HDF library */
-&nbsp;retVal = H5Fopen((char *)file, (unsigned)flags, (hid_t)access );
+&nbsp;retVal = H5Fopen((char *)file, (unsigned)flags, (hid_t)access);
&nbsp;/* ... */
}</b></pre>