Package org.slf4j.spi
Interface MarkerFactoryBinder
- 
public interface MarkerFactoryBinderAn internal interface which helps the staticMarkerFactoryclass bind with the appropriateIMarkerFactoryinstance. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IMarkerFactorygetMarkerFactory()Return the instance ofIMarkerFactorythatMarkerFactoryclass should bind to.java.lang.StringgetMarkerFactoryClassStr()The String form of theIMarkerFactoryobject that thisMarkerFactoryBinderinstance is intended to return. 
 - 
 
- 
- 
Method Detail
- 
getMarkerFactory
IMarkerFactory getMarkerFactory()
Return the instance ofIMarkerFactorythatMarkerFactoryclass should bind to.- Returns:
 - the instance of 
IMarkerFactorythatMarkerFactoryclass should bind to. 
 
- 
getMarkerFactoryClassStr
java.lang.String getMarkerFactoryClassStr()
The String form of theIMarkerFactoryobject that thisMarkerFactoryBinderinstance is intended to return.This method allows the developer to interrogate this binder's intention which may be different from the
IMarkerFactoryinstance it is able to return. Such a discrepancy should only occur in case of errors.- Returns:
 - the class name of the intended 
IMarkerFactoryinstance 
 
 - 
 
 -