KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > pept > transport > ContactInfoList


1 /*
2  * @(#)ContactInfoList.java 1.8 03/12/19
3  *
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 JavaDoc;
11
12 /**
13  * <p> <code>ContactInfoList</code> contains one or more
14  * {@link com.sun.corba.se.pept.transport.ContactInfo ContactInfo}.
15  *
16  * @author Harold Carr
17  */

18 public interface ContactInfoList
19 {
20     /**
21      * Used to get a
22      * {@link com.sun.corba.se.pept.transport.ContactInfoListIterator
23      * ContactInfoListIterator} to retrieve individual
24      * {@link com.sun.corba.se.pept.transport.ContactInfo ContactInfo}
25      * from the list.
26      *
27      * @return A
28      * {@link com.sun.corba.se.pept.transport.ContactInfoListIterator
29      * ContactInfoListIterator}.
30      */

31     public Iterator JavaDoc iterator();
32 }
33
34 // End of file.
35
Popular Tags