View Javadoc

1   /*
2    * $Id: ILayoutPositionCapability.java,v 1.1.2.1 2011/01/14 10:17:28 oeuillot Exp $
3    */
4   package org.rcfaces.core.component.capability;
5   
6   /**
7    * 
8    * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9    * @version $Revision: 1.1.2.1 $ $Date: 2011/01/14 10:17:28 $
10   */
11  public interface ILayoutPositionCapability {
12      int getLeft();
13  
14      void setLeft(int left);
15  
16      int getRight();
17  
18      void setRight(int right);
19  
20      int getTop();
21  
22      void setTop(int top);
23  
24      int getBottom();
25  
26      void setBottom(int bottom);
27  }