Formating.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1606463 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-06-29 11:52:24 +00:00
parent c8e024f8cd
commit 4fcfad957d
1 changed files with 3 additions and 0 deletions

View File

@ -422,6 +422,7 @@ public class FastDateParser implements DateParser, Serializable {
* A strategy to parse a single field from the parsing pattern
*/
private static abstract class Strategy {
/**
* Is this field a number?
* The default implementation returns false.
@ -431,6 +432,7 @@ public class FastDateParser implements DateParser, Serializable {
boolean isNumber() {
return false;
}
/**
* Set the Calendar with the parsed field.
*
@ -443,6 +445,7 @@ public class FastDateParser implements DateParser, Serializable {
void setCalendar(final FastDateParser parser, final Calendar cal, final String value) {
}
/**
* Generate a <code>Pattern</code> regular expression to the <code>StringBuilder</code>
* which will accept this field