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.factories; //from ww w . j av a2 s.c om import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.MarkerOptions; /** * Created by WX009-PC on 2/25/14. */ public interface MarkerOptionsFactoryWrapperInterface { public MarkerOptions getOptions(String name, LatLng latLng); }