01: package vicazh.hyperpool.stream;
02:
03: import vicazh.hyperpool.*;
04:
05: /**
06: * The graphic terminator
07: *
08: * @author Victor Zhigunov
09: * @version 0.4.0
10: */
11: public class ITerminatorService extends IService implements
12: TerminatorServiceMBean {
13: public ITerminatorService(String name) {
14: super (TerminatorServiceMBean.class, name);
15: }
16: }
|