|
Apache log4cxx
Version 0.10.0
|
DateFormat is an abstract class for date/time formatting patterned after java.text.DateFormat. More...
Public Member Functions | |
| virtual | ~DateFormat () |
| Destructor. More... | |
| virtual void | format (LogString &s, log4cxx_time_t tm, log4cxx::helpers::Pool &p) const =0 |
| Formats an log4cxx_time_t into a date/time string. More... | |
| virtual void | setTimeZone (const TimeZonePtr &zone) |
| Sets the time zone. More... | |
| virtual void | numberFormat (LogString &s, int n, log4cxx::helpers::Pool &p) const |
| Format an integer consistent with the format method. More... | |
Public Member Functions inherited from ObjectImpl | |
| ObjectImpl () | |
| virtual | ~ObjectImpl () |
| void | addRef () const |
| void | releaseRef () const |
Public Member Functions inherited from Object | |
| virtual const helpers::Class & | getClass () const |
| virtual | ~Object () |
| virtual bool | instanceof (const Class &clazz) const =0 |
| virtual const void * | cast (const Class &clazz) const =0 |
Protected Member Functions | |
| DateFormat () | |
| Constructor. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from Object | |
| static const helpers::Class & | getStaticClass () |
| static const log4cxx::helpers::ClassRegistration & | registerClass () |
Protected Attributes inherited from ObjectImpl | |
| unsigned int volatile | ref |
DateFormat is an abstract class for date/time formatting patterned after java.text.DateFormat.
|
virtual |
Destructor.
|
protected |
Constructor.
|
pure virtual |
Formats an log4cxx_time_t into a date/time string.
| s | string to which the date/time string is appended. |
| tm | date to be formatted. |
| p | memory pool used during formatting. |
Implemented in CachedDateFormat, SimpleDateFormat, StrftimeDateFormat, and RelativeTimeDateFormat.
|
virtual |
Format an integer consistent with the format method.
| s | string to which the numeric string is appended. |
| n | integer value. |
| p | memory pool used during formatting. |
Reimplemented in CachedDateFormat.
|
virtual |
Sets the time zone.
| zone | the given new time zone. |
Reimplemented in SimpleDateFormat, and StrftimeDateFormat.