- /*
- * @(#)TreeExpansionListener.java 1.8 00/02/02
- *
- * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the proprietary information of Sun Microsystems, Inc.
- * Use is subject to license terms.
- *
- */
-
- package javax.swing.event;
-
- import java.util.EventListener;
-
- /**
- * The listener that's notified when a tree expands or collapses
- * a node.
- * For further documentation and examples see
- * <a
- href="http://java.sun.com/docs/books/tutorial/uiswing/events/treeexpansionlistener.html">How to Write a Tree Expansion Listener</a>,
- * a section in <em>The Java Tutorial.</em>
- *
- * @author Scott Violet
- */
-
- public interface TreeExpansionListener extends EventListener
- {
- /**
- * Called whenever an item in the tree has been expanded.
- */
- public void treeExpanded(TreeExpansionEvent event);
-
- /**
- * Called whenever an item in the tree has been collapsed.
- */
- public void treeCollapsed(TreeExpansionEvent event);
- }