View Javadoc

1   /*
2    * $Id: IBorderTypeCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3    */
4   package org.rcfaces.core.component.capability;
5   
6   /**
7    * 
8    * A string that indicates the type of border the component should show.
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
11   * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
12   */
13  public interface IBorderTypeCapability {
14      String NONE_BORDER_TYPE_NAME = "none";
15  
16      /**
17       * Returns a string that indicates the type of border the component should
18       * show.
19       * 
20       * @return none|solid|relief|flat|rounded
21       */
22      String getBorderType();
23  
24      /**
25       * Sets a string that indicates the type of border the component should
26       * show.
27       * 
28       * @param borderType
29       *            none|solid|relief|flat|rounded
30       */
31      void setBorderType(String borderType);
32  }