summaryrefslogtreecommitdiffstats
path: root/java/src/hdf/hdf5lib/structs/H5O_hdr_info_t.java
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-11-05 19:08:20 (GMT)
committerGitHub <noreply@github.com>2020-11-05 19:08:20 (GMT)
commitc768326d6837592040fde08d62b25c86ae0f4acf (patch)
treee76f681c8b735b6f16c9ed50b55b59b8581f85a1 /java/src/hdf/hdf5lib/structs/H5O_hdr_info_t.java
parentdd071ae9c63b72992aeb971cc146235caf1a3098 (diff)
parent2bdad92a26662256704deed7974ea81a0635a6b9 (diff)
downloadhdf5-c768326d6837592040fde08d62b25c86ae0f4acf.zip
hdf5-c768326d6837592040fde08d62b25c86ae0f4acf.tar.gz
hdf5-c768326d6837592040fde08d62b25c86ae0f4acf.tar.bz2
Merge pull request #74 from byrnHDF/hdf5_1_10
HDFFV-10868 1 10 java merge from develop
Diffstat (limited to 'java/src/hdf/hdf5lib/structs/H5O_hdr_info_t.java')
-rw-r--r--java/src/hdf/hdf5lib/structs/H5O_hdr_info_t.java25
1 files changed, 14 insertions, 11 deletions
diff --git a/java/src/hdf/hdf5lib/structs/H5O_hdr_info_t.java b/java/src/hdf/hdf5lib/structs/H5O_hdr_info_t.java
index 73aaa47..df76638 100644
--- a/java/src/hdf/hdf5lib/structs/H5O_hdr_info_t.java
+++ b/java/src/hdf/hdf5lib/structs/H5O_hdr_info_t.java
@@ -15,7 +15,10 @@ package hdf.hdf5lib.structs;
import java.io.Serializable;
-// Information struct for object header metadata (for H5Oget_info/H5Oget_info_by_name/H5Oget_info_by_idx)
+/**
+ * Information struct for object header metadata (for H5Oget_info/H5Oget_info_by_name/H5Oget_info_by_idx)
+ *
+ */
public class H5O_hdr_info_t implements Serializable {
private static final long serialVersionUID = 7883826382952577189L;
public int version; /* Version number of header format in file */
@@ -56,25 +59,25 @@ public class H5O_hdr_info_t implements Serializable {
H5O_hdr_info_t info = (H5O_hdr_info_t) o;
if (this.version != info.version)
- return false;
+ return false;
if (this.nmesgs != info.nmesgs)
- return false;
+ return false;
if (this.nchunks != info.nchunks)
- return false;
+ return false;
if (this.flags != info.flags)
- return false;
+ return false;
if (this.space_total != info.space_total)
- return false;
+ return false;
if (this.space_meta != info.space_meta)
- return false;
+ return false;
if (this.space_mesg != info.space_mesg)
- return false;
+ return false;
if (this.space_free != info.space_free)
- return false;
+ return false;
if (this.mesg_present != info.mesg_present)
- return false;
+ return false;
if (this.mesg_shared != info.mesg_shared)
- return false;
+ return false;
return true;
}