01: package vicazh.hyperpool.stream.net.http;
02:
03: import java.net.*;
04:
05: class IExplorerDoc {
06: String file;
07:
08: IExplorerDoc(String file) {
09: this .file = file;
10: }
11:
12: public String toString() {
13: try {
14: String[] o = PathStream.getPath(file);
15: return o[o.length - 1];
16: } catch (MalformedURLException e) {
17: }
18: return null;
19: }
20: }
|