Back to project page Android-APIShowCaseApp.
The source code is released under:
MIT License
If you think the Android project Android-APIShowCaseApp 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 net.gmc.connect.task; /* w w w .j a v a2s .c om*/ import org.jinouts.xml.bind.annotation.XmlAccessType; import org.jinouts.xml.bind.annotation.XmlAccessorType; import org.jinouts.xml.bind.annotation.XmlElement; import org.jinouts.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "inputData", propOrder = { "name", "surname" }) public class InputData { @XmlElement(name = "name") protected String name; @XmlElement(name = "surname") protected String surname; public String getName() { return name; } public void setName(String value) { this.name = value; } public String getSurname() { return surname; } public void setSurname(String value) { this.surname = value; } }