Back to project page egotrip.
The source code is released under:
Apache License
If you think the Android project egotrip 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.myegotrip.egotrip.metadata; // ww w .j ava2 s . c om public class Icon extends GenericMetadata { public Icon(){ setType(EgotripMetadata.ICON); } public Icon(String iconType){ this(); setIconType(iconType); } @Override public String getServerContentAtInsertTime() { //icon type transferred inline return getLocalContent(); } public void setIconType(String icontype){ setLocalContent(icontype); } public String getIconType(String ictontype){ return getLocalContent(); } }