This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.util.logging
class Formatter

java.lang.Object extended by java.util.logging.Formatter
Direct Known Subclasses:
SimpleFormatter, XMLFormatter

public abstract class Formatter
extends Object

A Formatter provides support for formatting LogRecords.

Typically each logging Handler will have a Formatter associated with it. The Formatter takes a LogRecord and converts it to a string.

Some formatters (such as the XMLFormatter) need to wrap head and tail strings around a set of formatted records. The getHeader and getTail methods can be used to obtain these strings.


Constructor Summary
protected

          Construct a new formatter.
 
Method Summary
abstract String
format(LogRecord record)

          Format the given log record and return the formatted string.
 String

          Localize and format the message string from a log record.
 String

          Return the header string for a set of formatted records.
 String

          Return the tail string for a set of formatted records.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Formatter

protected Formatter()
Construct a new formatter.

Method Detail

format

public abstract String format(LogRecord record)
Format the given log record and return the formatted string.

The resulting formatted String will normally include a localized and formated version of the LogRecord's message field. The Formatter.formatMessage convenience method can (optionally) be used to localize and format the message field.

Parameters:
record - the log record to be formatted.
Returns:
the formatted log record

formatMessage

public synchronized String formatMessage(LogRecord record)
Localize and format the message string from a log record. This method is provided as a convenience for Formatter subclasses to use when they are performing formatting.

The message string is first localized to a format string using the record's ResourceBundle. (If there is no ResourceBundle, or if the message key is not found, then the key is used as the format string.) The format String uses java.text style formatting.

Parameters:
record - the log record containing the raw message
Returns:
a localized and formatted message

getHead

public String getHead(Handler h)
Return the header string for a set of formatted records.

This base class returns an empty string, but this may be overriden by subclasses.

Parameters:
h - The target handler (can be null)
Returns:
header string

getTail

public String getTail(Handler h)
Return the tail string for a set of formatted records.

This base class returns an empty string, but this may be overriden by subclasses.

Parameters:
h - The target handler (can be null)
Returns:
tail string


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.