1 package tests.jfun.yan.xml.models; 2 3 import java.util.Date ; 4 5 public class Event { 6 private final String description; 7 private final Date time; 8 public Event(Date time, String description) { 9 this.description = description; 10 this.time = time; 11 } 12 public String getDescription() { 13 return description; 14 } 15 public Date getTime() { 16 return time; 17 } 18 19 } 20 | Popular Tags |