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 w ww .j ava 2 s . c o m*/ import com.google.android.gms.maps.CameraUpdate; import com.google.android.gms.maps.CameraUpdateFactory; import com.google.android.gms.maps.model.LatLng; /** * Created by WX009-PC on 2/25/14. */ public class CameraUpdateFactoryWrapper implements CameraUpdateFactoryWrapperInterface { @Override public CameraUpdate newLatLngZoom(LatLng latLng, float zoom) { return CameraUpdateFactory.newLatLngZoom(latLng, zoom); } }