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; // w w w . j av a2 s. c om /** * Image Metadata * localContent should be the imageURI to the image in the gallery * * @author gryphius * */ public class Image extends GenericMetadata { public Image(){ setType(EgotripMetadata.IMAGE); } public Image(String imagePath){ this(); setImagePath(imagePath); } public String getImagePath(){ return getLocalContent(); } public void setImagePath(String path){ setLocalContent(path); } @Override public String getServerContentAtInsertTime() { //server content is not available at insert time return null; } }