Rev 1532 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1532 | - | 1 | package dongfang.mkt.io; |
2 | |||
1690 | - | 3 | /* |
1532 | - | 4 | import java.io.IOException; |
5 | import java.io.InputStream; |
||
6 | import java.io.OutputStream; |
||
7 | |||
8 | public interface MKCommPort { |
||
9 | void init(String id) throws IOException; |
||
10 | InputStream getInputStream() throws IOException ; |
||
11 | OutputStream getOutputStream() throws IOException ; |
||
12 | } |
||
1690 | - | 13 | |
14 | */ |