misc
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.news / src / net / sourceforge / phpeclipse / news / RssListener.java
1 /*
2  * Created on 15 mai 2004
3  * Copyright 2004 J�r�me N�gre
4  */
5 package net.sourceforge.phpeclipse.news;
6
7 import java.util.ArrayList;
8
9 /**
10  * @author J�r�me N�gre
11  */
12 public interface RssListener {
13         
14         public void onChannelListChanged(ArrayList channels);
15         
16         public void onChannelStatusChanged(Channel channel);
17
18         public void onChannelSelected(Channel channel);
19
20         public void onItemStatusChanged(Item tiem);
21         
22         public void onItemSelected(Item tiem);
23 }