-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathTest.java
More file actions
44 lines (28 loc) · 780 Bytes
/
Test.java
File metadata and controls
44 lines (28 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import java.io.IOException;
import java.util.List;
@SomeAnnotation
public class Test extends A implements B, C, D {
float d;
private Integer a, b;
public final String c;
protected short s;
public <T> A(int i, final char[][] c, double... d) {
int a, b;
}
public <T> double f(final T t) throws IOException {
}
private static final class E<T extends V, U> extends F<T, U> implements G {
public static void h(char[] arr, final int NUM, List<T> list, long... moreParams) {
}
}
}
@interface SomeAnnotation {
int someValue() default 0;
}
protected interface OtherI<T> extends Some1I, Some2I, Some3I {
public final int NUM1, NUM2;
static byte[] someMethod(boolean b, T... params);
}
private enum SomethingE implements SomethingElseI {
A, B, C, D, E;
}