コード例 #1
0
  public void testFileUsagesDescription() {
    XQueryFile file = XQueryElementFactory.createFile(getProject(), "example contents");

    String description = provider.getNodeText(file, true);

    assertEquals("dummy.xq", description);
  }
コード例 #2
0
 private XQueryModuleImport exampleImport() {
   return (XQueryModuleImport)
       XQueryElementFactory.createImportPath(getProject(), "'path.xq'").getParent().getParent();
 }
コード例 #3
0
 private XQueryNamespacePrefix exampleModuleDeclaration() {
   return XQueryElementFactory.createModuleDeclarationName(getProject(), "example");
 }
コード例 #4
0
 private XQueryNamespaceDecl exampleNamespaceDeclaration() {
   return XQueryElementFactory.createNamespaceDeclaration(getProject(), "example");
 }
コード例 #5
0
 private XQueryVarDecl exampleVariableDeclaration() {
   return XQueryElementFactory.createVariableDeclaration(getProject(), "local", "example");
 }
コード例 #6
0
 private XQueryFunctionDecl exampleFunctionDeclaration() {
   return XQueryElementFactory.createFunctionDeclaration(getProject(), "local", "example");
 }