/Prototipo/PrototipoCommons/src/memoria/commons/dataAccess/query/filtro/GisFilter.java

http://prototipomemoria.googlecode.com/ · Java · 23 lines · 10 code · 5 blank · 8 comment · 0 complexity · ea52c816b8e49729efd2b62993ef148e MD5 · raw file

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package memoria.commons.dataAccess.query.filtro;
  6. import java.util.List;
  7. import javax.xml.bind.annotation.XmlAccessType;
  8. import javax.xml.bind.annotation.XmlAccessorType;
  9. import javax.xml.bind.annotation.XmlElement;
  10. import javax.xml.bind.annotation.XmlRootElement;
  11. import memoria.commons.structures.GeoReferenced;
  12. /**
  13. *
  14. * @author diego
  15. */
  16. public abstract class GisFilter {
  17. public abstract List<GeoReferenced> filter(List<GeoReferenced> data);
  18. }