1 package org.rpi.player.events;
2
3
4 public class EventStandbyChanged implements EventBase {
5
6 @Override
7 public EnumPlayerEvents getType() {
8 return EnumPlayerEvents.EVENTSTANDBYCHANGED;
9 }
10
11 public boolean isStandby() {
12 return standby;
13 }
14
15 public void setStandby(boolean standby) {
16 this.standby = standby;
17 }
18
19 private boolean standby = true;
20
21 }