1 11 12 package org.eclipse.ui.internal.tweaklets; 13 14 import org.eclipse.swt.widgets.Display; 15 import org.eclipse.ui.IWorkbenchPart; 16 17 21 public class AllowGrabFocus extends GrabFocus { 22 23 28 public boolean grabFocusAllowed(IWorkbenchPart part) { 29 return true; 30 } 31 32 37 public void init(Display display) { 38 } 39 40 43 public void dispose() { 44 } 45 } 46 | Popular Tags |