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.

Method Index

 o getValue()
Called to get the current value this object represents.
 o setValue(Object)
Called to set the current value, which must be cast to an Object.

Methods

 o getValue
  public abstract Object getValue()
Called to get the current value this object represents.
Returns:
the current value, which is cast to an Object
 o 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