Commit 03449409 authored by jake.ejraee's avatar jake.ejraee

Delete JapaneseAsyncTask.java

parent aeac01a2
package com.example.soulfood_assignment2;
import android.os.AsyncTask;
import android.util.Log;
import java.util.ArrayList;
public class JapaneseAsyncTask extends AsyncTask<Void, Void, ArrayList<String>> {
public ArrayList<String> japaneseResults;
@Override
protected ArrayList<String> doInBackground(Void... params) {
databaseInterface dbi = new databaseInterface();
japaneseResults = dbi.getPlaylistByAttributes(databaseInterface.Cuisine.japanese, databaseInterface.Vibe.any, databaseInterface.Time.any);
for(int i = 0; i < japaneseResults.size(); i++) {
Log.d("JapaneseResults!!", japaneseResults.get(i));
}
return japaneseResults;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment