blob: 74671e594b7d24c6061fb15ab80474f82f24de22 [file] [log] [blame]
package targets.model.pc;
@SuppressWarnings("deprecation")
@Deprecated
public class Deprecation {
@Deprecated
public class deprecatedClass {}
@Deprecated
public enum deprecatedEnum { Val1 }
@Deprecated
public interface deprecatedInterface {}
@Deprecated
public String deprecatedField;
@Deprecated
void deprecatedMethod() {}
public class nonDeprecatedClass {}
public enum nonDeprecatedEnum { Val1 }
public interface nonDeprecatedInterface {}
public String nonDeprecatedField;
void nonDeprecatedMethod() {}
}