![]() |
0.11.4
|
Associative map used by processors to store persistent data.
Definition at line 30 of file Context.java.
Public Member Functions | |
| Context () | |
| Creates a new empty context. | |
| Context (Context c) | |
| Creates a new context object from an existing one. | |
| void | putAll (Map<? extends String, ? extends Object > o) |
| Object | get (Object key) |
| Object | put (String key, Object value) |
| boolean | containsKey (Object key) |
| ca.uqac.lif.cep.Context.Context | ( | ) |
Creates a new empty context.
Definition at line 40 of file Context.java.
| ca.uqac.lif.cep.Context.Context | ( | Context | c | ) |
Creates a new context object from an existing one.
This effectively creates a copy of the context passed as parameter.
| c | The context object to copy from |
Definition at line 50 of file Context.java.
| boolean ca.uqac.lif.cep.Context.containsKey | ( | Object | key | ) |
Definition at line 82 of file Context.java.
| Object ca.uqac.lif.cep.Context.get | ( | Object | key | ) |
Definition at line 68 of file Context.java.
| Object ca.uqac.lif.cep.Context.put | ( | String | key, |
| Object | value ) |
Definition at line 75 of file Context.java.
| void ca.uqac.lif.cep.Context.putAll | ( | Map<? extends String, ? extends Object > | o | ) |
Definition at line 61 of file Context.java.