Continuous systeem afgemaakt, rollen van verschillende listeners en gatherers gecontroleerd en nutteloze exceptions verwijderd. Het nieuwe actions systeem moet nog worden doorgevoerd in de devices.
This commit is contained in:
@@ -1,23 +1,18 @@
|
||||
package pm;
|
||||
|
||||
public enum Action {
|
||||
START ("start"),
|
||||
TEST ("test"),
|
||||
EXIT ("exit"),
|
||||
PLAY ("play"),
|
||||
PAUSE ("pause"),
|
||||
RESUME ("resume"),
|
||||
NEXT ("next"),
|
||||
PREVIOUS ("previous"),
|
||||
FORWARD ("forward"),
|
||||
REWIND ("rewind"),
|
||||
MUTE ("mute"),
|
||||
VOLUME_UP ("volumeUp"),
|
||||
VOLUME_DOWN ("volumeDown");
|
||||
|
||||
protected String action;
|
||||
|
||||
private Action(String action) {
|
||||
this.action = action;
|
||||
}
|
||||
EXIT,
|
||||
FORWARD,
|
||||
MUTE,
|
||||
NEXT,
|
||||
PAUSE,
|
||||
PLAY,
|
||||
PREVIOUS,
|
||||
REPEAT,
|
||||
RESUME,
|
||||
REWIND,
|
||||
START,
|
||||
TEST,
|
||||
VOLUME_DOWN,
|
||||
VOLUME_UP;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user