Example usage for java.io Writer subclass-usage

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

Introduction

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

Usage

From source file LoggingWriter.java

/** Wraps a stream, printing to standard out everything that is written to it. */
public class LoggingWriter extends Writer {
    private java.io.Writer theBase;

    private java.io.Writer theLog;

From source file util.XmlWriter.java

public class XmlWriter extends Writer {
    private static String endl = System.getProperty("line.separator");

    private Writer writer;
    private boolean isNewLine;

From source file com.googlecode.promnetpp.utilities.IndentedWriter.java

/**
 *
 * @author Miguel Martins
 */
public abstract class IndentedWriter extends Writer {
    protected Writer writer;

From source file org.jasig.portal.io.AbstractTokenReplacementFilter.java

/**
 * Abstract token replacement filter. Wraps a Writer and can replace tokens as described
 * by the configured prefix and suffix with the value provided by the sub-class for the
 * parsed token.
 * 
 * @author Eric Dalquist

From source file com.gc.iotools.stream.writer.TeeWriter.java

/**
 * <p>
 * Copies the data that is written to this class to the <code>Writer(s)</code>
 * passed in the constructor. It also collect statistics on the operations
 * done (time spent writing to the internal writers, amount of data written).
 * </p>

From source file NullWriter.java

/**
 * Null writer implementation.
 * <p/>
 * Data writen to this writer is swallowed (ala piping output to <i>/dev/null</i>).
 *
 * @author <a href="mailto:tom.fennelly@gmail.com">tom.fennelly@gmail.com</a>

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

/**
 * {@link Writer} implementation that redirects to a logger.
 * 
 * @author Andreas Veithen
 * @version $Id$
 */

From source file zmyth.util.CommonsLogWriter.java

/**
 * {@code java.io.Writer} adapter for a Commons Logging {@code Log}.
 *
 * @author Juergen Hoeller
 * @since 2.5.1
 */

From source file com.xiongyingqi.util.CommonsLogWriter.java

/**
 * {@code java.io.Writer} adapter for a Commons Logging {@code Log}.
 *
 * @author Juergen Hoeller
 * @since 2.5.1
 */

From source file org.crazydog.util.spring.CommonsLogWriter.java

/**
 * {@code java.io.Writer} adapter for a Commons Logging {@code Log}.
 *
 * @author Juergen Hoeller
 * @since 2.5.1
 */