/**
 * TodoTask.java
 * Copyright (C) 2005 Frederic Laurent
 * http://www.opikanoba.org
 *
 * This file is part of the Mapping XML with Hibernate
 *
 * Lantern is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This exemple is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 **/
package bean;

import java.util.Calendar;
import java.util.Date;


public class TodoTask {
	protected int todoid;
	protected String summary;
	protected String description;
	protected int priority;
	protected Calendar doneDate;

	

	/**
	 * @return Returns the description.
	 */
	public String getDescription() {
		return description;
	}
	/**
	 * @param description The description to set.
	 */
	public void setDescription(String description) {
		this.description = description;
	}
	/**
	 * @return Returns the doneDate.
	 */
	public Calendar getDoneDate() {
		return doneDate;
	}
	/**
	 * @param doneDate The doneDate to set.
	 */
	public void setDoneDate(Calendar doneDate) {
		this.doneDate = doneDate;
	}
	/**
	 * @return Returns the priority.
	 */
	public int getPriority() {
		return priority;
	}
	/**
	 * @param priority The priority to set.
	 */
	public void setPriority(int priority) {
		this.priority = priority;
	}
	/**
	 * @return Returns the summary.
	 */
	public String getSummary() {
		return summary;
	}
	/**
	 * @param summary The summary to set.
	 */
	public void setSummary(String summary) {
		this.summary = summary;
	}
	/**
	 * @return Returns the todoid.
	 */
	public int getTodoid() {
		return todoid;
	}
	/**
	 * @param todoid The todoid to set.
	 */
	public void setTodoid(int todoid) {
		this.todoid = todoid;
	}
}
