01: package vicazh.hyperpool.stream.net.http.html;
02:
03: import java.io.*;
04: import vicazh.hyperpool.stream.*;
05: import vicazh.hyperpool.stream.Stream;
06:
07: class AntivirusClamAVConnection extends Connection {
08:
09: AntivirusClamAVConnection(Element element) {
10: super (element);
11: }
12:
13: public void setClient(OutputStream outputstream) {
14: setClient(new Stream(this , outputstream));
15: }
16:
17: public void setServer(OutputStream outputstream) {
18: setServer(new AntivirusClamAVStream(this ));
19: }
20:
21: boolean c;
22:
23: synchronized public void close() {
24: c = true;
25: super .close();
26: notifyAll();
27: }
28:
29: String result;
30:
31: }
|