Back to project page RUflow.
The source code is released under:
GNU General Public License
If you think the Android project RUflow 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 is.ru.app; //from ww w.j a v a2 s. c o m import java.util.List; /** * Created by rur on 15.9.2014. */ public class MapPack{ private String name; private String description; private String file; MapPack(String mName, String mDescription, String mFile){ name = mName; description = mDescription; file = mFile; } String getName(){return name;} String getDescription(){return description;} String getFile(){return file;} public String toString(){ return "" + getName() + " : " + getDescription(); } }