1 17 package com.sun.syndication.io; 18 19 import com.sun.syndication.feed.WireFeed; 20 import com.sun.syndication.io.FeedException; 21 import org.jdom.Document; 22 23 33 public interface WireFeedParser { 34 35 43 public String getType(); 44 45 54 public boolean isMyType(Document document); 55 56 66 public WireFeed parse(Document document, boolean validate) throws IllegalArgumentException ,FeedException; 67 68 69 } 70 | Popular Tags |