All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.nicosensei.textbatch.input.InputFileSection Maven / Gradle / Ivy

/**
 *
 */
package com.github.nicosensei.textbatch.input;

import java.util.LinkedList;
import java.util.List;

/**
 * @author ngiraud
 *
 */
public class InputFileSection {

    private boolean noMoreInput = false;
    private final List lines;

    public InputFileSection(List lines, boolean noMoreInput) {
        this.lines = new LinkedList(lines);
        this.noMoreInput = noMoreInput;
    }

    public boolean noMoreInput() {
        return noMoreInput;
    }

    public List getLines() {
        return lines;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy