![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fedy2.weather.data.Wrapper 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
The newest version!
/**
*
*/
package com.github.fedy2.weather.data;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlRootElement;
/**
* List wrapper.
* @author "Federico De Faveri [email protected]"
*/
@XmlRootElement
public class Wrapper {
private List items;
public Wrapper() {
items = new ArrayList();
}
public Wrapper(List items) {
this.items = items;
}
@XmlAnyElement(lax=true)
public List getItems() {
return items;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy