Spec-Zone .ru
спецификации, руководства, описания, API
Java Debug Interface

com.sun.jdi.connect
Interface Transport


public interface Transport

A method of communication between a debugger and a target VM.

Since:
1.3

Method Summary
 String name()
          Returns a short identifier for the transport.
 

Method Detail

name

public String name()
Returns a short identifier for the transport. Transport implementors should follow similar naming conventions as are used with packages to avoid name collisions. For example, the Sun transport implementations have names prefixed with "com.sun.jdi.".
Returns:
the name of this transport.

Java Debug Interface