Examples of TreeSelection


Examples of org.eclipse.jface.viewers.TreeSelection

  @Override
  public void init(IWorkbench workbench, IStructuredSelection selection) {
    this.workbench = workbench;
    if (selection != null && selection instanceof TreeSelection){
      TreeSelection tselection = (TreeSelection)selection;
      if (tselection.getFirstElement() instanceof IResource){
        IResource resource = (IResource)tselection.getFirstElement();
        project = resource.getProject();
       
      }
    } else {
      MessageDialog.openError(Display.getDefault().getActiveShell(), "Project Error", "No project resource selected");
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.