Moved MPRIS to a new project
[stereo.git] / DAAPLib / src / util / command / ctrlint / PrevItem.java
blob5c4a060549b017fc8f75f0f60a9d61212e745af2
1 package util.command.ctrlint;
3 import interfaces.DJInterface;
5 import java.util.Map;
7 import util.command.Command;
8 import api.Response;
10 public class PrevItem implements Command {
12 public void init(Map<String, String> args) {
13 // no args
16 public Response run(DJInterface dj) {
18 dj.playbackControl().prev();
20 return new Response(null, Response.NO_CONTENT);