Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 837464dc9531b2d28f9fb3ae43d1baaf80788bb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*******************************************************************************
 * Copyright (c) 2006, 2007 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.core.internal.databinding.observable.tree;

/**
 * @since 3.3
 * 
 */
public abstract class TreeDiffVisitor {

	/**
	 * Visits the given tree diff.
	 * 
	 * @param diff
	 *            the diff to visit
	 * @param currentPath
	 *            the current path (the diff's element is the last segment of
	 *            the path)
	 * 
	 * @return <code>true</code> if the tree diff's children should be
	 *         visited; <code>false</code> if they should be skipped.
	 */
	public abstract boolean visit(TreeDiffNode diff, TreePath currentPath);
}

Back to the top