package ch.wlkl.shell;

public interface Write<T> extends OpenClose {
	/**
	 * write the next line.
	 * fail if arg is null or not open for writing. How to fail is unspecified, a null pointer exception or a {@link Top#fail(String)} are common possibilities. 
	 */
	void write(T arg);
}

