]> source.dussan.org Git - jackcess.git/commitdiff
fix javadoc refs
authorJames Ahlborn <jtahlborn@yahoo.com>
Wed, 10 Apr 2013 23:01:04 +0000 (23:01 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Wed, 10 Apr 2013 23:01:04 +0000 (23:01 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/branches/jackcess-2@704 f203690c-595d-4dc9-a70b-905162fa7fd2

src/java/com/healthmarketscience/jackcess/Database.java
src/java/com/healthmarketscience/jackcess/impl/DatabaseImpl.java

index f32a7cd79ddacb5de4b6cb2ea6a66eb31d49a982..6663db8dfd07b0ba21fd28c5e961d71b44f0c385 100644 (file)
@@ -84,7 +84,8 @@ public interface Database extends Iterable<Table>, Closeable, Flushable
 
   /** system property which can be used to set the path from which classpath
    *  resources are loaded (must end with a "/" if non-empty).  Default value
-   *  is {@value DatabaseImpl#DEFAULT_RESOURCE_PATH} if unspecified.
+   *  is {@value com.healthmarketscience.jackcess.impl.DatabaseImpl#DEFAULT_RESOURCE_PATH}
+   *  if unspecified.
    * @usage _general_field_
    */
   public static final String RESOURCE_PATH_PROPERTY = 
index 5f19e326327372ee99bb4cb8c1f09d6441de8156..a6122f8f10743d9d71e4c6c4147d7e706cd654e1 100644 (file)
@@ -1544,7 +1544,8 @@ public class DatabaseImpl implements Database
   /**
    * Returns the default TimeZone.  This is normally the platform default
    * TimeZone as returned by {@link TimeZone#getDefault}, but can be
-   * overridden using the system property {@value Database#TIMEZONE_PROPERTY}.
+   * overridden using the system property
+   * {@value com.healthmarketscience.jackcess.Database#TIMEZONE_PROPERTY}.
    * @usage _advanced_method_
    */
   public static TimeZone getDefaultTimeZone()
@@ -1565,9 +1566,9 @@ public class DatabaseImpl implements Database
    * Returns the default Charset for the given JetFormat.  This may or may not
    * be platform specific, depending on the format, but can be overridden
    * using a system property composed of the prefix
-   * {@value Database#CHARSET_PROPERTY_PREFIX} followed by the JetFormat version to
-   * which the charset should apply, e.g. {@code
-   * "com.healthmarketscience.jackcess.charset.VERSION_3"}.
+   * {@value com.healthmarketscience.jackcess.Database#CHARSET_PROPERTY_PREFIX}
+   * followed by the JetFormat version to which the charset should apply,
+   * e.g. {@code "com.healthmarketscience.jackcess.charset.VERSION_3"}.
    * @usage _advanced_method_
    */
   public static Charset getDefaultCharset(JetFormat format)
@@ -1587,7 +1588,7 @@ public class DatabaseImpl implements Database
   /**
    * Returns the default Table.ColumnOrder.  This defaults to
    * {@link Database#DEFAULT_COLUMN_ORDER}, but can be overridden using the system
-   * property {@value #COLUMN_ORDER_PROPERTY}.
+   * property {@value com.healthmarketscience.jackcess.Database#COLUMN_ORDER_PROPERTY}.
    * @usage _advanced_method_
    */
   public static Table.ColumnOrder getDefaultColumnOrder()
@@ -1607,7 +1608,7 @@ public class DatabaseImpl implements Database
   /**
    * Returns the default enforce foreign-keys policy.  This defaults to
    * {@code true}, but can be overridden using the system
-   * property {@value Database#FK_ENFORCE_PROPERTY}.
+   * property {@value com.healthmarketscience.jackcess.Database#FK_ENFORCE_PROPERTY}.
    * @usage _advanced_method_
    */
   public static boolean getDefaultEnforceForeignKeys()