/*
 * Copyright 2002-2008 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
*/
package anyframe.sample.model.datatype;

public class JavaDataType {
	private int id;
	private int intType;
	private long longType;
	private short shortType;
	private float floatType;
	private double doubleType;
	private java.math.BigDecimal bigDecimalType;
	private String stringType;
	private char charType;
	private byte byteType;
	private boolean booleanType;
	private boolean yesNoType;
	private boolean trueFalseType;

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public int getIntType() {
		return intType;
	}

	public void setIntType(int intType) {
		this.intType = intType;
	}

	public long getLongType() {
		return longType;
	}

	public void setLongType(long longType) {
		this.longType = longType;
	}

	public short getShortType() {
		return shortType;
	}

	public void setShortType(short shortTypeortType) {
		this.shortType = shortTypeortType;
	}

	public float getFloatType() {
		return floatType;
	}

	public void setFloatType(float floatType) {
		this.floatType = floatType;
	}

	public double getDoubleType() {
		return doubleType;
	}

	public void setDoubleType(double doubleType) {
		this.doubleType = doubleType;
	}

	public java.math.BigDecimal getBigDecimalType() {
		return bigDecimalType;
	}

	public void setBigDecimalType(java.math.BigDecimal bigDecimalType) {
		this.bigDecimalType = bigDecimalType;
	}

	public String getStringType() {
		return stringType;
	}

	public void setStringType(String stringType) {
		this.stringType = stringType;
	}

	public char getCharType() {
		return charType;
	}

	public void setCharType(char charType) {
		this.charType = charType;
	}

	public byte getByteType() {
		return byteType;
	}

	public void setByteType(byte byteType) {
		this.byteType = byteType;
	}

	public boolean isBooleanType() {
		return booleanType;
	}

	public void setBooleanType(boolean booleanType) {
		this.booleanType = booleanType;
	}

	public boolean isYesNoType() {
		return yesNoType;
	}

	public void setYesNoType(boolean yesNoType) {
		this.yesNoType = yesNoType;
	}

	public boolean isTrueFalseType() {
		return trueFalseType;
	}

	public void setTrueFalseType(boolean trueFalseType) {
		this.trueFalseType = trueFalseType;
	}
}

