Delete EventComparator
[unical.git] / src / ro / ieval / unical / EventRowContainer.java
CommitLineData
ecee6932
PT
1package ro.ieval.unical;
2
3import java.util.Date;
4
5public class EventRowContainer {
6 public String name;
7 public Date dtstart,dtend;
8 public int id;
9 public EventRowContainer(int id,String n,long ds,long de) {
10 // Container used to hold information for adapter
11 this.id=id;
12 this.name=n;
13 this.dtstart=new Date(ds);
14 this.dtend=new Date(de);
15 }
16 public EventRowContainer() {
17 }
18}
This page took 0.012376 seconds and 4 git commands to generate.