Package org.slf4j.impl
Class StaticMarkerBinder
- java.lang.Object
-
- org.slf4j.impl.StaticMarkerBinder
-
- All Implemented Interfaces:
MarkerFactoryBinder
public class StaticMarkerBinder extends Object implements MarkerFactoryBinder
The binding ofMarkerFactoryclass with an actual instance ofIMarkerFactoryis performed using information returned by this class. This class is meant to provide a *dummy* StaticMarkerBinder to the slf4j-api module. Real implementations are found in each SLF4J binding project, e.g. slf4j-nop, slf4j-simple, slf4j-log4j12 etc.- Author:
- Ceki Gülcü
-
-
Field Summary
Fields Modifier and Type Field Description static StaticMarkerBinderSINGLETONThe unique instance of this class.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IMarkerFactorygetMarkerFactory()Currently this method always returns an instance ofBasicMarkerFactory.StringgetMarkerFactoryClassStr()Currently, this method returns the class name ofBasicMarkerFactory.static StaticMarkerBindergetSingleton()Return the singleton of this class.
-
-
-
Field Detail
-
SINGLETON
public static final StaticMarkerBinder SINGLETON
The unique instance of this class.
-
-
Method Detail
-
getSingleton
public static StaticMarkerBinder getSingleton()
Return the singleton of this class.- Returns:
- the StaticMarkerBinder singleton
- Since:
- 1.7.14
-
getMarkerFactory
public IMarkerFactory getMarkerFactory()
Currently this method always returns an instance ofBasicMarkerFactory.- Specified by:
getMarkerFactoryin interfaceMarkerFactoryBinder- Returns:
- the instance of
IMarkerFactorythatMarkerFactoryclass should bind to.
-
getMarkerFactoryClassStr
public String getMarkerFactoryClassStr()
Currently, this method returns the class name ofBasicMarkerFactory.- Specified by:
getMarkerFactoryClassStrin interfaceMarkerFactoryBinder- Returns:
- the class name of the intended
IMarkerFactoryinstance
-
-