Subversion Repositories Projects

Rev

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

Rev 1532 Rev 1690
Line 7... Line 7...
7
 
7
 
8
import java.io.IOException;
8
import java.io.IOException;
9
import java.io.InputStream;
9
import java.io.InputStream;
Line -... Line 10...
-
 
10
import java.io.OutputStream;
10
import java.io.OutputStream;
11
 
11
 
12
/*
Line 12... Line 13...
12
public class RXTXSerialPort implements MKCommPort {
13
public class RXTXSerialPort implements MKCommPort {
13
        private SerialPort serialPort;
14
        private SerialPort serialPort;
Line 58... Line 59...
58
 
59
 
59
        public OutputStream getOutputStream() throws IOException {
60
        public OutputStream getOutputStream() throws IOException {
60
                return serialPort.getOutputStream();
61
                return serialPort.getOutputStream();
61
        }
62
        }
-
 
63
}
62
}
64
*/