Back to project page PictureBookReader.
The source code is released under:
GNU General Public License
If you think the Android project PictureBookReader 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.uyghurdev.avaroid.picturebookreader; /*from ww w . ja v a 2s. c om*/ public class PlayOrder1 { private String id=null; private String picPath=null; private String soundPath=null; private String text=null; PlayOrder1 (){} void setId(String str){ id=str; } public String getId(){ return id; } void setPicPath(String str){ picPath="Picture/"+str; } public String getPicPath(){ return picPath; } void setSoundPath(String str){ soundPath="Sound/"+str; } public String getSoundPath(){ return soundPath; } void setText(String str){ text=str; } public String getText(){ return text; } }