Skip to main content
summaryrefslogtreecommitdiffstats
blob: b38d0d85a0e49a4a533ac0a3ea3e36f9832044ec (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
61
62
63
64
65
66
/*******************************************************************************
 *  Copyright (c) 2011  Oracle. 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: 
 *  	Oracle - initial API and implementation
 *******************************************************************************/
package org.eclipse.jpt.jaxb.ui.internal.navigator;

import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jpt.jaxb.ui.internal.actions.OpenJaxbResourceAction;
import org.eclipse.ui.IActionBars;
import org.eclipse.ui.actions.ActionContext;
import org.eclipse.ui.navigator.CommonActionProvider;
import org.eclipse.ui.navigator.ICommonActionConstants;
import org.eclipse.ui.navigator.ICommonActionExtensionSite;
import org.eclipse.ui.navigator.ICommonMenuConstants;


public class JaxbNavigatorActionProvider
		extends CommonActionProvider {
	
	private OpenJaxbResourceAction openAction;
	
	
	public JaxbNavigatorActionProvider() {
		super();
	}
	
	
	@Override
	public void init(ICommonActionExtensionSite aConfig) {
		this.openAction = new OpenJaxbResourceAction();
	}
	
	@Override
	public void setContext(ActionContext aContext) {
		if (aContext != null && aContext.getSelection() instanceof IStructuredSelection) {
			IStructuredSelection selection = (IStructuredSelection) aContext.getSelection();
			this.openAction.selectionChanged(selection);
		}
		
		super.setContext(aContext);
	}
	
	@Override
	public void fillActionBars(IActionBars theActionBars) {
		if (this.openAction.isEnabled()) {
			theActionBars.setGlobalActionHandler(ICommonActionConstants.OPEN, this.openAction);
		}
	}
	
	@Override
	public void fillContextMenu(IMenuManager aMenu) {
		if (getContext() == null || getContext().getSelection().isEmpty()) {
			return;
		}
		
		if (this.openAction.isEnabled()) {
			aMenu.insertAfter(ICommonMenuConstants.GROUP_OPEN, this.openAction);
		}
	}
}

Back to the top