use of org.geotoolkit.se.xml.v110.GraphicFillType in project geotoolkit by Geomatys.
the class GTtoSE110Transformer method visit.
/**
* Transform a GT graphic fill in jaxb graphic fill.
*/
@Override
public GraphicFillType visit(final GraphicFill graphicFill, final Object data) {
final GraphicFillType gft = se_factory.createGraphicFillType();
gft.setGraphic(visit((Graphic) graphicFill, null));
return gft;
}
Aggregations