1 /*
2 * $Id: ILayoutManagerCapability.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 ILayoutManagerCapability {
12 int INHERITED_LAYOUT_TYPE = 0;
13
14 int NONE_LAYOUT_TYPE = 1;
15
16 int ABSOLUTE_LAYOUT_TYPE = 2;
17
18 int getLayoutType();
19
20 void setLayoutType(int type);
21 }