1 17 package com.sun.syndication.feed.synd; 18 19 import com.sun.syndication.feed.CopyFrom; 20 import com.sun.syndication.feed.module.Module; 21 22 import java.util.Date ; 23 import java.util.List ; 24 25 31 public interface SyndEntry extends Cloneable ,CopyFrom { 32 33 45 String getUri(); 46 47 57 void setUri(String uri); 58 59 65 String getTitle(); 66 67 73 void setTitle(String title); 74 75 81 String getLink(); 82 83 89 void setLink(String link); 90 91 97 SyndContent getDescription(); 98 99 105 void setDescription(SyndContent description); 106 107 114 List getContents(); 115 116 123 void setContents(List contents); 124 125 133 Date getPublishedDate(); 134 135 143 void setPublishedDate(Date publishedDate); 144 145 153 String getAuthor(); 154 155 163 void setAuthor(String author); 164 165 174 List getCategories(); 175 176 185 void setCategories(List categories); 186 187 193 public Module getModule(String uri); 194 195 202 List getModules(); 203 204 211 void setModules(List modules); 212 213 220 public Object clone() throws CloneNotSupportedException ; 221 222 } 223 | Popular Tags |