01: package vicazh.hyperpool;
02:
03: import java.util.*;
04:
05: /**
06: * The graphic objects group
07: *
08: * @author Victor Zhigunov
09: * @version 0.4.0
10: */
11: public class IGroup extends ILine implements GroupMBean {
12:
13: private List<LineMBean> objects = new ArrayList<LineMBean>();
14:
15: public void setObjects(List<LineMBean> objects) {
16: this .objects = objects;
17: }
18:
19: public List<LineMBean> getObjects() {
20: return objects;
21: }
22:
23: }
|