Changed layout some more, have to implement functions in Event still

This commit is contained in:
Yorick
2015-02-26 13:25:36 +00:00
parent 4e844bcd3b
commit be35fd46e4
3 changed files with 41 additions and 21 deletions
+22 -2
View File
@@ -112,11 +112,31 @@ public class Event implements Serializable {
this.stage = stage;
}
public GregorianCalendar getLength()
public int getLength()
{
GregorianCalendar length = endDate;
System.out.println(endDate.getTime());
return length;
return 10;
}
public int getStartTime()
{
return 1800;
}
public int getEndTime()
{
return 2100;
}
public void setStartTime(int time)
{
}
public void setEndTime(int time)
{
}
public String toString() {