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 Relation Managers
15: *
16: * @author Pierre van Rooden
17: * @version $Id: RelationManagerList.java,v 1.7 2007/02/10 15:47:42 nklasens Exp $
18: */
19: public interface RelationManagerList extends
20: BridgeList<RelationManager> {
21:
22: /**
23: * Returns the RelationManager at the indicated postion in the list
24: * @param index the position of the RelationManager to retrieve
25: * @return RelationManager at the indicated postion
26: */
27: public RelationManager getRelationManager(int index);
28:
29: /**
30: * Returns an type-specific iterator for this list.
31: * @return RelationManager iterator
32: */
33: public RelationManagerIterator relationManagerIterator();
34:
35: }
|