Back to project page Aether-s-Notebook-Android-Client.
The source code is released under:
GNU General Public License
If you think the Android project Aether-s-Notebook-Android-Client 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 aethers.notebook.logger.managed.wifi; /* w w w .j a va 2 s . c o m*/ import aethers.notebook.R; import aethers.notebook.core.ConfigurationTemplate; import android.content.Context; public class Configuration extends ConfigurationTemplate { public static final String SHARED_PREFERENCES_NAME = "aethers.notebook.logger.managed.wifi.Configuration"; public Configuration(Context context) { super(context, SHARED_PREFERENCES_NAME); } public int getScanInterval() { return Integer.parseInt(getString( R.string.WifiLogger_Preferences_scanInterval, R.string.WifiLogger_Preferences_scanInterval_default)); } }