1 11 12 package org.eclipse.update.internal.model; 13 14 import java.util.Date ; 15 16 import org.eclipse.update.core.Site; 17 18 23 public class SiteWithTimestamp extends Site implements ITimestamp { 24 25 private Date timestamp; 26 27 32 33 public Date getTimestamp() { 34 return timestamp; 35 } 36 37 public void setTimestamp(Date timestamp) { 38 this.timestamp = timestamp; 39 40 } 41 264 } 265 | Popular Tags |