Back to project page Android_Yellow_Pages_App_TDD.
The source code is released under:
Apache License
If you think the Android project Android_Yellow_Pages_App_TDD 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.tddrampup.singletons; // www .j av a 2 s . c om import com.tddrampup.models.Listing; import java.util.List; /** * Created by WX009-PC on 2/19/14. */ public interface ListingsInterface { // public static Listings getInstance(); public List<Listing> getListings(); public void setListings(List<Listing> value); public String getWhatQuery(); public void setWhatQuery(String whatQuery); public String getWhereQuery(); public void setWhereQuery(String whereQuery); }