home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / MutableTreeNode.java < prev    next >
Text File  |  1998-11-09  |  2KB  |  65 lines

  1. /*
  2.  * @(#)MutableTreeNode.java    1.1 97/09/23
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package javax.awt.swing.tree;
  22.  
  23. import javax.awt.swing.tree.TreeNode;
  24.  
  25. /**
  26.  * @version 1.1 09/23/97
  27.  * @author Rob Davis
  28.  * @author Scott Violet
  29.  */
  30.  
  31. public interface MutableTreeNode extends TreeNode
  32. {
  33.     /**
  34.      * Adds <code>child</code> to the receiver at <code>index</code>.
  35.      * <code>child</code> will be messaged with <code>setParent</code>.
  36.      */
  37.     void insert(MutableTreeNode child, int index);
  38.  
  39.     /**
  40.      * Removes the child at <code>index</code> from the receiver.
  41.      */
  42.     void remove(int index);
  43.  
  44.     /**
  45.      * Removes <code>node</code> from the receiver. <code>setParent</code>
  46.      * will be messaged on <code>node</code>.
  47.      */
  48.     void remove(MutableTreeNode node);
  49.  
  50.     /**
  51.      * Resets the user object of the receiver to <code>object</code>.
  52.      */
  53.     void setUserObject(Object object);
  54.  
  55.     /**
  56.      * Removes the receiver from its parent.
  57.      */
  58.     void removeFromParent();
  59.  
  60.     /**
  61.      * Sets the parent of the receiver to <code>newParent</code>.
  62.      */
  63.     void setParent(MutableTreeNode newParent);
  64. }
  65.