Files
openide/plugins/java-decompiler/testData/Deprecations.txt
2014-06-20 19:05:00 +02:00

43 lines
640 B
Plaintext

//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
public class Deprecations {
/** @deprecated */
public int byComment;
/** @deprecated */
@Deprecated
public int byAnno;
public Deprecations() {
}
/** @deprecated */
public void byComment() {
}
/** @deprecated */
@Deprecated
public void byAnno() {
}
/** @deprecated */
@Deprecated
public static class ByAnno {
public ByAnno() {
}
}
/** @deprecated */
public static class ByComment {
public ByComment() {
}
}
}