Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a0a8cd019d55f5b3355da9abbf50dc4e519a5202 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*******************************************************************************
 * Copyright (c) 2005 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.debug.internal.ui.viewers;

import org.eclipse.swt.widgets.Widget;

/**
 * Common function for adds and removes.
 *  
 * @since 3.2
 */
abstract class AbstractAddRemoveRequestMonitor extends AsynchronousRequestMonitor {
	
	private TreePath fPath;

	/**
	 * Constructs a request to add/reomve an element from the tree
	 * 
	 * @param widget
	 * @param path path to the element in the tree
	 * @param viewer
	 * 
	 */
	AbstractAddRemoveRequestMonitor(Widget widget, TreePath path, AsynchronousTreeViewer viewer) {
		super(widget, viewer);
		fPath = path;
	}
	
	protected TreePath getPath() {
		return fPath;
	}

	/* (non-Javadoc)
	 * @see org.eclipse.debug.internal.ui.viewers.AsynchronousRequestMonitor#contains(org.eclipse.debug.internal.ui.viewers.AsynchronousRequestMonitor)
	 */
	protected boolean contains(AsynchronousRequestMonitor update) {
		if (update instanceof AbstractAddRemoveRequestMonitor) {
			((AbstractAddRemoveRequestMonitor)update).getPath().equals(getPath());
		}
		return false;
	}

}

Back to the top