/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
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package memoria.commons.dataAccess.query.filtro;
- import java.util.List;
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlElement;
- import javax.xml.bind.annotation.XmlRootElement;
- import memoria.commons.structures.GeoReferenced;
- /**
- *
- * @author diego
- */
- public abstract class GisFilter {
- public abstract List<GeoReferenced> filter(List<GeoReferenced> data);
- }