Method | Description | |
---|---|---|
AbstractContext ( ) : System |
default CTOR
|
|
AbstractContext ( IContext inner ) : System |
Chaining constructor accepts a Context argument. It will relay get() operations into this Context in the even the 'local' get() returns null.
|
|
ContainsKey ( Object key ) : bool |
Indicates whether the specified key is in the context. Provided for debugging purposes. *
|
|
Get ( String key ) : Object |
Gets the value corresponding to the provided key from the context. * Supports the chaining context mechanism. If the 'local' context doesn't have the value, we try to get it from the chained context. *
|
|
InternalContainsKey ( Object key ) : bool |
Implement to determine if a key is in the storage.
|
|
InternalGet ( String key ) : Object |
Implement to return a value from the context storage.
|
|
InternalGetKeys ( ) : Object[] |
Implement to return an object array of key strings from your storage.
|
|
InternalPut ( String key, Object value ) : Object |
Implement to put a value into the context storage.
|
|
InternalRemove ( Object key ) : Object |
Implement to remove an item from your storage.
|
|
Put ( String key, Object value ) : Object |
Adds a name/value pair to the context.
|
|
Remove ( Object key ) : Object |
Get all the keys for the values in the context Removes the value associated with the specified key from the context. *
|
public AbstractContext ( IContext inner ) : System | ||
inner | IContext | context to be chained /// /// |
return | System |
public ContainsKey ( Object key ) : bool | ||
key | Object | The key to look for. /// |
return | bool |
public Get ( String key ) : Object | ||
key | String | The name of the desired value. /// |
return | Object |
public abstract InternalContainsKey ( Object key ) : bool | ||
key | Object | key to test for existance /// |
return | bool |
public abstract InternalGet ( String key ) : Object | ||
key | String | key whose associated value is to be returned /// |
return | Object |
public abstract InternalGetKeys ( ) : Object[] | ||
return | Object[] |
public abstract InternalPut ( String key, Object value ) : Object | ||
key | String | key with which to associate the value /// |
value | Object | value to be associated with the key /// |
return | Object |
public abstract InternalRemove ( Object key ) : Object | ||
key | Object | key to remove /// |
return | Object |
public Put ( String key, Object value ) : Object | ||
key | String | The name to key the provided value with. /// |
value | Object | The corresponding value. /// |
return | Object |
public Remove ( Object key ) : Object | ||
key | Object | The name of the value to remove. /// |
return | Object |