Back to project page radioExpresWidget.
The source code is released under:
GNU General Public License
If you think the Android project radioExpresWidget 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.hustaty.radioexpres.widget.model; /* ww w . jav a 2 s . c o m*/ import org.simpleframework.xml.Default; import org.simpleframework.xml.DefaultType; import org.simpleframework.xml.Element; /** * User: slavino Date: 10/24/13 Time: 7:09 PM */ @Default(DefaultType.FIELD) public class Point { @Element(name = "coordinates") private String coordinates; public String getCoordinates() { return coordinates; } public void setCoordinates(String coordinates) { this.coordinates = coordinates; } @Override public String toString() { return "Point{" + "coordinates='" + coordinates + '\'' + '}'; } }