org.geotools.styling.Halo.accept()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(3.4k)|赞(0)|评价(0)|浏览(123)

本文整理了Java中org.geotools.styling.Halo.accept()方法的一些代码示例,展示了Halo.accept()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Halo.accept()方法的具体详情如下:
包路径:org.geotools.styling.Halo
类名称:Halo
方法名:accept

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);

相关文章