com.sun.org.apache.xml.internal.dtm.ref.ExpandedNameTable Java Examples

The following examples show how to use com.sun.org.apache.xml.internal.dtm.ref.ExpandedNameTable. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SAX2DTM2.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * Set start to END should 'close' the iterator,
 * i.e. subsequent call to next() should return END.
 *
 * @param node Sets the root of the iteration.
 *
 * @return A DTMAxisIterator set to the start of the iteration.
 */
public DTMAxisIterator setStartNode(int node) {
  //%HZ%: Added reference to DTMDefaultBase.ROOTNODE back in, temporarily
  if (node == DTMDefaultBase.ROOTNODE)
    node = getDocument();
  if (_isRestartable) {
    _startNode = node;
    node = _startNodeID = makeNodeIdentity(node);

    if(node == NULL) {
      _currentNode = node;
      return resetPosition();
    }

    int type = _type2(node);
    if (ExpandedNameTable.ATTRIBUTE == type ||
        ExpandedNameTable.NAMESPACE == type)
    {
      _currentNode = node;
    } else {
      // Be careful to handle the Document node properly
      _currentNode = _parent2(node);
      if(NULL!=_currentNode)
        _currentNode = _firstch2(_currentNode);
      else
        _currentNode = node;
    }

    return resetPosition();
  }

  return this;
}
 
Example #2
Source File: SAX2DTM2.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Set start to END should 'close' the iterator,
 * i.e. subsequent call to next() should return END.
 *
 * @param node Sets the root of the iteration.
 *
 * @return A DTMAxisIterator set to the start of the iteration.
 */
public DTMAxisIterator setStartNode(int node) {
  //%HZ%: Added reference to DTMDefaultBase.ROOTNODE back in, temporarily
  if (node == DTMDefaultBase.ROOTNODE)
    node = getDocument();
  if (_isRestartable) {
    _startNode = node;
    node = _startNodeID = makeNodeIdentity(node);

    if(node == NULL) {
      _currentNode = node;
      return resetPosition();
    }

    int type = _type2(node);
    if (ExpandedNameTable.ATTRIBUTE == type ||
        ExpandedNameTable.NAMESPACE == type)
    {
      _currentNode = node;
    } else {
      // Be careful to handle the Document node properly
      _currentNode = _parent2(node);
      if(NULL!=_currentNode)
        _currentNode = _firstch2(_currentNode);
      else
        _currentNode = node;
    }

    return resetPosition();
  }

  return this;
}