equal
deleted
inserted
replaced
|
1 package javax.microedition.io; |
|
2 |
|
3 import java.io.*; |
|
4 |
|
5 public interface OutputConnection extends Connection |
|
6 { |
|
7 public OutputStream openOutputStream() throws IOException; |
|
8 public DataOutputStream openDataOutputStream() throws IOException; |
|
9 } |
|
10 |