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; /*from ww w . ja v a 2 s .c o m*/ public class Text extends GenericMetadata { public Text(){ setType(EgotripMetadata.TEXT); } public Text(String text){ this(); setText(text); } public void setText(String text){ setLocalContent(text); } public String getText(){ return getLocalContent(); } @Override public String getServerContentAtInsertTime() { return getLocalContent(); } }