1 17 package com.sun.syndication.feed.synd; 18 19 import com.sun.syndication.feed.CopyFrom; 20 21 22 28 public interface SyndContent extends Cloneable ,CopyFrom { 29 37 String getType(); 38 39 47 void setType(String type); 48 49 55 String getValue(); 56 57 63 void setValue(String value); 64 65 72 public Object clone() throws CloneNotSupportedException ; 73 74 } 75 | Popular Tags |