Back to project page Locast-Core-Android.
The source code is released under:
GNU General Public License
If you think the Android project Locast-Core-Android 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.beoui.geocell; /*from ww w .j a va 2s . c o m*/ import java.util.List; import com.beoui.geocell.model.GeocellQuery; public interface GeocellQueryEngine { public abstract <T> List<T> query(GeocellQuery baseQuery, List<String> curGeocellsUnique, Class<T> entityClass); }