summaryrefslogtreecommitdiff
path: root/java/text/SimpleDateFormat.java
diff options
context:
space:
mode:
authorDavid Gilbert <david.gilbert@object-refinery.com>2005-07-23 20:25:15 +0000
committerDavid Gilbert <david.gilbert@object-refinery.com>2005-07-23 20:25:15 +0000
commit3b578f0998e3f57327a24ca71e39bb042a8a0fc8 (patch)
tree4b48bc8e112ec056e79126e3472776ae66e293de /java/text/SimpleDateFormat.java
parent2c70f28c73f2eb5f44e401e9a806d1e62a1c49a0 (diff)
downloadclasspath-3b578f0998e3f57327a24ca71e39bb042a8a0fc8.tar.gz
2005-07-23 David Gilbert <david.gilbert@object-refinery.com>
* java/text/AttributedString.java: API doc fixes, * java/text/ChoiceFormat.java: likewise, * java/text/CollationElementIterator.java: likewise, * java/text/CollationKey.java: likewise, * java/text/Collator.java: likewise, * java/text/DateFormat.java: likewise, * java/text/DateFormatSymbols.java: likewise, * java/text/DecimalFormatSymbols.java: likewise, * java/text/MessageFormat.java: likewise, * java/text/NumberFormat.java: likewise, * java/text/ParseException.java: likewise, * java/text/SimpleDateFormat.java: likewise, * java/text/StringCharacterIterator.java: likewise.
Diffstat (limited to 'java/text/SimpleDateFormat.java')
-rw-r--r--java/text/SimpleDateFormat.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/java/text/SimpleDateFormat.java b/java/text/SimpleDateFormat.java
index 789cb83d8..f1fc092d3 100644
--- a/java/text/SimpleDateFormat.java
+++ b/java/text/SimpleDateFormat.java
@@ -180,8 +180,8 @@ public class SimpleDateFormat extends DateFormat
* years to be interpreted as representing
* the years between 2004 and 2104.
*
- * @see get2DigitYearStart()
- * @see set2DigitYearStart(java.util.Date)
+ * @see #get2DigitYearStart()
+ * @see #set2DigitYearStart(java.util.Date)
* @see Date
* @serial The start date of the century for parsing two digit years.
* May not be null.
@@ -192,8 +192,8 @@ public class SimpleDateFormat extends DateFormat
* The year at which interpretation of two
* digit years starts.
*
- * @see get2DigitYearStart()
- * @see set2DigitYearStart(java.util.Date)
+ * @see #get2DigitYearStart()
+ * @see #set2DigitYearStart(java.util.Date)
* @serial Ignored.
*/
private transient int defaultCentury;
@@ -204,10 +204,10 @@ public class SimpleDateFormat extends DateFormat
* stored in standardChars. Localized patterns
* are translated to this form.
*
- * @see applyPattern(String)
- * @see applyLocalizedPattern(String)
- * @see toPattern()
- * @see toLocalizedPattern()
+ * @see #applyPattern(String)
+ * @see #applyLocalizedPattern(String)
+ * @see #toPattern()
+ * @see #toLocalizedPattern()
* @serial The non-localized pattern string. May not be null.
*/
private String pattern;
@@ -611,7 +611,7 @@ public class SimpleDateFormat extends DateFormat
* <li>Is using the same century for two digit years.</li>
* </ul>
*
- * @param obj The object to compare for equality against.
+ * @param o The object to compare for equality against.
*
* @return <code>true</code> if the specified object is equal to this object,
* <code>false</code> otherwise.