01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10:
11: package org.mmbase.bridge;
12:
13: /**
14: * A list of field types
15: *
16: * @author Pierre van Rooden
17: * @version $Id: FieldList.java,v 1.10 2007/02/10 15:47:42 nklasens Exp $
18: */
19: public interface FieldList extends BridgeList<Field> {
20:
21: /**
22: * Returns the Field at the indicated postion in the list
23: * @param index the position of the Field to retrieve
24: * @return Field at the indicated postion
25: */
26: public Field getField(int index);
27:
28: /**
29: * Returns an type-specific iterator for this list.
30: * @return Field iterator
31: */
32: public FieldIterator fieldIterator();
33:
34: }
|