1 /*
2 * $Id: IForCapability.java,v 1.3 2007/05/24 12:26:17 oeuillot Exp $
3 */
4 package org.rcfaces.core.component.capability;
5
6 /**
7 * A component's id that express the link between the two components.
8 *
9 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
10 * @version $Revision: 1.3 $ $Date: 2007/05/24 12:26:17 $
11 */
12 public interface IForCapability {
13
14 /**
15 * Returns a component's id that express the link between the two
16 * components.
17 *
18 * @return id for a linked component
19 */
20 String getFor();
21
22 /**
23 * Sets a component's id that express the link between the two components.
24 *
25 * @param forValue
26 * id for a linked component
27 */
28 void setFor(String forValue);
29 }