⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 defaultmutabletreenode.java

📁 gcc的组建
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* DefaultMutableTreeNode.java --   Copyright (C) 2002, 2004, 2005  Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package javax.swing.tree;import gnu.java.util.EmptyEnumeration;import java.io.IOException;import java.io.ObjectInputStream;import java.io.ObjectOutputStream;import java.io.Serializable;import java.util.ArrayList;import java.util.Enumeration;import java.util.LinkedList;import java.util.NoSuchElementException;import java.util.Stack;import java.util.Vector;/** * DefaultMutableTreeNode * * @author Andrew Selkirk * @author Robert Schuster (robertschuster@fsfe.org) */public class DefaultMutableTreeNode  implements Cloneable, MutableTreeNode, Serializable{  private static final long serialVersionUID = -4298474751201349152L;  /**   * EMPTY_ENUMERATION   */  public static final Enumeration EMPTY_ENUMERATION =    EmptyEnumeration.getInstance();  /**   * parent   */  protected MutableTreeNode parent;  /**   * children   */  protected Vector children = new Vector();  /**   * userObject   */  protected transient Object userObject;  /**   * allowsChildren   */  protected boolean allowsChildren;  /**   * Creates a <code>DefaultMutableTreeNode</code> object.   * This node allows to add child nodes.   */  public DefaultMutableTreeNode()  {    this(null, true);  }  /**   * Creates a <code>DefaultMutableTreeNode</code> object with the given   * user object attached to it. This node allows to add child nodes.   *   * @param userObject the user object   */  public DefaultMutableTreeNode(Object userObject)  {    this(userObject, true);  }  /**   * Creates a <code>DefaultMutableTreeNode</code> object with the given   * user object attached to it.   *   * @param userObject the user object   * @param allowsChildren <code>true</code> if the code allows to add child   * nodes, <code>false</code> otherwise   */  public DefaultMutableTreeNode(Object userObject, boolean allowsChildren)  {    this.userObject = userObject;    this.allowsChildren = allowsChildren;  }  /**   * clone   *   * @return Object   */  public Object clone()  {    try      {        return super.clone();        // TODO: Do we need to do more here ?      }    catch (CloneNotSupportedException e)      {        // This never happens.        return null;      }  }  /**   * Returns a string representation of this node   *   * @return a human-readable String representing this node   */  public String toString()  {    if (userObject == null)      return null;    return userObject.toString();  }  /**   * Adds a new child node to this node.   *   * @param child the child node   *   * @throws IllegalArgumentException if <code>child</code> is null   * @throws IllegalStateException if the node does not allow children   */  public void add(MutableTreeNode child)  {    if (child == null)      throw new IllegalArgumentException();    if (! allowsChildren)      throw new IllegalStateException();        children.add(child);    child.setParent(this);  }  /**   * Returns the parent node of this node.   *   * @return the parent node   */  public TreeNode getParent()  {    return parent;  }  /**   * Removes the child with the given index from this node   *   * @param index the index   */  public void remove(int index)  {    children.remove(index);  }  /**   * Removes the given child from this node.   *   * @param node the child node   */  public void remove(MutableTreeNode node)  {    children.remove(node);  }  /**   * writeObject   *   * @param stream the output stream   *   * @exception IOException If an error occurs   */  private void writeObject(ObjectOutputStream stream)    throws IOException  {    // TODO: Implement me.  }  /**   * readObject   *   * @param stream the input stream   *   * @exception IOException If an error occurs   * @exception ClassNotFoundException TODO   */  private void readObject(ObjectInputStream stream)    throws IOException, ClassNotFoundException  {    // TODO: Implement me.  }  /**   * Inserts given child node at the given index.   *   * @param node the child node   * @param index the index.   */  public void insert(MutableTreeNode node, int index)  {    children.insertElementAt(node, index);  }  /**   * Returns a path to this node from the root.   *   * @return an array of tree nodes   */  public TreeNode[] getPath()  {    return getPathToRoot(this, 0);  }  /**   * Returns an enumeration containing all children of this node.   * <code>EMPTY_ENUMERATION</code> is returned if this node has no children.   *   * @return an enumeration of tree nodes   */  public Enumeration children()  {    if (children.size() == 0)      return EMPTY_ENUMERATION;        return children.elements();  }  /**   * Set the parent node for this node.   *   * @param node the parent node   */  public void setParent(MutableTreeNode node)  {    parent = node;  }  /**   * Returns the child node at a given index.   *   * @param index the index   *   * @return the child node   */  public TreeNode getChildAt(int index)  {    return (TreeNode) children.elementAt(index);  }  /**   * Returns the number of children of this node.   *   * @return the number of children   */  public int getChildCount()  {    return children.size();  }  /**   * Returns the child index for a given node.   *   * @param node this node   *   * @return the index   */  public int getIndex(TreeNode node)  {    return children.indexOf(node);  }  /**   * setAllowsChildren   *   * @param allowsChildren TODO   */  public void setAllowsChildren(boolean allowsChildren)  {    this.allowsChildren = allowsChildren;  }  /**   * getAllowsChildren   *   * @return boolean   */  public boolean getAllowsChildren()  {    return allowsChildren;  }  /**   * Sets the user object for this node   *   * @param userObject the user object   */  public void setUserObject(Object userObject)  {    this.userObject = userObject;  }  /**   * Returns the user object attached to this node. <code>null</code> is   * returned when no user object is set.   *   * @return the user object   */  public Object getUserObject()  {    return userObject;  }  /**   * Removes this node from its parent.   */  public void removeFromParent()  {    parent.remove(this);    parent = null;  }  /**   * Removes all child nodes from this node.   */  public void removeAllChildren()  {    children.removeAllElements();  }  /**   * isNodeAncestor   *   * @param node TODO   *   * @return boolean   */  public boolean isNodeAncestor(TreeNode node)  {    if (node == null)      return false;    TreeNode current = this;    while (current != null           && current != node)      current = current.getParent();    return current == node;  }  /**   * isNodeDescendant   *   * @param node TODO   *   * @return boolean   */  public boolean isNodeDescendant(DefaultMutableTreeNode node)  {    if (node == null)      return false;    TreeNode current = node;        while (current != null           && current != this)      current = current.getParent();    return current == this;  }  /**   * getSharedAncestor   *   * @param node TODO   *   * @return TreeNode   */  public TreeNode getSharedAncestor(DefaultMutableTreeNode node)  {    TreeNode current = this;    ArrayList list = new ArrayList();    while (current != null)      {        list.add(current);        current = current.getParent();      }    current = node;    while (current != null)      {        if (list.contains(current))          return current;        current = current.getParent();      }    return null;  }  /**   * isNodeRelated   *   * @param node TODO   *   * @return boolean   */  public boolean isNodeRelated(DefaultMutableTreeNode node)  {    if (node == null)      return false;    return node.getRoot() == getRoot();  }  /**   * getDepth   *   * @return int   */  public int getDepth()  {    if ((! allowsChildren)        || children.size() == 0)      return 0;    Stack stack = new Stack();    stack.push(new Integer(0));    TreeNode node = getChildAt(0);    int depth = 0;    int current = 1;        while (! stack.empty())      {        if (node.getChildCount() != 0)          {            node = node.getChildAt(0);            stack.push(new Integer(0));            current++;          }        else          {            if (current > depth)              depth = current;            int size;            int index;                        do              {                node = node.getParent();                size = node.getChildCount();                index = ((Integer) stack.pop()).intValue() + 1;                current--;              }            while (index >= size                   && node != this);            if (index < size)              {                node = node.getChildAt(index);                stack.push(new Integer(index));                current++;              }          }      }    return depth;  }  /**   * getLevel   *   * @return int   */  public int getLevel()  {    int count = -1;    TreeNode current = this;    do      {        current = current.getParent();        count++;      }    while (current != null);    return count;  }  /**   * getPathToRoot   *   * @param node TODO   * @param depth TODO   *   * @return TreeNode[]   */  protected TreeNode[] getPathToRoot(TreeNode node, int depth)  {    if (node == null)      {        if (depth == 0)          return null;                return new TreeNode[depth];      }    TreeNode[] path = getPathToRoot(node.getParent(), depth + 1);    path[path.length - depth - 1] = node;    return path;  }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -