Package org.springframework.ide.eclipse.ui.dialogs

Examples of org.springframework.ide.eclipse.ui.dialogs.WrappingStructuredSelection


  public static ISelection getCurrentSelection() {
    IWorkbenchWindow window = JavaPlugin.getActiveWorkbenchWindow();
    if (window != null) {
      if (window.getSelectionService().getSelection() instanceof IStructuredSelection) {
        return new WrappingStructuredSelection((IStructuredSelection) window
            .getSelectionService().getSelection());
      }
      return window.getSelectionService().getSelection();
    }
    return null;
View Full Code Here


    bars.getMenuManager().add(toggleShowBeanRefsForFileAction);
  }

  public void selectionChanged(IWorkbenchPart part, ISelection selection) {
    if (selection instanceof IStructuredSelection) {
      selection = new WrappingStructuredSelection(
          (IStructuredSelection) selection);
    }
    updateTreeViewer(part, selection, true);
  }
View Full Code Here

   */
  public static ISelection getCurrentSelection() {
    IWorkbenchWindow window = JavaPlugin.getActiveWorkbenchWindow();
    if (window != null) {
      if (window.getSelectionService().getSelection() instanceof IStructuredSelection) {
        return new WrappingStructuredSelection(
            (IStructuredSelection) window.getSelectionService()
                .getSelection());
      }
      return window.getSelectionService().getSelection();
    }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  public void selectionChanged(IWorkbenchPart part, ISelection selection) {
    if (selection instanceof IStructuredSelection) {
      selection = new WrappingStructuredSelection((IStructuredSelection) selection);
    }
    updateTreeViewer(part, selection, true);
  }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.ui.dialogs.WrappingStructuredSelection

Copyright © 2018 www.massapicom. 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.