1 17 package com.sun.syndication.feed.synd; 18 19 import com.sun.syndication.feed.CopyFrom; 20 21 27 public interface SyndImage extends Cloneable ,CopyFrom { 28 34 String getTitle(); 35 36 42 void setTitle(String title); 43 44 50 String getUrl(); 51 52 58 void setUrl(String url); 59 60 66 String getLink(); 67 68 74 void setLink(String link); 75 76 82 String getDescription(); 83 84 90 void setDescription(String description); 91 92 99 public Object clone() throws CloneNotSupportedException ; 100 101 } 102 | Popular Tags |