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 com.taobao.datax.plugins.writer.ftpwriter.FtpWriter.java

public class FtpWriter extends Writer {
    private static final org.slf4j.Logger LOG = LoggerFactory.getLogger(FtpWriter.class);
    private Set<String> allFileExists = null;

    private String protocol;
    private String host;

From source file org.esco.grouperui.tools.parameter.internal.db.LoggerWriter.java

/**
 * {@link Writer} implementation that redirects to a logger.
 * 
 * @author Andreas Veithen
 * @version $Id: LoggerWriter.java 59 2008-03-11 21:37:29Z veithen $
 */

From source file org.taverna.server.master.utils.DerbyUtils.java

class DBLog extends Writer {
    private Log log = LogFactory.getLog("Taverna.Server.Database");
    private StringBuilder sb = new StringBuilder();
    private boolean closed = false;

    @Override

From source file com.flexive.war.filter.FxWriter.java

/**
 * Print Writer for the FxResponseWrapper.
 * <p/>
 * This file is part of the fleXive 3.x framework.
 *
 * @author Gregor Schober (gregor.schober@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at)

From source file org.olat.core.gui.render.StringOutput.java

/**
 * @author Felix Jost
 */
public class StringOutput extends Writer {

    private static final OLog log = Tracing.createLoggerFor(StringOutput.class);

From source file HardcopyWriter.java

/**
 * A character output stream that sends output to a printer.
 */
public class HardcopyWriter extends Writer {
    // These are the instance variables for the class
    protected PrintJob job; // The PrintJob object in use

From source file mitm.common.util.SizeLimitedWriter.java

/**
 * A writer that delegates to an underlying writer and limits the number of characters that can be written to the
 * underlying writer. 
 * 
 * Note: This writer will not split up the data to write. This means that if data is about to be written that when 
 * written will exceed the limit, no data will be written.

From source file ClosableCharArrayWriter.java

/**
 * Provides Closable semantics ordinarily missing in a
 * {@link java.io.CharArrayWriter}. 
 *
 * Accumulates output in a character array that automatically grows as needed.
 *

From source file ClosableCharArrayWriter.java

/**
 * Provides Closable semantics ordinarily missing in a
 * {@link java.io.CharArrayWriter}. <p>
 *
 * Accumulates output in a character array that automatically grows as needed.<p>
 *

From source file ca.nines.ise.writer.RTFWriter.java

/**
 *
 * @author Michael Joyce <ubermichael@gmail.com>
 */
public class RTFWriter extends Writer {