diff options
Diffstat (limited to 'projects/net.wotonomy.foundation/src/main/java/net/wotonomy/foundation/NSTimestampFormatter.java')
| -rw-r--r-- | projects/net.wotonomy.foundation/src/main/java/net/wotonomy/foundation/NSTimestampFormatter.java | 51 |
1 files changed, 22 insertions, 29 deletions
diff --git a/projects/net.wotonomy.foundation/src/main/java/net/wotonomy/foundation/NSTimestampFormatter.java b/projects/net.wotonomy.foundation/src/main/java/net/wotonomy/foundation/NSTimestampFormatter.java index ecc67ca..c8fbc44 100644 --- a/projects/net.wotonomy.foundation/src/main/java/net/wotonomy/foundation/NSTimestampFormatter.java +++ b/projects/net.wotonomy.foundation/src/main/java/net/wotonomy/foundation/NSTimestampFormatter.java @@ -25,41 +25,34 @@ import java.text.DateFormatSymbols; import java.text.SimpleDateFormat; /** -* A Format that accepts C-style date formatting syntax. -* Not currently implemented, included for compile compatibility. -* -* @author michael@mpowers.net -* @author $Author: cgruber $ -* @version $Revision: 893 $ -*/ + * A Format that accepts C-style date formatting syntax. Not currently + * implemented, included for compile compatibility. + * + * @author michael@mpowers.net + * @author $Author: cgruber $ + * @version $Revision: 893 $ + */ + +public class NSTimestampFormatter extends SimpleDateFormat { + public NSTimestampFormatter() { + super(); + } + + public NSTimestampFormatter(String aPattern) { + super(aPattern); + } -public class NSTimestampFormatter extends SimpleDateFormat -{ - public NSTimestampFormatter() - { - super(); - } - - public NSTimestampFormatter(String aPattern) - { - super( aPattern ); - } + public NSTimestampFormatter(String aPattern, DateFormatSymbols symbols) { + super(aPattern, symbols); + } - public NSTimestampFormatter(String aPattern, - DateFormatSymbols symbols) - { - super( aPattern, symbols ); - } - } /* - * $Log$ - * Revision 1.2 2006/02/16 13:15:00 cgruber - * Check in all sources in eclipse-friendly maven-enabled packages. + * $Log$ Revision 1.2 2006/02/16 13:15:00 cgruber Check in all sources in + * eclipse-friendly maven-enabled packages. * - * Revision 1.1 2003/01/17 14:40:51 mpowers - * Adding files to fix build. + * Revision 1.1 2003/01/17 14:40:51 mpowers Adding files to fix build. * * */ |
