7 lines
186 B
Java
7 lines
186 B
Java
|
|
package javax.activation;
|
||
|
|
|
||
|
|
import java.io.IOException;
|
||
|
|
|
||
|
|
public interface CommandObject {
|
||
|
|
void setCommandContext(String paramString, DataHandler paramDataHandler) throws IOException;
|
||
|
|
}
|