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.profiles; //from w w w . j a va 2s . c o m public abstract class AbstractProfile { abstract public String getName(); // numbers should be in milliseconds abstract public int getWifiSensorDelay(); abstract public int getActivitySensorDelay(); abstract public int getTimeSensorDelay(); abstract public int getLowFrequencyDelay(); // Updating slow abstract public int getHighFrequencyDelay(); // Updating fast abstract public int getDefaultActivitySensorCutoff(); abstract public int getLowActivitySensorCutoff(); }