alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (TreeWalker.java)

This example Java source code file (TreeWalker.java) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

dom, domexception, node, nodefilter, treewalker

The TreeWalker.java Java example source code

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

/*
 * This file is available under and governed by the GNU General Public
 * License version 2 only, as published by the Free Software Foundation.
 * However, the following notice accompanied the original version of this
 * file and, per its terms, should not be removed:
 *
 * Copyright (c) 2000 World Wide Web Consortium,
 * (Massachusetts Institute of Technology, Institut National de
 * Recherche en Informatique et en Automatique, Keio University). All
 * Rights Reserved. This program is distributed under the W3C's Software
 * Intellectual Property License. This program is distributed in the
 * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE.
 * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
 */

package org.w3c.dom.traversal;

import org.w3c.dom.Node;
import org.w3c.dom.DOMException;

/**
 * <code>TreeWalker objects are used to navigate a document tree or
 * subtree using the view of the document defined by their
 * <code>whatToShow flags and filter (if any). Any function which
 * performs navigation using a <code>TreeWalker will automatically
 * support any view defined by a <code>TreeWalker.
 * <p>Omitting nodes from the logical view of a subtree can result in a
 * structure that is substantially different from the same subtree in the
 * complete, unfiltered document. Nodes that are siblings in the
 * <code>TreeWalker view may be children of different, widely
 * separated nodes in the original view. For instance, consider a
 * <code>NodeFilter that skips all nodes except for Text nodes and
 * the root node of a document. In the logical view that results, all text
 * nodes will be siblings and appear as direct children of the root node, no
 * matter how deeply nested the structure of the original document.
 * <p>See also the Document Object Model (DOM) Level 2 Traversal and Range Specification.
 * @since DOM Level 2
 */
public interface TreeWalker {
    /**
     * The <code>root node of the TreeWalker, as specified
     * when it was created.
     */
    public Node getRoot();

    /**
     * This attribute determines which node types are presented via the
     * <code>TreeWalker. The available set of constants is defined in
     * the <code>NodeFilter interface.  Nodes not accepted by
     * <code>whatToShow will be skipped, but their children may still
     * be considered. Note that this skip takes precedence over the filter,
     * if any.
     */
    public int getWhatToShow();

    /**
     * The filter used to screen nodes.
     */
    public NodeFilter getFilter();

    /**
     * The value of this flag determines whether the children of entity
     * reference nodes are visible to the <code>TreeWalker. If false,
     * these children  and their descendants will be rejected. Note that
     * this rejection takes precedence over <code>whatToShow and the
     * filter, if any.
     * <br> To produce a view of the document that has entity references
     * expanded and does not expose the entity reference node itself, use
     * the <code>whatToShow flags to hide the entity reference node
     * and set <code>expandEntityReferences to true when creating the
     * <code>TreeWalker. To produce a view of the document that has
     * entity reference nodes but no entity expansion, use the
     * <code>whatToShow flags to show the entity reference node and
     * set <code>expandEntityReferences to false.
     */
    public boolean getExpandEntityReferences();

    /**
     * The node at which the <code>TreeWalker is currently positioned.
     * <br>Alterations to the DOM tree may cause the current node to no longer
     * be accepted by the <code>TreeWalker's associated filter.
     * <code>currentNode may also be explicitly set to any node,
     * whether or not it is within the subtree specified by the
     * <code>root node or would be accepted by the filter and
     * <code>whatToShow flags. Further traversal occurs relative to
     * <code>currentNode even if it is not part of the current view,
     * by applying the filters in the requested direction; if no traversal
     * is possible, <code>currentNode is not changed.
     */
    public Node getCurrentNode();
    /**
     * The node at which the <code>TreeWalker is currently positioned.
     * <br>Alterations to the DOM tree may cause the current node to no longer
     * be accepted by the <code>TreeWalker's associated filter.
     * <code>currentNode may also be explicitly set to any node,
     * whether or not it is within the subtree specified by the
     * <code>root node or would be accepted by the filter and
     * <code>whatToShow flags. Further traversal occurs relative to
     * <code>currentNode even if it is not part of the current view,
     * by applying the filters in the requested direction; if no traversal
     * is possible, <code>currentNode is not changed.
     * @exception DOMException
     *   NOT_SUPPORTED_ERR: Raised if an attempt is made to set
     *   <code>currentNode to null.
     */
    public void setCurrentNode(Node currentNode)
                         throws DOMException;

    /**
     * Moves to and returns the closest visible ancestor node of the current
     * node. If the search for <code>parentNode attempts to step
     * upward from the <code>TreeWalker's root node, or
     * if it fails to find a visible ancestor node, this method retains the
     * current position and returns <code>null.
     * @return The new parent node, or <code>null if the current node
     *   has no parent  in the <code>TreeWalker's logical view.
     */
    public Node parentNode();

    /**
     * Moves the <code>TreeWalker to the first visible child of the
     * current node, and returns the new node. If the current node has no
     * visible children, returns <code>null, and retains the current
     * node.
     * @return The new node, or <code>null if the current node has no
     *   visible children  in the <code>TreeWalker's logical view.
     */
    public Node firstChild();

    /**
     * Moves the <code>TreeWalker to the last visible child of the
     * current node, and returns the new node. If the current node has no
     * visible children, returns <code>null, and retains the current
     * node.
     * @return The new node, or <code>null if the current node has no
     *   children  in the <code>TreeWalker's logical view.
     */
    public Node lastChild();

    /**
     * Moves the <code>TreeWalker to the previous sibling of the
     * current node, and returns the new node. If the current node has no
     * visible previous sibling, returns <code>null, and retains the
     * current node.
     * @return The new node, or <code>null if the current node has no
     *   previous sibling.  in the <code>TreeWalker's logical view.
     */
    public Node previousSibling();

    /**
     * Moves the <code>TreeWalker to the next sibling of the current
     * node, and returns the new node. If the current node has no visible
     * next sibling, returns <code>null, and retains the current node.
     * @return The new node, or <code>null if the current node has no
     *   next sibling.  in the <code>TreeWalker's logical view.
     */
    public Node nextSibling();

    /**
     * Moves the <code>TreeWalker to the previous visible node in
     * document order relative to the current node, and returns the new
     * node. If the current node has no previous node,  or if the search for
     * <code>previousNode attempts to step upward from the
     * <code>TreeWalker's root node,  returns
     * <code>null, and retains the current node.
     * @return The new node, or <code>null if the current node has no
     *   previous node  in the <code>TreeWalker's logical view.
     */
    public Node previousNode();

    /**
     * Moves the <code>TreeWalker to the next visible node in document
     * order relative to the current node, and returns the new node. If the
     * current node has no next node, or if the search for nextNode attempts
     * to step upward from the <code>TreeWalker's root
     * node, returns <code>null, and retains the current node.
     * @return The new node, or <code>null if the current node has no
     *   next node  in the <code>TreeWalker's logical view.
     */
    public Node nextNode();

}

Other Java examples (source code examples)

Here is a short list of links related to this Java TreeWalker.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.