public class MarkerFactory extends Object
Marker instances as appropriate for the logging system currently in use.
This class is essentially implemented as a wrapper around an IMarkerFactory instance bound at compile time.
Please note that all methods in this class are static.
| Modifier and Type | Method and Description |
|---|---|
static Marker |
getDetachedMarker(String
Create a marker which is detached (even at birth) from the MarkerFactory.
|
static IMarkerFactory |
getIMarkerFactory()
Return the
IMarkerFactoryinstance in use.
|
static Marker |
getMarker(String
Return a Marker instance as specified by the name parameter using the previously bound
IMarkerFactoryinstance.
|
public static MarkergetMarker(String name)
IMarkerFactoryinstance.
name - The name of the
Marker object to return.
public static MarkergetDetachedMarker(String name)
name - the name of the marker
public static IMarkerFactorygetIMarkerFactory()
IMarkerFactoryinstance in use.
The IMarkerFactory instance is usually bound with this class at compile time.