01: package sourceutils;
02:
03: public class TestIsDeprecated2 {
04:
05: /** @deprecated **/
06: public void methodDeprecated() {
07: }
08:
09: public void methodNotDeprecated() {
10: }
11:
12: /** @deprecated **/
13: private int fieldDeprecated;
14:
15: private int fieldNotDeprecated;
16:
17: /** @deprecated **/
18: public static class classDeprecated {
19: }
20:
21: public static class classNotDeprecated {
22: }
23:
24: }
|