forked from geodmms/xdgnjobs

?? ?
2008-03-17 f26cdb4382420cb98e96237914cf21ae351ceecb
1
2
3
4
5
6
7
8
9
10
11
12
package com.ximple.eofms.jobs;
 
import org.geotools.feature.SchemaException;
 
import com.ximple.io.dgn7.Element;
 
public interface ElementDispatchableStrategy
{
    public boolean isDispatchable(Element element);
 
    public void execute(Element element) throws SchemaException;
}