"

2013 FRC Java API

"

com.sun.squawk
Class Isolate.Breakpoint

java.lang.Object
  extended by com.sun.squawk.Isolate.Breakpoint
Enclosing class:
Isolate

public static class Isolate.Breakpoint
extends Object

A Breakpoint instance describes a point in a method at which a breakpoint has been set.


Field Summary
 int ip
          The offset (in bytes) from mp of the breakpoint.
 Object mp
          The method context of the breakpoint.
 
Constructor Summary
Isolate.Breakpoint(Object mp, int ip)
          Constructor.
 
Method Summary
 boolean equals(Object o)
          Indicates whether some other object is "equal to" this one.
 int hashCode()
          Returns a hash code value for the object.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

mp

public final Object mp
The method context of the breakpoint.


ip

public final int ip
The offset (in bytes) from mp of the breakpoint.

Constructor Detail

Isolate.Breakpoint

public Isolate.Breakpoint(Object mp,
                          int ip)
Constructor.

Parameters:
mp -
ip -
Method Detail

equals

public boolean equals(Object o)
Indicates whether some other object is "equal to" this one.

The equals method implements an equivalence relation:

The equals method for class Object implements the most discriminating possible equivalence relation on objects; that is, for any reference values x and y, this method returns true if and only if x and y refer to the same object (x==y has the value true).

Overrides:
equals in class Object
Parameters:
o -
Returns:
true if this object is the same as the obj argument; false otherwise.
See Also:
Boolean.hashCode(), Hashtable

hashCode

public int hashCode()
Returns a hash code value for the object. This method is supported for the benefit of hashtables such as those provided by java.util.Hashtable.

The general contract of hashCode is:

As much as is reasonably practical, the hashCode method defined by class Object does return distinct integers for distinct objects. (This is typically implemented by converting the internal address of the object into an integer, but this implementation technique is not required by the JavaTM programming language.)

Overrides:
hashCode in class Object
Returns:
a hash code value for this object.
See Also:
Object.equals(java.lang.Object), Hashtable

"

2013 FRC Java API

"

"
For updated information see the Java FRC site
"