| org.netbeans.insane.model.Item
Item | public interface Item (Code) | | A representation of a single Object on a heap.
author: Nenik |
getId | public int getId()(Code) | | Provides an unique integer identification of given object.
unique identification of the object represented by this Item. |
getSize | public int getSize()(Code) | | the estimated size of the object represented by this Item |
getType | public String getType()(Code) | | the type (class name) of the object. |
getValue | public String getValue()(Code) | | the value of the object. For Items representing object of type"[C" (char array), returns the approximate content of the array. Forother types returns null. |
incomming | public Enumeration<Object> incomming()(Code) | | Provides an enumeration of all incomming references.
Enumeration of Items representing objects that references objectof this Item or String representing static fields. |
outgoing | public Enumeration<Item> outgoing()(Code) | | Provides an enumeration of all outgoing references, that is, content of
all non-null reference field of the represented object.
Enumeration of Items representing objects referenced from objectof this Item. |
|
|