com.meterware.httpunit
Interface ScriptableObject
- All Known Implementing Classes:
- WebForm.Scriptable
- public interface ScriptableObject
An interface for objects which will be accessible via scripting.
- Author:
- Russell Gold
Method Summary |
Object |
get(String propertyName)
Returns the value of the named property. |
void |
set(String propertyName,
Object value)
Sets the value of the named property. |
get
public Object get(String propertyName)
- Returns the value of the named property. Will throw a runtime exception if the property does not exist.
set
public void set(String propertyName,
Object value)
- Sets the value of the named property. Will throw a runtime exception if the property does not exist or
cannot accept the specified value.