KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > tigris > scarab > feeds > Feed


1 /*
2  * Created on Dec 3, 2004
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.tigris.scarab.feeds;
8
9 import java.io.IOException JavaDoc;
10
11 import org.apache.torque.TorqueException;
12
13 import com.sun.syndication.feed.synd.SyndFeed;
14 import com.sun.syndication.io.FeedException;
15
16 /**
17  * @author Eric Pugh
18  *
19  * TODO To change the template for this generated type comment go to
20  * Window - Preferences - Java - Code Style - Code Templates
21  */

22 public interface Feed {
23     public abstract SyndFeed getFeed() throws IOException JavaDoc, FeedException,
24             TorqueException, Exception JavaDoc;
25 }
Popular Tags