OSDN Git Service

Imported GNU Classpath 0.90
[pf3gnuchains/gcc-fork.git] / libjava / classpath / gnu / classpath / jdwp / transport / ITransport.java
index 371cf8f..cf55425 100644 (file)
@@ -42,14 +42,13 @@ package gnu.classpath.jdwp.transport;
 import java.io.InputStream;
 import java.io.IOException;
 import java.io.OutputStream;
-import java.lang.IllegalArgumentException;
 import java.util.HashMap;
 
 /**
  * A class representing a transport layer. This class serves as a generic
  * interface for all transport types used in the JDWP back-end.
  *
- * @author Keith Seitz <keiths@redhat.com>
+ * @author Keith Seitz (keiths@redhat.com)
  */
 public interface ITransport
 {
@@ -71,6 +70,11 @@ public interface ITransport
     throws TransportException;
 
   /**
+   * Shutdown the transport
+   */
+  public void shutdown ();
+
+  /**
    * Get the input stream for the transport
    */
   public InputStream getInputStream ()