use of com.amitshekhar.model.Response in project Android-Debug-Database by amitshekhariitbhu.
the class PrefHelper method getAllPrefTableName.
public static Response getAllPrefTableName(Context context) {
Response response = new Response();
List<String> prefTags = getSharedPreferenceTags(context);
for (String tag : prefTags) {
response.rows.add(tag);
}
response.isSuccessful = true;
return response;
}
Aggregations