Added volume to client plus other fixes
[stereo.git] / DAAPLib / src / util / command / Command.java
blob4ae8addc03ed99be2800d62945922d7ef7fe5eef
1 package util.command;
3 import java.util.Map;
5 import interfaces.DJInterface;
6 import util.node.Node;
8 public interface Command extends RequestNode {
10 public void init(Map<String, String> args);
11 public Node run(DJInterface dj);