/*
	class TalkerCheckbox.java
	by Richard Unger, early March 1998
	
	Simple subclass of Checkbox implementing the CommandTalker interface.
	To add the actual functionality to the talkCommand method, provide an
	anonymous subclass of this class whereever you create an instance of it...
*/


import java.awt.*;


public class TalkerCheckbox extends Checkbox implements CommandTalker{
	public TalkerCheckbox(){
		super();
		}
	public TalkerCheckbox(String label,boolean state,CheckboxGroup group){
		super(label,state,group);
		}
	public TalkerCheckbox(String label,boolean state){
		super(label,state);
		}
	public String talkCommand(){
		return null;
		}
}


