Example usage for org.apache.commons.logging.impl SimpleLog subclass-usage

List of usage examples for org.apache.commons.logging.impl SimpleLog subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.logging.impl SimpleLog subclass-usage.

Usage

From source file net.sf.springderby.TestLog.java

/**
 * Mock log implementation that stores messages in memory.
 * 
 * @author Andreas Veithen
 * @version $Id$
 */

From source file com.google.jstestdriver.ui.LogPanelLog.java

/**
 * Overrides the write() method of SimpleLog to print to the delegated LogPrinter instead of
 * StdErr.
 * @author alexeagle@google.com (Alex Eagle)
 */
public class LogPanelLog extends SimpleLog {

From source file com.google.jstestdriver.idea.ui.LogPanelLog.java

/**
 * Overrides the write() method of SimpleLog to print to the delegated LogPrinter instead of
 * StdErr.
 * @author alexeagle@google.com (Alex Eagle)
 */
public class LogPanelLog extends SimpleLog {

From source file corina.logging.CorinaLog.java

/**
 * Log implementation that subclasses SimpleLog and stores entries in a circular
 * buffer to be presented in a GUI window.
 * TODO: write factory class or method to obtain named <code>CorinaLog</code>s to
 * save instantiations. 
 * @author Aaron Hamid

From source file hadoopInstaller.logging.PrintStreamLog.java

public class PrintStreamLog extends SimpleLog {

    private static final long serialVersionUID = 3974694779155064033L;
    private PrintStream printStream;

    public PrintStreamLog(String name, PrintStream aPrintStream) {