package part1;

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

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


    public void press() {
	truify();

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


}
	
