You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/05/29 06:40:24 UTC

[commons-rng] 01/02: Add module javadoc

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git

commit 872ea52f9d200820ce8df2d9fd078db99480e15f
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sun May 29 07:38:59 2022 +0100

    Add module javadoc
---
 .../examples-jpms/jpms-app/src/main/java/module-info.java            | 5 +++++
 .../examples-jpms/jpms-lib/src/main/java/module-info.java            | 5 +++++
 2 files changed, 10 insertions(+)

diff --git a/commons-rng-examples/examples-jpms/jpms-app/src/main/java/module-info.java b/commons-rng-examples/examples-jpms/jpms-app/src/main/java/module-info.java
index 78215158..4798c2cd 100644
--- a/commons-rng-examples/examples-jpms/jpms-app/src/main/java/module-info.java
+++ b/commons-rng-examples/examples-jpms/jpms-app/src/main/java/module-info.java
@@ -14,6 +14,11 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
+/**
+ * This module contains an application for testing that the library
+ * can be used as a Java 9 Java Platform Module System (JPMS) module.
+ */
 module org.apache.commons.rng.examples.jpms.app {
     requires org.apache.commons.rng.examples.jpms.lib;
     requires org.apache.commons.rng.simple;
diff --git a/commons-rng-examples/examples-jpms/jpms-lib/src/main/java/module-info.java b/commons-rng-examples/examples-jpms/jpms-lib/src/main/java/module-info.java
index 5add2ca4..2c29033a 100644
--- a/commons-rng-examples/examples-jpms/jpms-lib/src/main/java/module-info.java
+++ b/commons-rng-examples/examples-jpms/jpms-lib/src/main/java/module-info.java
@@ -14,6 +14,11 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
+/**
+ * This module contains code for testing that the library
+ * can be used as a Java 9 Java Platform Module System (JPMS) module.
+ */
 module org.apache.commons.rng.examples.jpms.lib {
     requires org.apache.commons.rng.api;
     requires org.apache.commons.rng.sampling;