class ConstructorsConfiguration {
	int x;
	@java.lang.SuppressWarnings("all")
	public ConstructorsConfiguration(final int x) {
		this.x = x;
	}
}