blob: 3280ad743899d0b4804a0a2c8b36d80e9c76ad83 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Original authors and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.dataset.person;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
/**
* Object representation of a row in the table
*/
public class SimplePerson {
private int id;
private String name;
private Date birthDate;
public SimplePerson(int id, String name, Date birthDate) {
this.id = id;
this.name = name;
this.birthDate = birthDate;
}
public int getId() {
return this.id;
}
public String getName() {
return this.name;
}
public Date getBirthDate() {
return this.birthDate;
}
public static List<SimplePerson> getList() {
return Arrays.asList(
new SimplePerson(100, "Mickey Mouse", new Date(1000000)), new SimplePerson(
110, "Batman", new Date(2000000)), new SimplePerson(120,
"Bender", new Date(3000000)), new SimplePerson(130,
"Cartman", new Date(4000000)), new SimplePerson(140,
"Dogbert", new Date(5000000)));
}
}