View Javadoc

1   /*
2    * $Id: IFocusStyleClassCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3    * 
4    */
5   package org.rcfaces.core.component.capability;
6   
7   /**
8    * 
9    * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
10   * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
11   */
12  public interface IFocusStyleClassCapability {
13  
14      /**
15       * Specify the style class of the component.
16       * 
17       * @param cssClass
18       *            style class
19       */
20      void setFocusStyleClass(String cssClass);
21  
22      /**
23       * Returns the style class of the component.
24       * 
25       * @return style class
26       */
27      String getFocusStyleClass();
28  
29  }