aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/hssf/usermodel/HSSFDateUtil.java
diff options
context:
space:
mode:
authorNick Burch <nick@apache.org>2007-06-29 15:01:01 +0000
committerNick Burch <nick@apache.org>2007-06-29 15:01:01 +0000
commit62432eae1ed5ea8a61e569a31517ecafde0d2254 (patch)
tree473ebb5725d671252491c002427101a9502388cf /src/java/org/apache/poi/hssf/usermodel/HSSFDateUtil.java
parent711d4c8154a4f45305718a217a3c68959794cede (diff)
downloadpoi-62432eae1ed5ea8a61e569a31517ecafde0d2254.tar.gz
poi-62432eae1ed5ea8a61e569a31517ecafde0d2254.zip
Yet more javadoc fixes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@551914 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/hssf/usermodel/HSSFDateUtil.java')
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFDateUtil.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFDateUtil.java b/src/java/org/apache/poi/hssf/usermodel/HSSFDateUtil.java
index 00ca868fe3..9bda5dd5d1 100644
--- a/src/java/org/apache/poi/hssf/usermodel/HSSFDateUtil.java
+++ b/src/java/org/apache/poi/hssf/usermodel/HSSFDateUtil.java
@@ -160,6 +160,7 @@ public class HSSFDateUtil
*
* @param formatIndex The index of the format, eg from ExtendedFormatRecord.getFormatIndex
* @param formatString The format string
+ * @see #isInternalDateFormat(int,String)
*/
public static boolean isADateFormat(int formatIndex, String formatString) {
// First up, is this an internal date format?
@@ -187,7 +188,7 @@ public class HSSFDateUtil
/**
* Given a format ID this will check whether the format represents
* an internal excel date format or not.
- * @see isDateFormat(int,String)
+ * @see #isDateFormat(int,String)
*/
public static boolean isInternalDateFormat(int format) {
boolean retval =false;