1
2
3
4
5
6
7
8
9
10
11
12
| package com.ximple.eofms.jobs;
|
| import org.geotools.feature.Feature;
|
| import com.ximple.io.dgn7.Element;
|
| public interface ElementDispatchableStrategy
| {
| public boolean isDispatchable(Element element);
|
| public Feature execute(Element element);
| }
|
|