Back to project page cirrus.
The source code is released under:
Apache License
If you think the Android project cirrus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.inktomi.cirrus.forecast; //from w ww.j ava 2 s . co m import org.simpleframework.xml.Element; @Element public class Location { @Element(name = "location-key", required = true) public String locationKey; @Element(required = false) public String description; @Element(required = false) public Point point; @Element(name = "nws-zone", required = false) public NwsZone nwsZone; @Element(required = false) public Area area; @Element(required = false) public City city; @Element(name = "area-description", required = false) public String areaDescription; @Element(required = false) public Height height; @Element(required = false) public Level level; @Element(required = false) public Layer layer; }