package listFW; /** * Represents the structural behavior of the immutable empty list. * The empty list has no well-defined structural behavior: * it has no first and no rest. * Note that it defined as having a type as it is the empty list of a certain type. * @author Dung X. Nguyen * @author Stephen B. Wong * @since Copyright 2004 - DXN, SBW All rights reserved */ public interface IMTList extends IList { }