| java.lang.Object nextapp.echo2.webcontainer.util.IdTable
IdTable | public class IdTable implements Serializable(Code) | | A table which provides an identifier-to-object mapping, with the objects
being weakly referenced (i.e., the fact that they are held within this table
will not prevent them from being garbage collected).
|
getObject | public Object getObject(String id)(Code) | | Retrieves the object associated with the specified identifier.
Parameters: id - the identifier the object (or null, if the object is not in the queue, perhapsdue to having been dereferenced and garbage collected) |
register | public void register(RenderIdSupport object)(Code) | | Registers an object with the IdTable
Parameters: object - the object to identify |
|
|