< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/connect/AttachingConnector.java

Print this page
rev 17275 : 8181417: Code cleanups in com.sun.jdi

*** 23,43 **** * questions. */ package com.sun.jdi.connect; - import com.sun.jdi.VirtualMachine; - import java.util.Map; import java.io.IOException; /** * A connector which attaches to a previously running target VM. * * @author Gordon Hirsch * @since 1.3 */ public interface AttachingConnector extends Connector { /** * Attaches to a running application and returns a * mirror of its VM. * <p> * The connector uses the given argument map in --- 23,45 ---- * questions. */ package com.sun.jdi.connect; import java.io.IOException; + import java.util.Map; + + import com.sun.jdi.VirtualMachine; /** * A connector which attaches to a previously running target VM. * * @author Gordon Hirsch * @since 1.3 */ public interface AttachingConnector extends Connector { + /** * Attaches to a running application and returns a * mirror of its VM. * <p> * The connector uses the given argument map in
< prev index next >