home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Extras / OSpace / jgl.exe / jgl_2_0 / COM / objectspace / jgl / Allocator.class (.txt) next >
Encoding:
Java Class File  |  1997-03-12  |  342 b   |  12 lines

  1. package COM.objectspace.jgl;
  2.  
  3. final class Allocator {
  4.    public static int pageSize() {
  5.       return 1024;
  6.    }
  7.  
  8.    public static int maxSize() {
  9.       return Integer.MAX_VALUE;
  10.    }
  11. }
  12.