com.github.fedy2.weather.data.Rss Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yahoo-weather-java-api Show documentation
Show all versions of yahoo-weather-java-api Show documentation
A Java library for the yahoo weather RSS feed service
/**
*
*/
package com.github.fedy2.weather.data;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author "Federico De Faveri [email protected]"
*
*/
@XmlRootElement
public class Rss {
@XmlElement
protected Channel channel;
public Rss()
{}
/**
* Returns the channel.
* @return the channel
*/
public Channel getChannel() {
return channel;
}
}