/*


	interface CommandTicker.java
	by Richard Unger, late March 1998
	
	Anyone implementing this interface can receive all commands to print them
	or something
*/



public interface CommandTicker{

	public void printCommand(String commandInstance);


}