From 83ee93e82437193958593a0fb8d12c8dfac8ee58 Mon Sep 17 00:00:00 2001 From: James Ahlborn Date: Wed, 10 Apr 2013 23:01:04 +0000 Subject: [PATCH] fix javadoc refs git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/branches/jackcess-2@704 f203690c-595d-4dc9-a70b-905162fa7fd2 --- .../com/healthmarketscience/jackcess/Database.java | 3 ++- .../jackcess/impl/DatabaseImpl.java | 13 +++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/java/com/healthmarketscience/jackcess/Database.java b/src/java/com/healthmarketscience/jackcess/Database.java index f32a7cd..6663db8 100644 --- a/src/java/com/healthmarketscience/jackcess/Database.java +++ b/src/java/com/healthmarketscience/jackcess/Database.java @@ -84,7 +84,8 @@ public interface Database extends Iterable, 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 = diff --git a/src/java/com/healthmarketscience/jackcess/impl/DatabaseImpl.java b/src/java/com/healthmarketscience/jackcess/impl/DatabaseImpl.java index 5f19e32..a6122f8 100644 --- a/src/java/com/healthmarketscience/jackcess/impl/DatabaseImpl.java +++ b/src/java/com/healthmarketscience/jackcess/impl/DatabaseImpl.java @@ -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() -- 2.39.5