public class LocalPropertyStack extends Object
| Constructor and Description | 
|---|
| LocalPropertyStack() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | addLocal(String property)Add a local property. | 
| LocalPropertyStack | copy()Copy the stack for a parallel thread. | 
| void | enterScope()Enter the local scope. | 
| Object | evaluate(String property,
        PropertyHelper helper)Evaluate a property. | 
| void | exitScope()Exit the local scope. | 
| boolean | set(String property,
   Object value,
   PropertyHelper propertyHelper)Set a property. | 
| boolean | setNew(String property,
      Object value,
      PropertyHelper propertyHelper)Set a *new" property. | 
public void addLocal(String property)
property - the name of the local property.public LocalPropertyStack copy()
public void enterScope()
public Object evaluate(String property, PropertyHelper helper)
property - the property's String "identifier".helper - the invoking PropertyHelper.public void exitScope()
public boolean set(String property, Object value, PropertyHelper propertyHelper)
property - the property's String "identifier".value - the value to set.propertyHelper - the invoking PropertyHelper.public boolean setNew(String property, Object value, PropertyHelper propertyHelper)
property - the property's String "identifier".value - the value to set.propertyHelper - the invoking PropertyHelper.