当前位置: 首页>>代码示例>>Java>>正文


Java SVGDocument.getElementById方法代码示例

本文整理汇总了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();
//            }
//        }

    }
 
开发者ID:jeddict,项目名称:NBModeler,代码行数:26,代码来源:NodeWidget.java

示例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();
}
 
开发者ID:jeddict,项目名称:NBModeler,代码行数:21,代码来源:SvgWidget.java

示例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();
        }
    }
 
开发者ID:jeddict,项目名称:NBModeler,代码行数:15,代码来源:NodeWidget.java

示例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;
}
 
开发者ID:jeddict,项目名称:NBModeler,代码行数:7,代码来源:NodeWidget.java


注:本文中的org.w3c.dom.svg.SVGDocument.getElementById方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。