Back to project page LASA-Schedules.
The source code is released under:
GNU General Public License
If you think the Android project LASA-Schedules 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 com.asdar.lasaschedules; /* w w w. j av a 2 s . c o m*/ /** * Created by Ehsan on 4/21/2014. */ public class ScheduleElement { private String event; private int start; private int end; public ScheduleElement( int s, int end, String e){ event = e; start = s; this.end = end; } public String getEvent() { return event; } public void setEvent(String event) { this.event = event; } public int getStart() { return start; } public void setStart(int time) { this.start = time; } public int getEnd() { return end; } public void setEnd(int end) { this.end = end; } }