summaryrefslogtreecommitdiffstats
path: root/java/src/hdf
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2016-07-20 19:40:42 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2016-07-20 19:40:42 (GMT)
commit9b597a48552f5201b37793a4c6fece4fd9f1c346 (patch)
tree5844133fc279f1494a2804d454a8b8f9e2c7c26e /java/src/hdf
parent2387b1efbd526c23453749d161220bb717033e70 (diff)
downloadhdf5-9b597a48552f5201b37793a4c6fece4fd9f1c346.zip
hdf5-9b597a48552f5201b37793a4c6fece4fd9f1c346.tar.gz
hdf5-9b597a48552f5201b37793a4c6fece4fd9f1c346.tar.bz2
[svn-r30213] Add H5Aread_complex for reading arrays and compounds that are not VL strings.
Diffstat (limited to 'java/src/hdf')
-rw-r--r--java/src/hdf/hdf5lib/H5.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java
index e555a4f..e4144c9 100644
--- a/java/src/hdf/hdf5lib/H5.java
+++ b/java/src/hdf/hdf5lib/H5.java
@@ -1061,6 +1061,9 @@ public class H5 implements java.io.Serializable {
public synchronized static native int H5AreadVL(long attr_id, long mem_type_id, String[] buf)
throws HDF5LibraryException, NullPointerException;
+ public synchronized static native int H5AreadComplex(long attr_id, long mem_type_id, String[] buf)
+ throws HDF5LibraryException, NullPointerException;
+
/**
* H5Arename changes the name of attribute that is attached to the object specified by loc_id. The attribute named
* old_attr_name is renamed new_attr_name.