Examples of findElementsByTagName()


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

      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.findElementsByTagName(ElementValue.ELEMENT, docs, test
          .getName(), selector, this);
    }
  }

  /**
 
View Full Code Here

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

                Profiler.OPTIMIZATIONS,
                "OPTIMIZATION",
                "Using structural index '" + index.toString()
                    + "'");}
          // TODO : why a null selector here ? We have one below !
          currentSet = index.findElementsByTagName(ElementValue.ATTRIBUTE, docs, test.getName(), null, this);
          currentDocs = docs;
          registerUpdateListener();
        }
        switch (axis) {
        case Constants.ATTRIBUTE_AXIS:
View Full Code Here

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

          break;
        default:
          throw new IllegalArgumentException(
              "Unsupported axis specified");
        }
        return index.findElementsByTagName(ElementValue.ATTRIBUTE, docs, test.getName(), selector, this);
      }
    }
  }

  /**
 
View Full Code Here

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

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

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

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

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

                this,
                Profiler.OPTIMIZATIONS,
                "OPTIMIZATION",
                "Using structural index '" + index.toString()
                    + "'");}
          currentSet = index.findElementsByTagName(
              ElementValue.ELEMENT, docs, test.getName(), null, this);
          currentDocs = docs;
          registerUpdateListener();
        }
        switch (axis) {
View Full Code Here

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

          break;
        default:
          throw new IllegalArgumentException(
              "Unsupported axis specified");
        }
        return index.findElementsByTagName(ElementValue.ELEMENT, docs,
            test.getName(), selector, this);
      }

    }
  }
View Full Code Here

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

                this,
                Profiler.OPTIMIZATIONS,
                "OPTIMIZATION",
                "Using structural index '" + index.toString()
                    + "'");}
          currentSet = index.findElementsByTagName(
              ElementValue.ELEMENT, docs, test.getName(), null, this);
          currentDocs = docs;
          registerUpdateListener();
        }
        switch (axis) {
View Full Code Here

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

                this,
                Profiler.OPTIMIZATIONS,
                "OPTIMIZATION",
                "Using structural index '" + index.toString()
                    + "'");}
          currentSet = index.findElementsByTagName(
              ElementValue.ELEMENT, docs, test.getName(), null, this);
          currentDocs = docs;
          registerUpdateListener();
        }
        if (hasPositionalPredicate) {
View Full Code Here

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

                this,
                Profiler.OPTIMIZATIONS,
                "OPTIMIZATION",
                "Using structural index '" + index.toString()
                    + "'");}
          currentSet = index.findElementsByTagName(
              ElementValue.ELEMENT, docs, test.getName(), null, this);
          currentDocs = docs;
          registerUpdateListener();
        }
        if (hasPositionalPredicate) {
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.