Logback: the reliable, generic, fast and flexible logging framework. Copyright (C) 1999-2015, QOS.ch. All rights reserved. This program and the accompanying materials are dual-licensed under either the terms of the Eclipse Public License v1.0 as published by the Eclipse Foundation or (per the licensee's choosing) under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation.
/** * Logback: the reliable, generic, fast and flexible logging framework. * Copyright (C) 1999-2015, QOS.ch. All rights reserved. * * This program and the accompanying materials are dual-licensed under * either the terms of the Eclipse Public License v1.0 as published by * the Eclipse Foundation * * or (per the licensee's choosing) * * under the terms of the GNU Lesser General Public License version 2.1 * as published by the Free Software Foundation. */
package org.slf4j.impl; import org.slf4j.IMarkerFactory; import org.slf4j.MarkerFactory; import org.slf4j.helpers.BasicMarkerFactory; import org.slf4j.spi.MarkerFactoryBinder;
The binding of MarkerFactory class with an actual instance of IMarkerFactory is performed using information returned by this class.
Author:Ceki Gülcü
/** * * The binding of {@link MarkerFactory} class with an actual instance of * {@link IMarkerFactory} is performed using information returned by this class. * * @author Ceki Gülcü */
public class StaticMarkerBinder implements MarkerFactoryBinder {
The unique instance of this class.
/** * The unique instance of this class. */
public static final StaticMarkerBinder SINGLETON = new StaticMarkerBinder(); final IMarkerFactory markerFactory = new BasicMarkerFactory(); private StaticMarkerBinder() { }
Currently this method always returns an instance of BasicMarkerFactory.
/** * Currently this method always returns an instance of * {@link BasicMarkerFactory}. */
public IMarkerFactory getMarkerFactory() { return markerFactory; }
Currently, this method returns the class name of BasicMarkerFactory.
/** * Currently, this method returns the class name of * {@link BasicMarkerFactory}. */
public String getMarkerFactoryClassStr() { return BasicMarkerFactory.class.getName(); } }