equal
deleted
inserted
replaced
1 package javax.microedition.io; |
|
2 |
|
3 import java.io.*; |
|
4 |
|
5 public interface InputConnection extends Connection |
|
6 { |
|
7 public InputStream openInputStream() throws IOException; |
|
8 public DataInputStream openDataInputStream() throws IOException; |
|
9 } |
|
10 |
|