home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / rmi / server / ObjID$InsecureRandom.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  500 b   |  21 lines

  1. package java.rmi.server;
  2.  
  3. import java.util.Random;
  4.  
  5. class ObjID$InsecureRandom extends Random {
  6.    private static final long serialVersionUID = -698228687531590145L;
  7.    private long nextNum;
  8.  
  9.    private ObjID$InsecureRandom() {
  10.    }
  11.  
  12.    public synchronized long nextLong() {
  13.       return (long)(this.nextNum++);
  14.    }
  15.  
  16.    // $FF: synthetic method
  17.    ObjID$InsecureRandom(ObjID.1 var1) {
  18.       this();
  19.    }
  20. }
  21.