blob: 4a7d31cb49a4a2a7547d6819de618e9f51933f6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package com.android.tests.basicJavaProject;
import java.util.Random;
public class Foo {
public static int FOO = 42;
public int getFoo() {
return FOO;
}
public int getRandomFoo() {
Random r = new Random(System.currentTimeMillis());
return r.nextInt(FOO);
}
}
|