Interface com.bdnm.mvc.Valuable
All Packages Class Hierarchy This Package Previous Next Index
Interface com.bdnm.mvc.Valuable
- public interface Valuable
- extends Object
When implemented, this interface allows classes to
respond to getValue and setValue.
-
getValue()
- Called to get the current value this object represents.
-
setValue(Object)
- Called to set the current value, which must
be cast to an Object.
getValue
public abstract Object getValue()
- Called to get the current value this object represents.
- Returns:
- the current value, which is cast to an Object
setValue
public abstract void setValue(Object newValue)
- Called to set the current value, which must
be cast to an Object.
- Parameters:
- newValue - the new value to set
All Packages Class Hierarchy This Package Previous Next Index