package part1;

/**
 *
 * @author $Author: cdent $
 *
 * @version $Revision: 1.1.1.1 $
 *
 */
public class TapeFastForwardCommand extends AbstractPlayerCommand {

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

    public void press() {
	truify();

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


}
	
