diff --git a/LocationLib/bin/locationlib.jar b/LocationLib/bin/locationlib.jar index 90f9c28..6db5836 100644 Binary files a/LocationLib/bin/locationlib.jar and b/LocationLib/bin/locationlib.jar differ diff --git a/LocationLib/src/com/TwentyCodes/android/fragments/DirectionsListFragment.java b/LocationLib/src/com/TwentyCodes/android/fragments/DirectionsListFragment.java index f1d453d..2daa46b 100644 --- a/LocationLib/src/com/TwentyCodes/android/fragments/DirectionsListFragment.java +++ b/LocationLib/src/com/TwentyCodes/android/fragments/DirectionsListFragment.java @@ -13,7 +13,6 @@ import android.view.View; import android.widget.ArrayAdapter; import android.widget.ListView; -import com.TwentyCodes.android.location.OnDirectionSelectedListener; import com.TwentyCodes.android.overlays.DirectionsOverlay; import com.google.android.maps.GeoPoint; @@ -24,6 +23,21 @@ import com.google.android.maps.GeoPoint; */ public class DirectionsListFragment extends ListFragment { + /** + * A simple interfrace for a directions list fragment + * @author ricky barrette + */ + public interface OnDirectionSelectedListener { + + /** + * Called when the user selects a direction from a directions list + * @param point + * @author ricky barrette + */ + public void onDirectionSelected(GeoPoint point); + + } + private OnDirectionSelectedListener mListener; private ArrayList mPoints; diff --git a/LocationLib/src/com/TwentyCodes/android/location/OnDirectionSelectedListener.java b/LocationLib/src/com/TwentyCodes/android/location/OnDirectionSelectedListener.java deleted file mode 100644 index 8f546f8..0000000 --- a/LocationLib/src/com/TwentyCodes/android/location/OnDirectionSelectedListener.java +++ /dev/null @@ -1,24 +0,0 @@ -/** - * OnDirectionSelectedListener.java - * @date Mar 5, 2012 - * @author ricky barrette - * @author Twenty Codes, LLC - */ -package com.TwentyCodes.android.location; - -import com.google.android.maps.GeoPoint; - -/** - * A simple interfrace for a directions list fragment - * @author ricky barrette - */ -public interface OnDirectionSelectedListener { - - /** - * Called when the user selects a direction from a directions list - * @param point - * @author ricky barrette - */ - public void onDirectionSelected(GeoPoint point); - -}