home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 June / CHIPHEFT062001.ISO / browser / nc32lyc / comm.z / java40.jar / netscape / net / CacheObject.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-08-15  |  821 b   |  35 lines

  1. package netscape.net;
  2.  
  3. public class CacheObject {
  4.    private String filename;
  5.    private String name;
  6.    private int numItems;
  7.    private int size;
  8.    private int maxSize;
  9.    private boolean open = false;
  10.  
  11.    public String GetFilename() {
  12.       return this.filename;
  13.    }
  14.  
  15.    public String GetName() {
  16.       return this.name;
  17.    }
  18.  
  19.    public int GetNumItems() {
  20.       return this.numItems;
  21.    }
  22.  
  23.    public int GetSize() {
  24.       return this.size;
  25.    }
  26.  
  27.    public int GetMaxSize() {
  28.       return this.maxSize;
  29.    }
  30.  
  31.    public boolean IsOpen() {
  32.       return this.open;
  33.    }
  34. }
  35.