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.model; //from ww w.java2 s . c o m import java.util.List; /** * To run proximity fetch method, entity has to implement LocationCapable. * Location and Key are used in the algorithm (to sort and compare entities). * Geocells is used in query (entity must have a GEOCELLS column). * * @author Alexandre Gellibert * */ @Deprecated public interface LocationCapable { /** * * @return the location in latitude/longitude */ Point getLocation(); /** * * @return the key of the entity used as a String */ String getKeyString(); List<String> getGeocells(); }