package part1;

/**
 * Fast Forward command for a VHS Player
 *
 * @author $Author: cdent $
 *
 * @version $Revision: 1.2 $
 *
 */
public class VHSFastForwardCommand extends AbstractPlayerCommand {

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

    public void press() {
	truify();

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


}
	
