package com.ximple.eofms.filter; import com.ximple.io.dgn7.Element; import org.opengis.feature.simple.SimpleFeature; public interface ElementDispatchableFilter { public boolean isDispatchable(Element element); public SimpleFeature execute(Element element, boolean useTransform); void setUseLongName(boolean useLongName); public void addCreateFeatureTypeEventListener(CreateFeatureTypeEventListener listener); public void removeCreateFeatureTypeEventListener(CreateFeatureTypeEventListener listener); }