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

net.bpelunit.framework.util.Console Maven / Gradle / Ivy

package net.bpelunit.framework.util;

import java.io.PrintWriter;

public class Console {

	public PrintWriter getScreen() {
		return System.console().writer();
	}
	
	public void exit(int exitCode) {
		System.exit(exitCode);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy