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; /*w ww . j a v a 2 s .co m*/ import org.simpleframework.xml.Element; @Element public class Source { @Element(name = "more-information", required = true) public String moreInformation; @Element(name = "production-center", required = false) public ProductionCenter productionCenter; @Element(required = false) public String disclaimer; @Element(required = false) public String credit; @Element(name = "credit-logo", required = false) public String creditLogo; @Element(required = false) public String feedback; }