1 17 package com.sun.syndication.feed.module; 18 19 import com.sun.syndication.feed.CopyFrom; 20 21 28 public interface DCSubject extends Cloneable ,CopyFrom { 29 35 String getTaxonomyUri(); 36 37 43 void setTaxonomyUri(String taxonomyUri); 44 45 51 String getValue(); 52 53 59 void setValue(String value); 60 61 68 public Object clone() throws CloneNotSupportedException ; 69 70 } 71 | Popular Tags |