import tester.ISame; /** * This class represents an empty list of items of the type * T. * * @param the data type of the items in this list */ class MtLo> implements ILo{ /** * The constructor */ MtLo(){} /** * Compute the total size of this list. * @return 0 */ public int size(){ return 0; } /** * Does this list of accounts contain the given account? * @param a the given account * @return true if the accounts are the same */ public boolean contains(T t){ return false; } }