KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > FieldIterator


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10
11 package org.mmbase.bridge;
12 import java.util.ListIterator JavaDoc;
13
14 /**
15  * A list of nodes
16  *
17  * @author Pierre van Rooden
18  * @version $Id: FieldIterator.java,v 1.5 2004/10/09 09:40:10 nico Exp $
19  */

20 public interface FieldIterator extends ListIterator JavaDoc {
21
22     /**
23      * Returns the next element in the iterator as a Field
24      * @return next Field
25      */

26     public Field nextField();
27
28     /**
29      * Returns the previous element in the iterator as a Field
30      * @return previous Field
31      */

32     public Field previousField();
33
34 }
35
Popular Tags