public class Bid { // TODO: declarations and constructor public boolean equals(Object obj){ if( obj == null || !(obj instanceof Bid) )return false; // TODO: comparing the objects: when should they be equal ? } public String toString(){ // TODO: return a description of the bid } }