Back to project page HRForecast-WFM.
The source code is released under:
Copyright 2014 Ahmed Shafei
If you think the Android project HRForecast-WFM 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 de.hrf.workforcemanagement.models; //from ww w . j av a 2s . c om import org.simpleframework.xml.Element; import org.simpleframework.xml.Root; @Root public class Metadata { @Element private String key; @Element private String value; public Metadata() { } public Metadata(String key, String value) { this.key = key; this.value = value; } public String getKey() { return this.key; } public String getValue() { return this.value; } public void setKey(String key) { this.key = key; } public void setValue(String value) { this.value = value; } public String toString() { return "Metadata: (key=" + this.getKey() + ", value=" + this.getValue() + ")"; } }