summaryrefslogtreecommitdiffstats
path: root/java/src/hdf/hdf5lib/callbacks/H5P_prp_close_func_cb.java
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-10-28 14:25:26 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-10-28 14:25:26 (GMT)
commit7416cd2598a06af5e1e65d46ee8f5a76b6ea6ede (patch)
tree1d717803148610abd4e82fa1e7019048751cc7c4 /java/src/hdf/hdf5lib/callbacks/H5P_prp_close_func_cb.java
parentc237cd6e3c2c2bbf91eac6b625bb6ca7842d1e2c (diff)
downloadhdf5-7416cd2598a06af5e1e65d46ee8f5a76b6ea6ede.zip
hdf5-7416cd2598a06af5e1e65d46ee8f5a76b6ea6ede.tar.gz
hdf5-7416cd2598a06af5e1e65d46ee8f5a76b6ea6ede.tar.bz2
HDFFV-10868 merge from develop
Diffstat (limited to 'java/src/hdf/hdf5lib/callbacks/H5P_prp_close_func_cb.java')
-rw-r--r--java/src/hdf/hdf5lib/callbacks/H5P_prp_close_func_cb.java22
1 files changed, 21 insertions, 1 deletions
diff --git a/java/src/hdf/hdf5lib/callbacks/H5P_prp_close_func_cb.java b/java/src/hdf/hdf5lib/callbacks/H5P_prp_close_func_cb.java
index 103fe5f..40569bc 100644
--- a/java/src/hdf/hdf5lib/callbacks/H5P_prp_close_func_cb.java
+++ b/java/src/hdf/hdf5lib/callbacks/H5P_prp_close_func_cb.java
@@ -13,7 +13,27 @@
package hdf.hdf5lib.callbacks;
-//Information class for link callback(for H5Pregister2)
+/**
+ * Information class for link callback for H5Pregister2.
+ *
+ */
public interface H5P_prp_close_func_cb extends Callbacks {
+ /**
+ * application callback for each property list
+ *
+ * @param name the name of the property being closed
+ * @param size the size of the property value
+ * @param value the value of the property being closed
+ *
+ * @return operation status
+ * A. Zero causes the iterator to continue, returning zero when all
+ * attributes have been processed.
+ * B. Positive causes the iterator to immediately return that positive
+ * value, indicating short-circuit success. The iterator can be
+ * restarted at the next attribute.
+ * C. Negative causes the iterator to immediately return that value,
+ * indicating failure. The iterator can be restarted at the next
+ * attribute.
+ */
int callback(String name, long size, byte[] value);
}