1 26 27 29 package de.nava.informa.core; 30 31 import java.util.Date ; 32 33 48 public interface FeedIF extends WithTitleMIF, WithLocationMIF, WithChannelMIF, WithSiteMIF { 49 String getText(); 50 void setText(String text); 51 52 String getContentType(); 53 void setContentType(String contentType); 54 55 Date getDateFound(); 56 void setDateFound(Date dateFound); 57 58 Date getLastUpdated(); 59 void setLastUpdated(Date lastUpdated); 60 } 61 | Popular Tags |