Back to project page hts-cycle.
The source code is released under:
GNU General Public License
If you think the Android project hts-cycle 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 it.uniroma2.wifionoff; /*w w w . jav a 2s . c o m*/ public class AppHelper { private String AppSend; private String AppBroad; public AppHelper(String AppNameToSend, String AppBroadcast){ this.AppBroad=AppBroadcast; this.AppSend=AppNameToSend; } public String getBro(){ return this.AppBroad; } public String getName(){ return this.AppSend; } }