01: package vicazh.hyperpool;
02:
03: import java.util.*;
04:
05: /**
06: * The group interface
07: *
08: * @author Victor Zhigunov
09: * @version 0.4.0
10: */
11: public interface GroupMBean extends LineMBean {
12: /**
13: * Set the objects
14: */
15: void setObjects(List<LineMBean> objects);
16:
17: /**
18: * Get the objects
19: */
20: List<LineMBean> getObjects();
21: }
|