/**** 
 *
 * This interface is implemented by any class that represents something
 * valuable, e.g., a BankAccount or a Car.
 *
 */
public interface Valuable {
    double getValue();
}