KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > syndication > fetcher > FetcherListener


1 package com.sun.syndication.fetcher;
2
3 import java.util.EventListener JavaDoc;
4
5
6 public interface FetcherListener extends EventListener JavaDoc {
7
8     /**
9      * <p>Called when a fetcher event occurs</p>
10      *
11      * @param event the event that fired
12      */

13     public void fetcherEvent(FetcherEvent event);
14     
15 }
16
Popular Tags