Back to project page LittlerIvis.
The source code is released under:
GNU General Public License
If you think the Android project LittlerIvis 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.RosalilaStudio.LittlerIves; /*w w w .ja va 2s.c om*/ public enum Path { C("characters"){ @Override public String getPath(String addToPath) { return path+"/"+addToPath; } }, I("images"){ @Override public String getPath(String addToPath) { return path+"/"+addToPath; } }, S("music"){ @Override public String getPath(String addToPath) { return path+"/"+addToPath; } }, M("levels"){ @Override public String getPath(String addToPath) { return path+"/"+addToPath; } }; public String path; private Path(String path) { this.path=path; } public abstract String getPath(String addToPath); }