Back to project page TravelReminder.
The source code is released under:
GNU General Public License
If you think the Android project TravelReminder 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.ganterd.travelreminder.interfaces; /*from www .ja va 2s . c om*/ import java.util.Calendar; import com.google.android.gms.maps.model.LatLng; public interface IReminder { public void setReminderID(String newID); public void setReminderName(String newName); public void setReminderLeadTimeMinutes(int minutes); public void setReminderLeadTimeHours(int hours); public void setOrigin(double[] o); public void setOriginLatLng(LatLng o); public void setDestination(double[] d); public void setDestinationLatLng(LatLng d); public void setArrivalTime(Calendar t); public void setArrivalTime(int hourOfDay, int minutes); public String getReminderID(); public String getReminderName(); public int getReminderLeadTimeMinutes(); public int getReminderLeadTimeHours(); public double[] getOrigin(); public LatLng getOriginLatLng(); public double[] getDestination(); public LatLng getDestinationLatLng(); public Calendar getArrivalTime(); public int getArrivalTimeHour(); public int getArrivalTimeMinutes(); }