package part1;

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

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

    public void press() {
	truify();

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

}
	
