Subversion Repositories Projects

Rev

Rev 1532 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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