View Javadoc

1   /*
2    * $Id: IHeightCapability.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 IHeightCapability {
12  
13      /**
14       * Returns a string value (as specified by CSS) for the height of the
15       * component.
16       * 
17       * @return height
18       */
19      String getHeight();
20  
21      /**
22       * Sets a string value (as specified by CSS) for the height of the
23       * component.
24       * 
25       * @param height
26       *            height
27       */
28      void setHeight(String height);
29  }