Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1532 - 1
package dongfang.mkt.io;
2
 
3
import java.io.IOException;
4
import java.io.InputStream;
5
import java.io.OutputStream;
6
 
7
public interface MKCommPort {
8
        void init(String id) throws IOException;
9
        InputStream getInputStream() throws IOException ;
10
        OutputStream getOutputStream() throws IOException ;
11
}