blob: b9e9b527b0cb3631c798e7954f5fe10b0f888d0f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2020 Dirk Fauth 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 https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Dirk Fauth <dirk.fauth@googlemail.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.nebula.widgets.nattable.dataset;
import java.util.Date;
public class EventData {
private String title;
private String description;
private String where;
private Date fromDate;
private Date toDate;
/**
* @return the title
*/
public String getTitle() {
return this.title;
}
/**
* @param title
* the title to set
*/
public void setTitle(String title) {
this.title = title;
}
/**
* @return the description
*/
public String getDescription() {
return this.description;
}
/**
* @param description
* the description to set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return the where
*/
public String getWhere() {
return this.where;
}
/**
* @param where
* the where to set
*/
public void setWhere(String where) {
this.where = where;
}
/**
* @return the fromDate
*/
public Date getFromDate() {
return this.fromDate;
}
/**
* @param fromDate
* the fromDate to set
*/
public void setFromDate(Date fromDate) {
this.fromDate = fromDate;
}
/**
* @return the toDate
*/
public Date getToDate() {
return this.toDate;
}
/**
* @param toDate
* the toDate to set
*/
public void setToDate(Date toDate) {
this.toDate = toDate;
}
}