javacommons/gcfbase/javasrc.linux/javax/microedition/io/StreamConnectionNotifier.java
branchRCL_3
changeset 18 9ac0a0a7da70
parent 17 0fd27995241b
child 19 71c436fe3ce0
equal deleted inserted replaced
17:0fd27995241b 18:9ac0a0a7da70
     1 package javax.microedition.io;
       
     2 
       
     3 import java.io.*;
       
     4 
       
     5 public interface StreamConnectionNotifier extends Connection
       
     6 {
       
     7     public StreamConnection acceptAndOpen() throws IOException;
       
     8 }
       
     9 
       
    10