View Javadoc

1   /*
2    * $Id: IRadioButtonIterator.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.RadioButtonComponent;
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 IRadioButtonIterator extends IComponentIterator {
14  
15      RadioButtonComponent next();
16  
17      RadioButtonComponent[] toArray();
18  }