Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1531 → Rev 1532

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