blob: 87d6bc220fc819afe03a12a6a8a5ce0aab62aeb2 (
plain)
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
|
/*
* Header
*/
public interface Something {
/**
* Documented test constant, not part of API docs
*/
public final static int TEST_CONST = "test";
/**
* Test javadoc1
*/
void something();
/**
* Test javadoc2
*/
public void somethingElse();
/*
* Test comment
* comment line 2
*/
public void somethingStillElse();
void somethingNoComments();
public void somethingStillNoComments();
}
|