summaryrefslogtreecommitdiffstats
path: root/java/src/jni/h5dImp.h
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-12 15:47:06 (GMT)
committerGitHub <noreply@github.com>2022-07-12 15:47:06 (GMT)
commitddb0c502ede9d46c43ef0cecee5cb1fc03c5f6b5 (patch)
tree16fe614a360f7a724dc2b5398eec74fd34547066 /java/src/jni/h5dImp.h
parentd0bbd4e8abf64810c7cda15018d8fcce2999f11d (diff)
downloadhdf5-ddb0c502ede9d46c43ef0cecee5cb1fc03c5f6b5.zip
hdf5-ddb0c502ede9d46c43ef0cecee5cb1fc03c5f6b5.tar.gz
hdf5-ddb0c502ede9d46c43ef0cecee5cb1fc03c5f6b5.tar.bz2
1 10 HDFFV-11310 implement JNI VL support for primitive types (#1858)
* HDFFV-11310 - implement vlen read/write for atomic types. * HDFFV-11310 - VL read/write function for primitive types * Add read/write VL option * fix function name typo * remove debugging prints * Remove more debugging code * Correct note to match change in code. * HDFFV-11318 add VL references as byte arrays * Fix unreleased allocations, fix debug * Fix format * Fix formatting * Correct typo
Diffstat (limited to 'java/src/jni/h5dImp.h')
-rw-r--r--java/src/jni/h5dImp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/jni/h5dImp.h b/java/src/jni/h5dImp.h
index e339dad..f79cc2c 100644
--- a/java/src/jni/h5dImp.h
+++ b/java/src/jni/h5dImp.h
@@ -177,7 +177,7 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5Dwrite_1double(JNIEnv *, jclass, jl
/*
* Class: hdf_hdf5lib_H5
* Method: H5DreadVL
- * Signature: (JJJJJ[Ljava/lang/String;)I
+ * Signature: (JJJJJ[Ljava/util/ArrayList;)I
*/
JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5DreadVL(JNIEnv *, jclass, jlong, jlong, jlong, jlong, jlong,
jobjectArray);
@@ -185,7 +185,7 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5DreadVL(JNIEnv *, jclass, jlong, jl
/*
* Class: hdf_hdf5lib_H5
* Method: H5DwriteVL
- * Signature: (JJJJJ[Ljava/lang/String;)I
+ * Signature: (JJJJJ[Ljava/util/ArrayList;)I
*/
JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5DwriteVL(JNIEnv *, jclass, jlong, jlong, jlong, jlong, jlong,
jobjectArray);