01: /*******************************************************************************
02: * Copyright (c) 2007 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: ******************************************************************************/package org.eclipse.ui.internal.tweaklets;
11:
12: import org.eclipse.swt.widgets.Display;
13: import org.eclipse.ui.IWorkbenchPart;
14:
15: /**
16: * @since 3.3
17: *
18: */
19: public class AllowGrabFocus extends GrabFocus {
20:
21: /*
22: * (non-Javadoc)
23: *
24: * @see org.eclipse.ui.internal.tweaklets.GrabFocusManager#allowGrabFocus(org.eclipse.ui.IWorkbenchPart)
25: */
26: public boolean grabFocusAllowed(IWorkbenchPart part) {
27: return true;
28: }
29:
30: /*
31: * (non-Javadoc)
32: *
33: * @see org.eclipse.ui.internal.tweaklets.GrabFocusManager#init(Display)
34: */
35: public void init(Display display) {
36: }
37:
38: /* (non-Javadoc)
39: * @see org.eclipse.ui.internal.tweaklets.GrabFocusManager#dispose()
40: */
41: public void dispose() {
42: }
43: }
|