Back to project page simple-restaurant.
The source code is released under:
GNU General Public License
If you think the Android project simple-restaurant 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 pad.practica1.restaurante.restaurant; // www. j av a 2s .co m import java.util.ArrayList; import android.content.Context; public class RestaurantSQLiteFetcher implements RestaurantFetcher { @Override public ArrayList<Restaurant> getRestaurants(Context context) { // TODO Auto-generated method stub return null; } }