Examples of aboutToBeShown()


Examples of org.eclipse.ui.views.properties.tabbed.ISection.aboutToBeShown()

    control = new Composite(parent, SWT.NONE);
    view.createPartControl(control);

    if (view instanceof ISection) {
      ISection section = (ISection) view;
      section.aboutToBeShown();
    }
  }

  @Override
  public void init(IPageSite pageSite) {
View Full Code Here

Examples of org.eclipse.ui.views.properties.tabbed.ISection.aboutToBeShown()

      if (page instanceof ViewPropertySheetPage) {
        ViewPropertySheetPage sheetPage = (ViewPropertySheetPage) page;
        IViewPage viewPage = sheetPage.getView();
        if (viewPage instanceof ISection) {
          ISection section = (ISection) viewPage;
          section.aboutToBeShown();
        }
      }
    } catch (Throwable t) {
      Activator.getLogger().warning("aboutToBeShown() Failed with: " + t, t);
    }
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.