| org.picocontainer.ObjectReference
All known Subclasses: org.picocontainer.references.ThreadLocalMapObjectReference,
ObjectReference | public interface ObjectReference (Code) | | A way to refer to objects that are stored in "awkward" places (for example inside a
HttpSession or
ThreadLocal ).
This interface is typically implemented by someone integrating Pico into an existing container.
author: Joe Walnes |
Method Summary | |
T | get() Retrieve an actual reference to the object. | void | set(T item) Assign an object to the reference.
Parameters: item - the object to assign to the reference. |
get | T get()(Code) | | Retrieve an actual reference to the object. Returns null if the reference is not available
or has not been populated yet.
an actual reference to the object. |
set | void set(T item)(Code) | | Assign an object to the reference.
Parameters: item - the object to assign to the reference. May be null . |
|
|