|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--net.sf.spif.StoreChain | +--net.sf.spif.StoreLogger
A store chain which just logs whatever passes thru as info messages to a logger named by the full class name of this class.
Field Summary | |
protected static java.util.logging.Logger |
log
The logger used by this class |
Fields inherited from class net.sf.spif.StoreChain |
chained |
Constructor Summary | |
StoreLogger()
|
Method Summary | |
java.lang.Object |
get(Id id,
boolean writeable)
Returns an object from the store. |
Id |
put(Id id,
java.lang.Object object)
Puts an object in the store. |
boolean |
remove(Id id)
Removes an object. |
Methods inherited from class net.sf.spif.StoreChain |
clear, equals, getChained, getChained, getChained, hashCode, setChained |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected static java.util.logging.Logger log
Constructor Detail |
public StoreLogger()
Method Detail |
public java.lang.Object get(Id id, boolean writeable)
StoreChain
Returns an object from the store.
This default implementation just forwards to the chained. for (optional) use by subclasses.
get
in class StoreChain
id
- the id of the object to return
public Id put(Id id, java.lang.Object object)
StoreChain
Puts an object in the store. The objects may be new, or previously acquired by getting writeable. It is an error to attempt to put an existing object not previously acquired by getting writeable.
This default implementation just forwards to the chained. for (optional) use by subclasses.
put
in class StoreChain
id
- the id of the object to put. May be nullobject
- the object to put. May be null
public boolean remove(Id id)
StoreChain
Removes an object. Does nothign if the object does not exist.
This default implementation just forwards to the chained. for (optional) use by subclasses.
remove
in class StoreChain
id
- the id of the object to remove
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |