1 /*
2 * $Id: ILookAndFeelCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3 *
4 */
5
6 package org.rcfaces.core.component.capability;
7
8 /**
9 *
10 *
11 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
12 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
13 */
14 public interface ILookAndFeelCapability {
15
16 /**
17 * Sets a string value specifying the choosen look of the component.
18 *
19 * @param ID
20 * lookId
21 */
22 void setLookId(String ID);
23
24 /**
25 * Returns a string value specifying the choosen look of the component.
26 *
27 * @return lookId
28 */
29 String getLookId();
30 }