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