Gen JavaDoc for all but scala
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
package solutions.bitbadger.documents.groovy;
|
||||
|
||||
/**
|
||||
* This library has no classes; it only updates Groovy's configuration
|
||||
*/
|
||||
public interface NoClassesHere {
|
||||
}
|
||||
@@ -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;
|
||||
Reference in New Issue
Block a user