Package com.jalios.util
Class RssEvent
- java.lang.Object
-
- com.jalios.util.RssEvent
-
public class RssEvent extends java.lang.Object
RssEvent class- Author:
- Ludovic SMADJA
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RssEvent.Type
-
Constructor Summary
Constructors Constructor Description RssEvent(RssChannel channel, RssItem item, RssEvent.Type type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RssChannel
getChannel()
RssItem
getItem()
RssEvent.Type
getType()
void
setChannel(RssChannel channel)
void
setItem(RssItem item)
void
setType(RssEvent.Type type)
-
-
-
Constructor Detail
-
RssEvent
public RssEvent(RssChannel channel, RssItem item, RssEvent.Type type)
-
-
Method Detail
-
getChannel
public RssChannel getChannel()
- Returns:
- the channel
-
setChannel
public void setChannel(RssChannel channel)
- Parameters:
channel
- the channel to set
-
getItem
public RssItem getItem()
- Returns:
- the item
-
setItem
public void setItem(RssItem item)
- Parameters:
item
- the item to set
-
getType
public RssEvent.Type getType()
- Returns:
- the type
-
setType
public void setType(RssEvent.Type type)
- Parameters:
type
- the type to set
-
-