List of usage examples for java.io FilterWriter subclass-usage
From source file com.gc.iotools.stream.writer.inspection.WriterDumper.java
/**
* <p>
* This class act as a filter, simply forwarding the calls to the
* <code>Writer</code> passed in the constructor. Doing so it also keeps track
* of the data written to the underlying stream. This is useful for logging
* purposes.
From source file org.milyn.util.StdoutToLog4jFilter.java
/**
* StoutToLog4jFilter is just a simple FileWriter implementation that
* supresses output unless the log4j priority is set to debug.
* This class in indended to be used with hsql embedded server and to
* be used like this:
* <pre>{@code
From source file org.dhatim.util.StdoutToLog4jFilter.java
/**
* StoutToLog4jFilter is just a simple FileWriter implementation that
* supresses output unless the log4j priority is set to debug.
* This class in indended to be used with hsql embedded server and to
* be used like this:
* <pre>{@code
From source file com.cyclopsgroup.waterview.utils.InterpolationFilterWriter.java
/** * @author <a href="mailto:jiaqi.guo@gmail.com">Jiaqi Guo</a> * * Wirter that interpolate some values */ public abstract class InterpolationFilterWriter extends FilterWriter {
From source file CounterDemo.java
class CountWriter extends FilterWriter { private int count = 0; private char lookFor = 0; public CountWriter(Writer in, char lookFor) {