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; //from w w w . j ava 2 s . co m import org.simpleframework.xml.Default; import org.simpleframework.xml.DefaultType; import org.simpleframework.xml.Element; /** * User: slavino Date: 10/24/13 Time: 7:10 PM */ @Default(DefaultType.FIELD) public class IconStyle { @Element(name = "Icon") private Icon icon; public Icon getIcon() { return icon; } public void setIcon(Icon icon) { this.icon = icon; } @Override public String toString() { return "IconStyle{" + "icon=" + icon + '}'; } }