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