View Javadoc

1   /*
2    * $Id: IRadioValueCapability.java,v 1.3 2007/05/24 12:26:17 oeuillot Exp $
3    */
4   package org.rcfaces.core.component.capability;
5   
6   /**
7    * 
8    * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9    * @version $Revision: 1.3 $ $Date: 2007/05/24 12:26:17 $
10   */
11  public interface IRadioValueCapability extends IRadioGroupCapability {
12  
13      /**
14       * Returns the object associated with the group valued for this component.
15       * 
16       * @return value object
17       */
18      Object getRadioValue();
19  
20      /**
21       * Sets the object associated with the group valued for this component.
22       * 
23       * @param value
24       *            value object
25       */
26      void setRadioValue(Object value);
27  }