|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.betwixt.expression.MapEntryAdder
public class MapEntryAdder
MapEntryAdder
is used to add entries to a map.
MapEntryAdder
supplies two updaters:
getKeyUpdater()
which allows the entry key to be updatedgetValueUpdater()
which allows the entry value to be updatedContext
passed by the last update will be used.
Constructor Summary | |
---|---|
MapEntryAdder(java.lang.reflect.Method method)
Construct a MapEntryAdder which adds entries to given method. |
Method Summary | |
---|---|
Updater |
getKeyUpdater()
Gets the entry key Updater . |
Updater |
getValueUpdater()
Gets the entry value Updater . |
static void |
setLog(org.apache.commons.logging.Log newLog)
Sets the logger used by this class. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MapEntryAdder(java.lang.reflect.Method method)
MapEntryAdder
which adds entries to given method.
method
- the Method
called to add a key-value entry
java.lang.IllegalArgumentException
- if the given method does not take two parametersMethod Detail |
---|
public static void setLog(org.apache.commons.logging.Log newLog)
newLog
- log to thispublic Updater getKeyUpdater()
Updater
.
This is used to update the entry key value to the read value.
If getValueUpdater()
has been called previously,
then this trigger the updating of the adder method.
Updater
which should be used to populate the entry keypublic Updater getValueUpdater()
Updater
.
This is used to update the entry key value to the read value.
If getKeyUpdater()
has been called previously,
then this trigger the updating of the adder method.
Updater
which should be used to populate the entry value
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |