use of org.geotoolkit.se.xml.v110.LegendGraphicType in project geotoolkit by Geomatys.
the class GTtoSE110Transformer method visit.
/**
* Transform a GT graphicLegend in jaxb graphic legend
*/
@Override
public LegendGraphicType visit(final GraphicLegend graphicLegend, final Object data) {
final LegendGraphicType lgt = se_factory.createLegendGraphicType();
lgt.setGraphic(visit((Graphic) graphicLegend, null));
return lgt;
}
Aggregations