|
What this is
Other links
The source code
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software
* License version 1.1, a copy of which has been included with this
* distribution in the LICENSE.txt file. */
package org.apache.log4j.helpers;
import java.util.Date;
import java.util.Calendar;
import java.util.TimeZone;
import java.text.FieldPosition;
import java.text.ParsePosition;
import java.text.DateFormat;
/**
Formats a {@link Date} in the format "HH:mm:ss,SSS" for example,
"15:49:37,459".
@author Ceki Gülcü
@author Andrew Vajoczki
@since 0.7.5
*/
public class AbsoluteTimeDateFormat extends DateFormat {
/**
String constant used to specify {@link
org.apache.log4j.helpers.AbsoluteTimeDateFormat} in layouts. Current
value is ABSOLUTE. */
public final static String ABS_TIME_DATE_FORMAT = "ABSOLUTE";
/**
String constant used to specify {@link
org.apache.log4j.helpers.DateTimeDateFormat} in layouts. Current
value is DATE.
*/
public final static String DATE_AND_TIME_DATE_FORMAT = "DATE";
/**
String constant used to specify {@link
org.apache.log4j.helpers.ISO8601DateFormat} in layouts. Current
value is ISO8601.
*/
public final static String ISO8601_DATE_FORMAT = "ISO8601";
public
AbsoluteTimeDateFormat() {
setCalendar(Calendar.getInstance());
}
public
AbsoluteTimeDateFormat(TimeZone timeZone) {
setCalendar(Calendar.getInstance(timeZone));
}
private static long previousTime;
private static char[] previousTimeWithoutMillis = new char[9]; // "HH:mm:ss."
/**
Appends to
|
Copyright 1998-2008 Alvin Alexander
All Rights Reserved.
devdaily.com is based in louisville, kentucky, and this web site is hosted by godaddy.com