summaryrefslogtreecommitdiffstats
path: root/java/src/hdf/overview.html
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-08-09 23:09:42 (GMT)
committerGitHub <noreply@github.com>2022-08-09 23:09:42 (GMT)
commit2672e64bf4f630cc92bf923e8a544c8220e2db0a (patch)
tree5fc413d258c1f2fe91b823d7584e4f2b88837b9e /java/src/hdf/overview.html
parent40fc2cca16cd562954d3b724fa56badb3b9da72b (diff)
downloadhdf5-2672e64bf4f630cc92bf923e8a544c8220e2db0a.zip
hdf5-2672e64bf4f630cc92bf923e8a544c8220e2db0a.tar.gz
hdf5-2672e64bf4f630cc92bf923e8a544c8220e2db0a.tar.bz2
Update java code with doxygen tags, add menu files. (#1972)
* Update java code with doxygen tags, add menu files. * Add -Xdoclint:none to autotools javadoc command * Committing clang-format changes * Add fortran RM list descriptions * delete empty file * doc tag location changes * Spelling corrections Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'java/src/hdf/overview.html')
-rw-r--r--java/src/hdf/overview.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/hdf/overview.html b/java/src/hdf/overview.html
index e3a032b..4d40a0e 100644
--- a/java/src/hdf/overview.html
+++ b/java/src/hdf/overview.html
@@ -4,7 +4,7 @@
<h2><u>What it is</u></h2>
The <b>Java HD5 Interface (JHI5)</b> is a Java package
-(<a href="../../hdf-java-html/javadocs/hdf/hdf5lib/package-summary.html">hdf.hdf5lib</a>)
+(<a href="./hdf/hdf5lib/package-summary.html">hdf.hdf5lib</a>)
that ``wraps around'' the HDF5 library.
<p>There are a large number of functions in the HDF5
library (version 1.10). Some of the functions are not supported in JHI5. Most
@@ -32,7 +32,7 @@ library contains C functions which implement the native methods. The C
functions call the standard HDF5 library, which is linked as part of the
same library on most platforms.
<p>The central part of the JHI5 is the Java class <i>
-<a href="../../hdf-java-html/javadocs/hdf/hdf5lib/H5.html">hdf.hdf5lib.H5</a></i>.
+<a href="./hdf/hdf5lib/H5.html">hdf.hdf5lib.H5</a></i>.
The <i>H5 </i>class calls the standard (<i>i.e.</i>, `native' code) HDF5
library, with native methods for most of the HDF5 functions.
@@ -42,11 +42,11 @@ The JHI5 is used by Java classes to call the HDF5 library, in order to
create HDF5 files, and read and write data in existing HDF5 files.
<p>For example, the HDF5 library has the function <b>H5Fopen</b> to open
an HDF5 file. The Java interface is the class <i>
-<a href="../../hdf-java-html/javadocs/hdf/hdf5lib/H5.html">hdf.hdf5lib.H5</a></i>,
+<a href="./hdf/hdf5lib/H5.html">hdf.hdf5lib.H5</a></i>,
which has a method:
<pre><b>static native int H5Fopen(String filename, int flags, int access );</b></pre>
The native method is implemented in C using the
-<a href="http://java.sun.com/javase/6/docs/technotes/guides/jni/index.html">Java
+<a href="https://docs.oracle.com/en/java/javase/18/docs/specs/jni/index.html">Java
Native Method Interface </a>(JNI). This is written something like the following:
<pre><b>JNIEXPORT jlong
JNICALL Java_hdf_hdf5lib_H5_H5Fopen