1 /*
2 * $Id: IPositionCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3 *
4 */
5 package org.rcfaces.core.component.capability;
6
7 /**
8 *
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 IPositionCapability {
14
15 /**
16 * Returns a string value (as specified by CSS) for the x position of the
17 * component.
18 *
19 * @return as specified by CSS
20 */
21 String getX();
22
23 /**
24 * Sets a string value (as specified by CSS) for the x position of the
25 * component.
26 *
27 * @param x
28 * as specified by CSS
29 */
30 void setX(String x);
31
32 /**
33 * Returns a string value (as specified by CSS) for the y position of the
34 * component.
35 *
36 * @return as specified by CSS
37 */
38 String getY();
39
40 /**
41 * Sets a string value (as specified by CSS) for the y position of the
42 * component.
43 *
44 * @param y
45 * as specified by CSS
46 */
47 void setY(String y);
48 }