01: /*
02: * Created on 8-lug-2005
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package org.jtestcase.plugin.guimodel.intf;
08:
09: import java.util.List;
10:
11: /**
12: * @author Fausto
13: *
14: * TODO To change the template for this generated type comment go to
15: * Window - Preferences - Java - Code Style - Code Templates
16: */
17: public interface IUINodeSupport {
18:
19: public static final String IMPL = "org.jtestcase.plugin.guimodel.intf.UINodeSupport";
20:
21: public abstract IUINode getNode();
22:
23: public abstract List getNodes();
24:
25: public abstract void remove(IUINode toRemove);
26:
27: public abstract void add(IUINode toAdd);
28:
29: public abstract void setNode(IUINode inode);
30:
31: /**
32: * Answer the total number of items the receiver contains.
33: */
34: public abstract int size();
35: }
|