aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WithMethodMarkedDeprecatedAnnOnly.java
blob: 1dcee0d86a90fd58099201d1987d715446f7a499 (plain)
1
2
3
4
5
6
7
8
9
10
11
import lombok.With;
class WithMethodMarkedDeprecatedAnnOnly {
  @Deprecated @With int annotation;
  WithMethodMarkedDeprecatedAnnOnly(int annotation) {
    super();
  }
  public @java.lang.Deprecated @java.lang.SuppressWarnings("all") WithMethodMarkedDeprecatedAnnOnly withAnnotation(final int annotation) {
    return ((this.annotation == annotation) ? this : new WithMethodMarkedDeprecatedAnnOnly(annotation));
  }
}