summaryrefslogtreecommitdiffstats
path: root/testData/results/TestDeprecations.dec
blob: 9dd5737d2d78fad18fff0d9e06cd33db45e831b3 (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
package pkg;


public class TestDeprecations {

   /** @deprecated */
   public int byComment;
   /** @deprecated */
   @Deprecated
   public int byAnno;


   /** @deprecated */
   public void byComment() {
   }

   /** @deprecated */
   @Deprecated
   public void byAnno() {
   }

   /** @deprecated */
   @Deprecated
   public static class ByAnno {

   }

   /** @deprecated */
   public static class ByComment {

   }
}