public interface Context
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Clear the contents of this context and reset to a "like-new" state.
|
boolean |
containsKey(Object key)
Return
true if this context contains an entry with the given key. |
Object |
get(Object key)
Get the value in the context map defined by the given key.
|
void |
put(Object key,
Object value)
Store a key value pair into the context.
|
void clear()
Object get(Object key)
null if no such key exists, or if
they key maps to a null value.boolean containsKey(Object key)
true if this context contains an entry with the given key.Copyright © 2016 OCPsoft. All rights reserved.