/*
 * 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 TimeDateType {
	private int id;
	private java.sql.Date dateType;
	private java.sql.Time timeType;
	private java.sql.Timestamp timestampType;
	private java.util.Calendar calendarType;
	private java.util.Calendar calendarDateType;

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public java.sql.Date getDateType() {
		return dateType;
	}

	public void setDateType(java.sql.Date dateType) {
		this.dateType = dateType;
	}

	public java.sql.Time getTimeType() {
		return timeType;
	}

	public void setTimeType(java.sql.Time timeType) {
		this.timeType = timeType;
	}

	public java.sql.Timestamp getTimestampType() {
		return timestampType;
	}

	public void setTimestampType(java.sql.Timestamp timestampType) {
		this.timestampType = timestampType;
	}

	public java.util.Calendar getCalendarType() {
		return calendarType;
	}

	public void setCalendarType(java.util.Calendar calendarType) {
		this.calendarType = calendarType;
	}

	public java.util.Calendar getCalendarDateType() {
		return calendarDateType;
	}

	public void setCalendarDateType(java.util.Calendar calendarDateType) {
		this.calendarDateType = calendarDateType;
	}
}

