Method Summary |
|
public boolean | add(RMIObjectInfo info) Adds specified info to the table if there are no elements with the
same ObjID or RMIReference to the impl there. |
public boolean | contains(RMIObjectInfo info) Returns true if the table contains element which is equal to the info
specified. |
public boolean | containsById(ObjID id) Returns true if the table contains element with specified id and false
otherwise. |
public boolean | containsByRef(RMIReference ref) Returns true if the table contains element with specified RMIReference
and false otherwise. |
public RMIObjectInfo | getById(ObjID id) Finds and returns RMIObjectInfo found by specified ObjID or null
if record has not been found. |
public RMIObjectInfo | getByRef(RMIReference ref) Finds and returns RMIObjectInfo found by specified reference to remote
object implementation or null if record has not been found. |
public boolean | isEmpty() Returns true if this table contains no records and false otherwise. |
public RMIObjectInfo | removeById(ObjID id) Removes RMIObjectInfo found by specified ObjID from the table. |
public RMIObjectInfo | removeByRef(RMIReference ref) Removes RMIObjectInfo found by specified reference to remote object
implementation from the table. |