View Javadoc

1   /*
2    * $Id: ITextPositionCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3    * 
4    */
5   package org.rcfaces.core.component.capability;
6   
7   /**
8    * A string value specifying the position of the text in the component :
9    * <ul>
10   * <li> left </li>
11   * <li> right </li>
12   * <li> top </li>
13   * <li> bottom </li>
14   * </ul>
15   * 
16   * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
17   * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
18   */
19  public interface ITextPositionCapability extends
20          IHorizontalTextPositionCapability {
21  
22      int TOP_POSITION = 0x20;
23  
24      int BOTTOM_POSITION = 0x40;
25  }