package reverseIterator;

public interface ListWithReverse<Any> extends List<Any>{
	
    public java.util.Iterator<Any> reverseIterator( );

}
