Browse Source

more javadoc fixes

git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/branches/jdk8@1245 f203690c-595d-4dc9-a70b-905162fa7fd2
tags/jackcess-3.0.0
James Ahlborn 5 years ago
parent
commit
a92bc3439f

+ 1
- 1
src/changes/changes.xml View File

@@ -16,7 +16,7 @@
changed to output LocalDateTime instead of Date. This behavior is
configurable on a per-Database basis by setting the DateTimeType for
the database. All Date based APIs now have a parallel LocalDateTime
API. Note that <i>only one of those will work</i> depending on how
API. Note that only one of those will work depending on how
the Database is configured. The legacy Date support will be the
default initially, but is deprecated and may be removed in the future.
</action>

+ 6
- 6
src/main/java/com/healthmarketscience/jackcess/expr/package-info.java View File

@@ -50,14 +50,14 @@ limitations under the License.
* record validation rules will be run for the entire record before
* update. Failures are handled in a similar manner.</li>
* </ul>
* <p>
*
* <h2>Supporting Classes</h2>
* <p>
* The classes in this package make up the public api for expression handling
* in Jackcess. They generally fall into two categories:
* <p>
*
* <h3>General Use Classes</h3>
* <p>
*
* <ul>
* <li>{@link com.healthmarketscience.jackcess.expr.EvalConfig} allows for customization of the expression
* evaluation context for a given {@link com.healthmarketscience.jackcess.Database} instance.</li>
@@ -72,9 +72,9 @@ limitations under the License.
* <li>{@link com.healthmarketscience.jackcess.expr.ParseException} wrapper exception thrown for failures which
* occur during expression parsing.</li>
* </ul>
* <p>
*
* <h3>Advanced Use Classes</h3>
* <p>
*
* <ul>
* <li>{@link com.healthmarketscience.jackcess.expr.EvalContext} encapsulates all shared state for expression
* parsing and evaluation.</li>
@@ -86,7 +86,7 @@ limitations under the License.
* database field).</li>
* <li>{@link com.healthmarketscience.jackcess.expr.Value} represents a typed primitive value.</li>
* </ul>
* <p>
*
* <h2>Function Support</h2>
* <p>
* Jackcess supports many of the standard Access functions. The following

Loading…
Cancel
Save