Examples of matchElementsByTagName()


Examples of org.exist.indexing.StructuralIndex.matchElementsByTagName()

      if (context.getProfiler().isEnabled())
        {context.getProfiler().message(this, Profiler.OPTIMIZATIONS,
            "OPTIMIZATION",
            "Using structural index '" + index.toString() + "'");}
      final NodeSelector selector = new SelfSelector(contextSet, contextId);
      return index.matchElementsByTagName(ElementValue.ELEMENT, docs, test
          .getName(), selector);
    }
  }

  protected Boolean matchChildren(XQueryContext context,
View Full Code Here

Examples of org.exist.indexing.StructuralIndex.matchElementsByTagName()

                this,
                Profiler.OPTIMIZATIONS,
                "OPTIMIZATION",
                "Using structural index '" + index.toString()
                    + "'");}
          return index.matchElementsByTagName(
              ElementValue.ELEMENT, docs, test.getName(), null);
//          currentDocs = docs;
//UNDERSTAND: TODO:          registerUpdateListener();
        }
//        return currentSet.selectParentChild(contextSet,
View Full Code Here

Examples of org.exist.indexing.StructuralIndex.matchElementsByTagName()

            contextId);
      } else {
        // if (contextSet instanceof VirtualNodeSet)
        // ((VirtualNodeSet)contextSet).realize();
        final NodeSelector selector = new ChildSelector(contextSet, contextId);
        return index.matchElementsByTagName(ElementValue.ELEMENT, docs,
            test.getName(), selector);
      }
    }
  }
View Full Code Here

Examples of org.exist.indexing.StructuralIndex.matchElementsByTagName()

          break;
        default:
          throw new IllegalArgumentException(
              "Unsupported axis specified");
        }
        return index.matchElementsByTagName(ElementValue.ATTRIBUTE,
            docs, test.getName(), selector);
      }
    }
  }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.