Example usage for java.io BufferedReader subclass-usage

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

Introduction

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

Usage

From source file GrepReader.java

public class GrepReader extends BufferedReader {
    String pattern;

    public GrepReader(Reader in, String pattern) {
        super(in);
        this.pattern = pattern;

From source file com.novartis.opensource.yada.io.YADABufferedReader.java

/**
 * A subclass of {@link java.io.BufferedReader} which contains methods for returning a line of input 
 * as a {@link JSONObject}
 * @author David Varon
 *
 */

From source file com.apporiented.hermesftp.utils.LoggingReader.java

/**
 * A writer that adds logging capability to a passed writer. This mechanism corresponds the
 * decorator pattern.
 *
 * @author Lars Behnke
 *

From source file SniffedXmlReader.java

public class SniffedXmlReader extends BufferedReader {
    // We don't sniff more than 192 bytes.
    public static int MAX_SNIFFED_CHARS = 192;

    public SniffedXmlReader(Reader reader) throws IOException {
        super(reader);

From source file XmlEncodingSniffer.java

class SniffedXmlReader extends BufferedReader {
    // We don't sniff more than 192 bytes.
    public static int MAX_SNIFFED_CHARS = 192;

    public SniffedXmlReader(Reader reader) throws IOException {
        super(reader);