]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/events/TreeAdapter.java
Remove invalid SHA-256-Digests
[simantics/platform.git] / bundles / org.eclipse.swt.win32.win32.x86_64 / src / org / eclipse / swt / events / TreeAdapter.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2017 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.swt.events;
15
16
17 /**
18  * This adapter class provides default implementations for the
19  * methods described by the <code>TreeListener</code> interface.
20  * <p>
21  * Classes that wish to deal with <code>TreeEvent</code>s can
22  * extend this class and override only the methods which they are
23  * interested in.
24  * </p>
25  * <p>
26  * An alternative to this class are the static helper methods
27  * {@link TreeListener#treeCollapsedAdapter(java.util.function.Consumer)}
28  * and
29  * {@link TreeListener#treeExpandedAdapter(java.util.function.Consumer)},
30  * which accept a lambda expression or a method reference that implements the event consumer.
31  * </p>
32  *
33  * @see TreeListener
34  * @see TreeEvent
35  * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
36  */
37 public abstract class TreeAdapter implements TreeListener {
38
39 /**
40  * Sent when a tree branch is collapsed.
41  * The default behavior is to do nothing.
42  *
43  * @param e an event containing information about the tree operation
44  */
45 @Override
46 public void treeCollapsed(TreeEvent e) {
47 }
48
49 /**
50  * Sent when a tree branch is expanded.
51  * The default behavior is to do nothing.
52  *
53  * @param e an event containing information about the tree operation
54  */
55 @Override
56 public void treeExpanded(TreeEvent e) {
57 }
58 }