Example usage for java.io PrintStream subclass-usage

List of usage examples for java.io PrintStream subclass-usage

Introduction

In this page you can find the example usage for java.io PrintStream subclass-usage.

Usage

From source file Main.java

public class Main extends PrintStream {

    public Main(OutputStream out) {
        super(out);
    }

From source file Main.java

public class Main extends PrintStream {

    public Main(OutputStream out) {
        super(out);
    }

From source file com.github.ffremont.jrobot.core.console.StdPrintStream.java

/**
 *
 * @author florent
 */
public class StdPrintStream extends PrintStream {

From source file Main.java

class LogStream extends PrintStream {
    PrintStream out;

    public LogStream(PrintStream out1, PrintStream out2) {
        super(out1);
        this.out = out2;

From source file com.github.ffremont.jrobot.core.console.ErrPrintStream.java

/**
 *
 * @author florent
 */
public class ErrPrintStream extends PrintStream {

From source file com.iyonger.apm.web.handler.ProcessingResultPrintStream.java

/**
 * Processing Result PrintStream to store the result of the execution and logs.
 * 
 * @author JunHo Yoon
 * @since 3.2
 */

From source file org.ngrinder.script.handler.ProcessingResultPrintStream.java

/**
 * Processing Result PrintStream to store the result of the execution and logs.
 * 
 * @author JunHo Yoon
 * @since 3.2
 */

From source file org.tomitribe.beryllium.internal.logging.LoggerPrintStream.java

public class LoggerPrintStream extends PrintStream {

    public LoggerPrintStream(Logger logger, Level level) {
        super(new LoggerOutputStream(logger, level), true);
    }

From source file org.openqa.jetty.log.LogStream.java

/**
 * Divert a PrintStream to commons logging.
 * The stderr and stdout streams can be diverted to logs named "stderr" and "stdout" using this
 * class.
 * 
 */

From source file org.browsermob.proxy.jetty.log.LogStream.java

/**
 * Divert a PrintStream to commons logging.
 * The stderr and stdout streams can be diverted to logs named "stderr" and "stdout" using this
 * class.
 * 
 */