
package part1;

/**
 * Rewind Command for a VHS Player
 *
 * @author $Author: cdent $
 *
 * @version $Revision: 1.2 $
 *
 */
public class VHSRewindCommand extends AbstractPlayerCommand {

    public void init() {
	setText("VHS Rewind");
	button.addActionListener(this);
    }

    public void press() {
	truify();

	System.out.println("##### VHS Rewind Pressed.");
	((VHSContext)getContext()).commandChanged(this);
    }

}
	
