本文整理了Java中org.geotools.styling.Halo.accept()
方法的一些代码示例,展示了Halo.accept()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Halo.accept()
方法的具体详情如下:
包路径:org.geotools.styling.Halo
类名称:Halo
方法名:accept
暂无
代码示例来源:origin: geotools/geotools
/**
* Null safe copy of halo.
*
* @param halo
* @return copy of halo if provided
*/
protected Halo copy(Halo halo) {
if (halo == null) return null;
halo.accept(this);
return (Halo) pages.pop();
}
代码示例来源:origin: geotools/geotools
@Override
public void visit(TextSymbolizer text) {
if (text.getDescription() != null) {
text.getDescription().accept(this);
}
if (text.getFill() != null) {
text.getFill().accept(this);
}
if (text.getHalo() != null) {
text.getHalo().accept(this);
}
if (text.getLabelPlacement() != null) {
text.getLabelPlacement().accept(this);
}
}
代码示例来源:origin: org.geotools/gt-main
/**
* Null safe copy of halo.
* @param halo
* @return copy of halo if provided
*/
protected Halo copy( Halo halo){
if( halo == null ) return null;
halo.accept(this);
return (Halo) pages.pop();
}
代码示例来源:origin: geotools/geotools
public void testHalo() {
Halo halo = sf.createHalo(sf.getDefaultFill(), ff.literal(10));
halo.accept(visitor);
Halo clone = (Halo) visitor.getCopy();
assertCopy(halo, clone);
Halo other = sf.createHalo(sf.getDefaultFill(), ff.literal(12));
assertEqualsContract(clone, other, halo);
}
代码示例来源:origin: geotools/geotools
text.getHalo().accept(this);
text.getHalo().accept(this);
代码示例来源:origin: geotools/geotools
text.getHalo().accept(this);
代码示例来源:origin: geotools/geotools
text.getHalo().accept(this);
text.getHalo().accept(this);
代码示例来源:origin: org.geoserver/gs-wms
/** @see org.geotools.styling.StyleVisitor#visit(org.geotools.styling.TextSymbolizer) */
public void visit(TextSymbolizer text) {
if (text instanceof TextSymbolizer2) {
if (((TextSymbolizer2) text).getGraphic() != null)
((TextSymbolizer2) text).getGraphic().accept(this);
}
if (text.getFill() != null) {
text.getFill().accept(this);
}
if (text.getHalo() != null) {
text.getHalo().accept(this);
}
}
代码示例来源:origin: org.geoserver/wms
/**
* @see org.geotools.styling.StyleVisitor#visit(org.geotools.styling.TextSymbolizer)
*/
public void visit(TextSymbolizer text) {
if (text instanceof TextSymbolizer2) {
if (((TextSymbolizer2) text).getGraphic() != null)
((TextSymbolizer2) text).getGraphic().accept(this);
}
if (text.getFill() != null) {
text.getFill().accept(this);
}
if (text.getHalo() != null) {
text.getHalo().accept(this);
}
}
代码示例来源:origin: org.geotools/gt-render
text.getHalo().accept(this);
text.getHalo().accept(this);
代码示例来源:origin: org.geotools/gt-main
@Override
public void visit(TextSymbolizer text) {
if (text.getDescription() != null) {
text.getDescription().accept(this);
}
if (text.getFill() != null) {
text.getFill().accept(this);
}
if (text.getFont() != null) {
//text.getFont().accept(this, null);
}
if (text.getGeometry() != null) {
//text.getGeometry().accept(visitor, extraData)
}
if (text.getHalo() != null) {
text.getHalo().accept(this);
}
if (text.getLabel() != null) {
//text.getLabel().accept(visitor, extraData)
}
if (text.getLabelPlacement() != null) {
text.getLabelPlacement().accept(this);
}
if (text.getPriority() != null) {
//text.getPriority().accept(visitor, extraData)
}
}
代码示例来源:origin: org.geotools/gt2-main
text.getHalo().accept(this);
text.getHalo().accept(this);
代码示例来源:origin: org.geotools/gt2-main
text.getHalo().accept(this);
text.getHalo().accept(this);
代码示例来源:origin: org.geotools/gt-main
text.getHalo().accept(this);
代码示例来源:origin: org.geotools/gt-render
text.getHalo().accept(this);
text.getHalo().accept(this);
代码示例来源:origin: org.geotools/gt2-main
text.getHalo().accept(this);
内容来源于网络,如有侵权,请联系作者删除!