/* +-------------+ | MTList | +-------------+ +-------------+ */ //to represent an empty list of ImageFile objects class MTList implements AList{ MTList(){} //does this empty list contain that ImageFile public boolean contains(ImageFile that){ return false; } }