Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 51b7e9e02cf2130ac0860eafbd1ad5bede8bd35d (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
52
53
54
55
56
57
58
59
60
/*******************************************************************************
 * Copyright (c) 2003, 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.sourcelookup;

import org.eclipse.debug.core.sourcelookup.ISourceContainer;
import org.eclipse.debug.core.sourcelookup.ISourceLookupDirector;
import org.eclipse.debug.core.sourcelookup.containers.DefaultSourceContainer;
import org.eclipse.jface.viewers.IStructuredSelection;

/**
 * The action for adding the default container to the list.
 * 
 * @since 3.0
 */
public class RestoreDefaultAction extends SourceContainerAction {
	
	private ISourceLookupDirector fDirector;

	public RestoreDefaultAction() {
		super(SourceLookupUIMessages.sourceTab_defaultButton); 
	}
	/**
	 * @see IAction#run()
	 */
	@Override
	public void run() {		
		ISourceContainer[] containers = new ISourceContainer[1];
		containers[0] = new DefaultSourceContainer();
		containers[0].init(fDirector);
		getViewer().setEntries(containers);
		setEnabled(false);
	}

	public void setSourceLookupDirector(ISourceLookupDirector director) {
		fDirector = director;
	}

	/**
	 * @see SelectionListenerAction#updateSelection(IStructuredSelection)
	 */
	@Override
	protected boolean updateSelection(IStructuredSelection selection) {
		//disable if selection is empty, default already present, or non-root node selected
		ISourceContainer[] containers = getViewer().getEntries();
		if(containers != null && containers.length == 1) {
			if(containers[0] instanceof DefaultSourceContainer) {
				return false;
			}
		}		
		return true;	
	}
}

Back to the top