use of org.geotoolkit.sld.xml.StyleXmlIO in project geotoolkit by Geomatys.
the class PieSymbolizer method setValue.
public void setValue(Expression valueExp) {
this.valueExp = valueExp;
final StyleXmlIO util = new StyleXmlIO();
this.value = util.getTransformerXMLv110().visitExpression(valueExp);
}
use of org.geotoolkit.sld.xml.StyleXmlIO in project geotoolkit by Geomatys.
the class PieSymbolizer method setSize.
public void setSize(Expression pieSize) {
this.pieSize = pieSize;
final StyleXmlIO util = new StyleXmlIO();
this.size = util.getTransformerXMLv110().visitExpression(pieSize);
}
use of org.geotoolkit.sld.xml.StyleXmlIO in project geotoolkit by Geomatys.
the class PieSymbolizer method setQuarter.
public void setQuarter(Expression quarterExp) {
this.quarterExp = quarterExp;
final StyleXmlIO util = new StyleXmlIO();
this.quarter = util.getTransformerXMLv110().visitExpression(quarterExp);
}
use of org.geotoolkit.sld.xml.StyleXmlIO in project geotoolkit by Geomatys.
the class PieSymbolizer method setGroup.
public void setGroup(Expression groupExp) {
this.groupExp = groupExp;
final StyleXmlIO util = new StyleXmlIO();
this.group = util.getTransformerXMLv110().visitExpression(groupExp);
}
use of org.geotoolkit.sld.xml.StyleXmlIO in project geotoolkit by Geomatys.
the class IsolineSymbolizer method setTextSymbolizer.
public void setTextSymbolizer(TextSymbolizer textSymbolizer) {
this.textSymbolizer = textSymbolizer;
if (textSymbolizer != null) {
final StyleXmlIO util = new StyleXmlIO();
this.textSymbolizerType = util.getTransformerXMLv110().visit(textSymbolizer, null).getValue();
}
}
Aggregations