1 2 3 4 5 6 7
class ConstructorsConfiguration { int x; @java.lang.SuppressWarnings("all") public ConstructorsConfiguration(final int x) { this.x = x; } }