1 /*
2 * $Id: IBorderCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3 */
4 package org.rcfaces.core.component.capability;
5
6 /**
7 * A boolean value that indicates if the component should show a border or not.
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 IBorderCapability {
13
14 /**
15 * Returns a boolean value that indicates if the component should show a
16 * border or not.
17 *
18 * @return border
19 */
20 boolean isBorder();
21
22 /**
23 * Sets a boolean value that indicates if the component should show a border
24 * or not.
25 *
26 * @param border
27 * boolean
28 */
29 void setBorder(boolean border);
30 }