7f08d0d78c33ab1e8d32fc93e0c2db67bef20b40
[unical.git] / src / ro / ieval / unical / EventRowContainer.java
1 package ro.ieval.unical;
2
3 import java.util.Date;
4
5 public 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.019752 seconds and 3 git commands to generate.