Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1562 → Rev 1563

/dongfang_FC_rewrite_tool/src/dongfang/mkt/comm/MKConnection.java
0,0 → 1,11
package dongfang.mkt.comm;
 
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
 
public interface MKConnection {
void init(String id) throws IOException;
InputStream getInputStream() throws IOException ;
OutputStream getOutputStream() throws IOException ;
}