01: package java.util;
02:
03: import java.io.Serializable;
04:
05: public class Random implements Serializable {
06: public Random() {
07: }
08:
09: public Random(long seed) {
10: }
11:
12: public synchronized void setSeed(long seed) {
13: }
14:
15: protected synchronized int next(int bits) {
16: }
17:
18: public void nextBytes(byte[] bytes) {
19: }
20:
21: public int nextInt() {
22: }
23:
24: public int nextInt(int n) {
25: }
26:
27: public long nextLong() {
28: }
29:
30: public boolean nextBoolean() {
31: }
32:
33: public float nextFloat() {
34: }
35:
36: public double nextDouble() {
37: }
38:
39: public synchronized double nextGaussian() {
40: }
41: }
|