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

prerna.test.CollectingLogOutputStream Maven / Gradle / Ivy

The newest version!
package prerna.test;

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

import org.apache.commons.exec.LogOutputStream;

public class CollectingLogOutputStream extends LogOutputStream {
    private final List lines = new LinkedList();
    @Override protected void processLine(String line, int level) {
        lines.add(line);
    }   
    public List getLines() {
        return lines;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy