|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.codehaus.plexus.context.DefaultContext
public class DefaultContext
Default implementation of Context.
This implementation is a static hierarchial store. It has the normal get()
and put
methods. The hide
method will hide a property. When
a property has been hidden the context will not search in the parent context for the value.
Constructor Summary | |
---|---|
DefaultContext()
Create a empty Context with no parent. |
|
DefaultContext(Context parent)
Create a Context with specified parent. |
|
DefaultContext(java.util.Map contextData)
Create a empty Context with specified data. |
|
DefaultContext(java.util.Map contextData,
Context parent)
Create a Context with specified data and parent. |
Method Summary | |
---|---|
protected void |
checkWriteable()
Utility method to check if context is writeable and if not throw exception. |
boolean |
contains(java.lang.Object key)
Returns true if the map or the parent map contains the key. |
java.lang.Object |
get(java.lang.Object key)
Returns the value of the key. |
java.util.Map |
getContextData()
Utility method to retrieve context data. |
protected Context |
getParent()
Get parent context if any. |
void |
hide(java.lang.Object key)
Hides the item in the context. |
void |
makeReadOnly()
Make the context read-only. |
void |
put(java.lang.Object key,
java.lang.Object value)
Helper method for adding items to Context. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DefaultContext(java.util.Map contextData, Context parent)
contextData
- the context dataparent
- the parent Context (may be null)public DefaultContext(java.util.Map contextData)
contextData
- the context datapublic DefaultContext(Context parent)
parent
- the parent Context (may be null)public DefaultContext()
Method Detail |
---|
public boolean contains(java.lang.Object key)
contains
in interface Context
key
- The key to search for.
public java.lang.Object get(java.lang.Object key) throws ContextException
get
in interface Context
key
- The key of the value to look up.
ContextException
- If the key doesn't exist.public void put(java.lang.Object key, java.lang.Object value) throws java.lang.IllegalStateException
put
in interface Context
key
- the items keyvalue
- the item
java.lang.IllegalStateException
- if context is read onlypublic void hide(java.lang.Object key) throws java.lang.IllegalStateException
hide
in interface Context
key
- the items key
java.lang.IllegalStateException
- if context is read onlypublic java.util.Map getContextData()
protected Context getParent()
public void makeReadOnly()
makeReadOnly
in interface Context
protected void checkWriteable() throws java.lang.IllegalStateException
java.lang.IllegalStateException
- if context is read only
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |