import tester.ISame; /** * This class represents an empty list of items of the type * <code>T</code>. * * @param <T> the data type of the items in this list */ class MtLo<T extends ISame<T>> implements ILo<T>{ /** * 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; } }