01: package vicazh.hyperpool.stream.net;
02:
03: /**
04: * This class is the superclass of all net list selectors
05: *
06: * @author Victor Zhigunov
07: * @version 0.4.0
08: */
09: public class ListSelector extends vicazh.hyperpool.stream.ListSelector {
10: public vicazh.hyperpool.stream.Connection getConnection() {
11: return new Connection(this);
12: }
13: }
|