public interface PropertyContext
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.Object | getDirect(java.lang.String propName)Retrieve the value of a property | 
| java.lang.String | getName()Get the name of this context | 
| PropertyContext | getParent()return the parent context | 
| java.lang.Object | getRecursive(java.lang.String propName) | 
| void | setDirect(java.lang.String propName,
         java.lang.Object value)Set the value of a property (in this context) | 
| void | setName(java.lang.String contextName) | 
| void | setParent(PropertyContext pc) | 
| void | setRecursive(java.lang.String propName,
            java.lang.Object value,
            java.lang.String contextName)Set the value of a property in the first parent context whose
 name matches the contextName. | 
java.lang.Object getDirect(java.lang.String propName)
propName - the name of the propertyjava.lang.Object getRecursive(java.lang.String propName)
void setDirect(java.lang.String propName,
             java.lang.Object value)
propName - the name of the propertyvoid setRecursive(java.lang.String propName,
                java.lang.Object value,
                java.lang.String contextName)
propName - the name of the propertyvalue - - the value to be setcontextName - - the name of the parent context to be usedPropertyContext getParent()
java.lang.String getName()
void setName(java.lang.String contextName)
void setParent(PropertyContext pc)