All Downloads are FREE. Search and download functionalities are using the official Maven repository.

testdata.ShorthandNames Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2018 itemis AG (http://www.itemis.eu) and others.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package testdata;

/**
 * @author dietrich - Initial contribution and API
 */
public class ShorthandNames {

	private int fake;
	private int UPPER;
	private int lower;
	private int camelCase;
	private int UPper;
	private int x;

	private boolean UPPERBOOL;
	private boolean lowerbool;
	private boolean camelCaseBool;
	private boolean UPperBool;

	public int get() {
		return fake;
	}
	public void set(int fake) {
		this.fake = fake;
	}
	public boolean is() {
		return true;
	}
	public int getUPPER() {
		return UPPER;
	}
	public void setUPPER(int uPPER) {
		UPPER = uPPER;
	}
	public int getLower() {
		return lower;
	}
	public void setLower(int lower) {
		this.lower = lower;
	}
	public int getCamelCase() {
		return camelCase;
	}
	public void setCamelCase(int cameCase) {
		this.camelCase = cameCase;
	}
	public int getUPper() {
		return UPper;
	}
	public void setUPper(int UPper) {
		this.UPper = UPper;
	}
	public int getX() {
		return x;
	}
	public void setX(int x) {
		this.x = x;
	}
	public boolean isUPPERBOOL() {
		return UPPERBOOL;
	}
	public void setUPPERBOOL(boolean uPPERBOOL) {
		UPPERBOOL = uPPERBOOL;
	}
	public boolean isLowerbool() {
		return lowerbool;
	}
	public void setLowerbool(boolean lowerbool) {
		this.lowerbool = lowerbool;
	}
	public boolean isCamelCaseBool() {
		return camelCaseBool;
	}
	public void setCamelCaseBool(boolean camelCaseBool) {
		this.camelCaseBool = camelCaseBool;
	}
	public boolean isUPperBool() {
		return UPperBool;
	}
	public void setUPperBool(boolean UPperBool) {
		this.UPperBool = UPperBool;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy