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


Java Constants类代码示例

本文整理汇总了Java中edu.mit.blocks.codeblocks.Constants的典型用法代码示例。如果您正苦于以下问题:Java Constants类的具体用法?Java Constants怎么用?Java Constants使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Constants类属于edu.mit.blocks.codeblocks包,在下文中一共展示了Constants类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getSaveNode

import edu.mit.blocks.codeblocks.Constants; //导入依赖的package包/类
/**
 * Returns a DOM node for the entire workspace. This includes the block
 * workspace, any custom factories, canvas view state and position, pages
 *
 * @param validate If {@code true}, perform a validation of the output
 * against the code blocks schema
 * @return the DOM node for the entire workspace.
 */
public Node getSaveNode(final boolean validate) {
    try {
        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        factory.setNamespaceAware(true);

        DocumentBuilder builder = factory.newDocumentBuilder();
        Document document = builder.newDocument();

        Element documentElement = document.createElementNS(Constants.XML_CODEBLOCKS_NS, "cb:CODEBLOCKS");
        // schema reference
        documentElement.setAttributeNS(XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI, "xsi:schemaLocation", Constants.XML_CODEBLOCKS_NS+" "+Constants.XML_CODEBLOCKS_SCHEMA_URI);

        Node workspaceNode = workspace.getSaveNode(document);
        if (workspaceNode != null) {
            documentElement.appendChild(workspaceNode);
        }

        document.appendChild(documentElement);
        //if (validate) {
        //    validate(document);
        //}

        return document;
    }
    catch (ParserConfigurationException e) {
        throw new RuntimeException(e);
    }
}
 
开发者ID:heqichen,项目名称:openblocks,代码行数:37,代码来源:WorkspaceController.java


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