1 package util
.command
.ctrlint
;
3 import interfaces
.DJInterface
;
7 import util
.command
.Command
;
10 public class PrevItem
implements Command
{
12 public void init(Map
<String
, String
> args
) {
16 public Response
run(DJInterface dj
) {
18 dj
.playbackControl().prev();
20 return new Response(null, Response
.NO_CONTENT
);