Back to project page EsTrains.
The source code is released under:
GNU General Public License
If you think the Android project EsTrains listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package es.trains.model; // w w w .j a va 2 s .co m import java.util.Date; /** * * @author Diego Pino <dpino@igalia.com> * */ public class Timetable { private Long id; private String origin; private String destination; private Date date; public Timetable() { } public Timetable(String origin, String destination, Date date) { this.origin = origin; this.destination = destination; this.date = date; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getOrigin() { return origin; } public String getDestination() { return destination; } public Date getDate() { return date; } }