![JAR search and dependency download from the Maven repository](/logo.png)
org.slf4j.impl.StaticMarkerBinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slf4j-test Show documentation
Show all versions of slf4j-test Show documentation
An in-memory SLF4J implementation focused on aiding unit testing.
The newest version!
package org.slf4j.impl;
import org.slf4j.IMarkerFactory;
import org.slf4j.helpers.BasicMarkerFactory;
import org.slf4j.spi.MarkerFactoryBinder;
public final class StaticMarkerBinder implements MarkerFactoryBinder {
public static final org.slf4j.impl.StaticMarkerBinder SINGLETON = new org.slf4j.impl.StaticMarkerBinder();
private final IMarkerFactory markerFactory = new BasicMarkerFactory();
private StaticMarkerBinder() { }
public IMarkerFactory getMarkerFactory() {
return markerFactory;
}
public String getMarkerFactoryClassStr() {
return BasicMarkerFactory.class.getName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy