1 /*2 * @(#)ContactInfoList.java 1.8 03/12/193 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package com.sun.corba.se.pept.transport;9 10 import java.util.Iterator ;11 12 /**13 * <p> <code>ContactInfoList</code> contains one or more14 * {@link com.sun.corba.se.pept.transport.ContactInfo ContactInfo}.15 *16 * @author Harold Carr17 */18 public interface ContactInfoList19 {20 /**21 * Used to get a22 * {@link com.sun.corba.se.pept.transport.ContactInfoListIterator 23 * ContactInfoListIterator} to retrieve individual24 * {@link com.sun.corba.se.pept.transport.ContactInfo ContactInfo}25 * from the list.26 *27 * @return A28 * {@link com.sun.corba.se.pept.transport.ContactInfoListIterator 29 * ContactInfoListIterator}.30 */31 public Iterator iterator();32 }33 34 // End of file.35