Back to project page android-switch-env.
The source code is released under:
Apache License
If you think the Android project android-switch-env 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 cn.trinea.android.switchenv.entity; //ww w . j av a 2 s . c o m /** * App * * @author <a href="http://www.trinea.cn" target="_blank">Trinea</a> 2013-7-31 */ public class App { private String packageName; private String appName; public App(String packageName, String appName) { this.packageName = packageName; this.appName = appName; } public String getPackageName() { return packageName; } public void setPackageName(String packageName) { this.packageName = packageName; } public String getAppName() { return appName; } public void setAppName(String appName) { this.appName = appName; } }