home *** CD-ROM | disk | FTP | other *** search
- package sun.net.www;
-
- public class ProgressReport {
- public int recvd;
- public int expected;
- public int connections;
-
- public ProgressReport() {
- }
-
- public ProgressReport(int var1, int var2) {
- this.set(var1, var2, 0);
- }
-
- public ProgressReport set(int var1, int var2, int var3) {
- this.recvd = var1;
- this.expected = var2;
- this.connections = var3;
- return this;
- }
- }
-