1 /*
2 * $Id: ITabIterator.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3 *
4 */
5 package org.rcfaces.core.component.iterator;
6
7 import org.rcfaces.core.component.TabComponent;
8
9 /**
10 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
11 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
12 */
13 public interface ITabIterator extends IComponentIterator {
14 TabComponent next();
15
16 TabComponent[] toArray();
17 }