package part1;

import java.awt.Color;


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

    public void init() {
	setText("1");
	button.setBackground(Color.black);
	button.setForeground(Color.white);
	button.addActionListener(this);
    }

    public void press() {
	truify();
	System.out.println("##### CD Player Playing.");
	((CDContext)getContext()).commandChanged(this);
    }

}
	

	
