Back to project page Rejsekort-Reminder.
The source code is released under:
GNU General Public License
If you think the Android project Rejsekort-Reminder 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.example.publictransportation.sensors; /*from w w w. jav a 2s . co m*/ public class WifiGroup { String label; String[] whitelistedSsids; public WifiGroup(String label, String[] whitelistedSsids) { this.label = label; this.whitelistedSsids = whitelistedSsids; } }