Examples of unregisterShell()


Examples of org.eclipse.ui.contexts.IContextService.unregisterShell()

      }
    } finally {
      if (!dialog.isDisposed()) {
        cancel(dialog);
      }
      contextService.unregisterShell(dialog);
      forwardTriggerSequences = null;
      backwardTriggerSequences = null;
    }
  }
View Full Code Here

Examples of org.eclipse.ui.contexts.IContextService.unregisterShell()

            DragUtil.removeDragTarget(windowShell, this);
            bounds = windowShell.getBounds();

            // Unregister this detached view as a window (for key bindings).
      final IContextService contextService = (IContextService) getWorkbenchPage().getWorkbenchWindow().getWorkbench().getService(IContextService.class);
      contextService.unregisterShell(windowShell);

            windowShell.setData(null);
            windowShell = null;
        }
View Full Code Here

Examples of org.eclipse.ui.contexts.IContextService.unregisterShell()

      handlerActivations.clear();
      globalActionHandlersByCommandId.clear();

      // Remove the enabled submissions. Bug 64024.
      final IContextService contextService = (IContextService) workbench.getService(IContextService.class);
      contextService.unregisterShell(getShell());

      closeAllPages();

      fireWindowClosed();
     
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.