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 w ww .j ava 2s. c o m /** * Created by rur on 15.9.2014. */ public class Pack { private String mName; private String mDescription; private String mFile; Pack( String name, String description, String file ) { mName = name; mDescription = description; mFile = file; } String getName() { return mName; } String getDescription() { return mDescription; } String getFile() { return mFile; } }