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