Project for Continous Integration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
274 B

  1. package device.cdPlayer;
  2. import java.util.List;
  3. public class CDWechseler {
  4. private List<CD>CDList;
  5. private boolean running=false;
  6. public boolean isRunning() {
  7. return running;
  8. }
  9. public void activate() {
  10. this.running = true;
  11. }
  12. }