-
-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathtest.java
More file actions
44 lines (24 loc) · 701 Bytes
/
test.java
File metadata and controls
44 lines (24 loc) · 701 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
package mymod;
import stuff1;
import stuff2;
@class_annot_1
@class_annot_2
public class MyClass { // {{CONTEXT}}
// {{CURSOR}}
@method_annot_1
@method_annot_2
public void my_method(int param) { // {{CONTEXT}}
// {{CURSOR}}
if (true) { // {{CONTEXT}}
// {{CURSOR}}
for (int i = 0; i < 10; i++) { // {{CONTEXT}}
// {{CURSOR}}
for (int var : iterable) { // {{CONTEXT}}
// {{CURSOR}}
System. // {{CONTEXT}}
out.println("a message"); // {{CURSOR}}
}
}
}
}
}