Gen JavaDoc for all but scala

This commit is contained in:
2025-03-26 23:43:18 -04:00
parent cf704ee182
commit 7cb7abd0e1
12 changed files with 110 additions and 25 deletions

View File

@@ -1,3 +1,7 @@
/**
* This module registers the Kotlin extension methods for the JDBC <code>Connection</code> object with the Groovy
* runtime
*/
module solutions.bitbadger.documents.groovy {
requires solutions.bitbadger.documents.core;
}

View File

@@ -0,0 +1,7 @@
package solutions.bitbadger.documents.groovy;
/**
* This library has no classes; it only updates Groovy's configuration
*/
public interface NoClassesHere {
}

View File

@@ -0,0 +1,11 @@
/**
* Groovy extensions on the JDBC <code>Connection</code> object exposing a document store API
* <p>
* This package wires up the <code>core</code> extensions to work in Groovy. No imports are needed, and the
* documentation for the <code>solutions.bitbadger.documents.java.extensions</code> package applies to those extensions
* as well.
* <p>
* For example, finding all documents in a table, using the document manipulation functions, looks something like
* <code>Find.all(tableName, conn)</code>; with the extensions, this becomes <code>conn.findAll(tableName)</code>.
*/
package solutions.bitbadger.documents.groovy;