| org.slf4j.IMarkerFactory
All known Subclasses: org.slf4j.helpers.BasicMarkerFactory,
IMarkerFactory | public interface IMarkerFactory (Code) | | Implementaitons of this interface are used to manufacture
Marker instances.
See the section Implementing
the SLF4J API in the FAQ for details on how to make your logging
system conform to SLF4J.
author: Ceki Gülcü |
detachMarker | boolean detachMarker(String name)(Code) | | Detach an existing marker.
Note that after a marker is detached, there might still be "dangling" references
to the detached marker.
Parameters: name - The name of the marker to detach whether the marker could be detached or not |
exists | boolean exists(String name)(Code) | | Checks if the marker with the name already exists. If name is null, then false
is returned.
true id the marker exists, false otherwise. |
getMarker | Marker getMarker(String name)(Code) | | Manufacture a
Marker instance by name. If the instance has been
created earlier, return the previously created instance.
Null name values are not allowed.
Parameters: name - the name of the marker to be created, null value isnot allowed. a Marker instance |
|
|