1 package javax.microedition.io;
2
3 import java.io.*;
4
5 public interface Connection
6 {
7 public void close() throws IOException;
8 }
9