Home | History | Annotate | Download | only in jdwp

Lines Matching defs:Location

31  * This class represents Location value in JDWP packet.
33 public class Location {
40 * Creates new Location value with empty data.
42 public Location() {
50 * Creates new Location value with specified data.
52 public Location(byte tag, long classID, long methodID, long index) {
60 * Converts Location to string format for printing.
63 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
67 * Compares this with other Location object.
70 if (!(obj instanceof Location))
72 Location loc = (Location )obj;