View Javadoc

1   /*
2    * $Id: IWidthCapability.java,v 1.1 2007/04/20 13:43:05 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.1 $ $Date: 2007/04/20 13:43:05 $
10   */
11  public interface IWidthCapability {
12  
13      /**
14       * Returns a string value (as specified by CSS) for the width of the
15       * component.
16       * 
17       * @return width
18       */
19      String getWidth();
20  
21      /**
22       * Sets a string value (as specified by CSS) for the width of the component.
23       * 
24       * @param width
25       *            width
26       */
27      void setWidth(String width);
28  
29  }