Method | Description | |
---|---|---|
InternalContainsKey ( Object key ) : bool |
determines if there is a value for the given key
|
|
InternalGet ( String key ) : Object |
retrieves value for key from internal storage
|
|
InternalGetKeys ( ) : Object[] |
returns array of keys
|
|
InternalPut ( String key, Object value ) : Object |
stores the value for key to internal storage
|
|
InternalRemove ( Object key ) : Object |
remove a key/value pair from the internal storage
|
|
VelocityContext ( ) : System |
Creates a new instance (with no inner context).
|
|
VelocityContext ( |
Creates a new instance with the provided storage (and no inner context).
|
|
VelocityContext ( |
Initializes internal storage (never to
|
|
VelocityContext ( IContext innerContext ) : System |
Chaining constructor, used when you want to wrap a context in another. The inner context will be 'read only' - put() calls to the wrapping context will only effect the outermost context
|
public InternalContainsKey ( Object key ) : bool | ||
key | Object | name of value to check |
return | bool |
public InternalGet ( String key ) : Object | ||
key | String | name of value to get |
return | Object |
public InternalPut ( String key, Object value ) : Object | ||
key | String | name of value to store |
value | Object | value to store |
return | Object |
public InternalRemove ( Object key ) : Object | ||
key | Object | name of value to remove |
return | Object |
public VelocityContext ( |
||
context | ||
return | System |
public VelocityContext ( |
||
context | Internal storage, or null to
/// create default storage.
/// |
|
innerContext | IContext | Inner context. /// /// |
return | System |
public VelocityContext ( IContext innerContext ) : System | ||
innerContext | IContext | The Context implementation to wrap. |
return | System |