You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
418 B
28 lines
418 B
10 years ago
|
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 {
|
||
|
}
|
||
|
}
|