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

org.unix4j.io.StdOutput Maven / Gradle / Ivy

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

/**
 * Output device writing to the {@link System#out standard output} stream.
 */
public class StdOutput extends StreamOutput {
	/**
	 * The singleton instance.
	 */
	public static final StdOutput INSTANCE = new StdOutput();

	/**
	 * Default constructor, application code should use the singleton
	 * {@link #INSTANCE}.
	 */
	public StdOutput() {
		super(System.out);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy