diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-01-20 20:23:41 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-01-20 20:23:41 (GMT) |
commit | c3463d800d7eaf56b5da79d94af9b153f58a512d (patch) | |
tree | 08a044fb8775025a18e56fc730cc17ecd0b8ad64 /java/src | |
parent | 95242bbd5ce97f48e94bab11e8f736a60c0f509b (diff) | |
download | hdf5-c3463d800d7eaf56b5da79d94af9b153f58a512d.zip hdf5-c3463d800d7eaf56b5da79d94af9b153f58a512d.tar.gz hdf5-c3463d800d7eaf56b5da79d94af9b153f58a512d.tar.bz2 |
HDFFV-10118 fixed plugin tests for tools
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/hdf/hdf5lib/H5.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java index 6b2af4b..02d35ba 100644 --- a/java/src/hdf/hdf5lib/H5.java +++ b/java/src/hdf/hdf5lib/H5.java @@ -151,7 +151,7 @@ import hdf.hdf5lib.structs.H5O_info_t; * layout of the source and destination, and the data for the array passed as a block of bytes, for instance, * * <pre> - * herr_t H5Dread(int fid, int filetype, int memtype, int memspace, + * herr_t H5Dread(long fid, long filetype, long memtype, long memspace, * void * data); * </pre> * @@ -171,7 +171,7 @@ import hdf.hdf5lib.structs.H5O_info_t; * library. So the function above would be declared: * * <pre> - * public synchronized static native int H5Dread(int fid, int filetype, int memtype, int memspace, Object data); + * public synchronized static native int H5Dread(long fid, long filetype, long memtype, long memspace, Object data); * </pre> * OPEN_IDS.addElement(id); @@ -192,7 +192,7 @@ import hdf.hdf5lib.structs.H5O_info_t; * can be accessed as public variables of the Java class, such as: * * <pre> - * int data_type = HDF5CDataTypes.JH5T_NATIVE_INT; + * long data_type = HDF5CDataTypes.JH5T_NATIVE_INT; * </pre> * * The Java application uses both types of constants the same way, the only difference is that the |