本文整理汇总了Java中org.w3c.dom.svg.SVGDocument.getElementById方法的典型用法代码示例。如果您正苦于以下问题:Java SVGDocument.getElementById方法的具体用法?Java SVGDocument.getElementById怎么用?Java SVGDocument.getElementById使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.w3c.dom.svg.SVGDocument
的用法示例。
在下文中一共展示了SVGDocument.getElementById方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setElementTextValue
import org.w3c.dom.svg.SVGDocument; //导入方法依赖的package包/类
public void setElementTextValue(SVGDocument svgDocument, String value) {
String textLocation = svgDocument.getRootElement().getAttribute("TextLocation");
if ("INSIDE".equalsIgnoreCase(textLocation)) {
String textLocationId = svgDocument.getRootElement().getAttribute("TextLocationId");
if (textLocationId == null || textLocationId.isEmpty()) {
throw new SVGAttributeNotFoundException("ROOT", "TextLocationId");
} else {
if (svgDocument.getElementById(textLocationId) != null) {
svgDocument.getElementById(textLocationId).setTextContent(value);
}
}
// this.hideLabel();
reloadSVGDocument();
}
// else {
// if (value != null && !value.trim().isEmpty()) {
// this.setLabel(value);
// this.showLabel();
// } else {
// this.setLabel("");
// this.hideLabel();
// }
// }
}
示例2: setSVGDocument
import org.w3c.dom.svg.SVGDocument; //导入方法依赖的package包/类
public void setSVGDocument(SVGDocument doc) {
svgDocument = doc;
UserAgent userAgent = new UserAgentAdapter();
DocumentLoader loader = new DocumentLoader(userAgent);
ctx = new BridgeContext(userAgent, loader);
ctx.setDynamicState(BridgeContext.DYNAMIC);
GVTBuilder builder = new GVTBuilder();
setGraphicsNode(builder.build(ctx, getSvgDocument()));
outlineElement = doc.getElementById("OUTLINE");
if (outlineElement != null) {
outlineShape = ((org.apache.batik.gvt.ShapeNode) ctx.getGraphicsNode(outlineElement)).getShape();
}
if ("OUTER".equals(doc.getRootElement().getAttribute("resizeType"))) {
setResizeType(ResizeType.OUTER);
}
revalidate();
}
示例3: setElementValue
import org.w3c.dom.svg.SVGDocument; //导入方法依赖的package包/类
public void setElementValue(SVGDocument svgDocument, String id, String attribute, String value, boolean lazy) {
if (svgDocument.getElementById(id) != null) {
// System.out.println(svgDocument.getElementById(id) + " -- "+ attribute + " -- "+ svgDocument.getElementById(id).getAttribute(attribute));
if (svgDocument.getElementById(id).hasAttribute(attribute)) {
svgDocument.getElementById(id).setAttribute(attribute, value);
} else {
System.out.println("Document[" + this.getNodeWidgetInfo().getModelerDocument().getDocumentPath() + "] Not Found id : " + id + " attribute : " + attribute);
}
}
if (!lazy) {
reloadSVGDocument();
}
}
示例4: getElementValue
import org.w3c.dom.svg.SVGDocument; //导入方法依赖的package包/类
public String getElementValue(SVGDocument svgDocument, String id, String attribute) {
if (svgDocument.getElementById(id) != null) {
return svgDocument.getElementById(id).getAttribute(attribute);
}
return null;
}