ulysseskao
2014-06-12 28132c5faadb4467205abc736964af3ecb24b1c6
1
2
3
4
5
6
7
8
9
package com.ximple.eofms.util;
 
import com.ximple.io.dgn7.GeometryConverter;
 
public interface GeometryConverterDecorator extends GeometryConverter {
    public GeometryConverter getConverter();
 
    public void setConverter(GeometryConverter converter);
}