All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fedy2.weather.data.Wrapper Maven / Gradle / Ivy

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