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.
32 lines
423 B
32 lines
423 B
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 {
|
|
|
|
}
|
|
}
|
|
|