1 /*
2 * $Id: IStateChildrenList.java,v 1.1 2007/04/20 13:43:05 oeuillot Exp $
3 *
4 */
5 package org.rcfaces.core.internal.capability;
6
7 import java.util.List;
8
9 /**
10 *
11 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12 * @version $Revision: 1.1 $ $Date: 2007/04/20 13:43:05 $
13 */
14 public interface IStateChildrenList extends List {
15
16 void setChildren(List list);
17
18 int getState();
19 }