repo.or.cz
/
stereo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added volume to client plus other fixes
[stereo.git]
/
DAAPLib
/
src
/
util
/
command
/
Command.java
blob
4ae8addc03ed99be2800d62945922d7ef7fe5eef
1
package
util
.
command
;
2
3
import
java
.
util
.
Map
;
4
5
import
interfaces
.
DJInterface
;
6
import
util
.
node
.
Node
;
7
8
public interface
Command
extends
RequestNode
{
9
10
public void
init
(
Map
<
String
,
String
>
args
);
11
public
Node
run
(
DJInterface dj
);
12
13
}