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

org.unix4j.unix.cat.CatProcessor Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package org.unix4j.unix.cat;

import org.unix4j.command.Command;
import org.unix4j.context.ExecutionContext;
import org.unix4j.line.Line;
import org.unix4j.processor.AbstractLineProcessor;
import org.unix4j.processor.LineProcessor;

class CatProcessor extends AbstractLineProcessor {

	public CatProcessor(Command command, ExecutionContext context, LineProcessor output) {
		super(command, context, output);
	}

	@Override
	public boolean processLine(Line line) {
		return getOutput().processLine(line);
	}

	@Override
	public void finish() {
		getOutput().finish();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy