Package org.eclipse.dltk.internal.ui.typehierarchy

Examples of org.eclipse.dltk.internal.ui.typehierarchy.HierarchyInformationControl


    return new IInformationControlCreator() {
      @Override
      public IInformationControl createInformationControl(Shell parent) {
        int shellStyle = SWT.RESIZE;
        int treeStyle = SWT.V_SCROLL | SWT.H_SCROLL;
        return new HierarchyInformationControl(parent, shellStyle, treeStyle) {
          @Override
          protected IPreferenceStore getPreferenceStore() {
            return DeeUIPlugin.getInstance().getPreferenceStore();
          }
        };
View Full Code Here


  private IInformationControlCreator getHierarchyPresenterControlCreator() {
    return new IInformationControlCreator() {
      public IInformationControl createInformationControl(Shell parent) {
        int shellStyle = SWT.RESIZE;
        int treeStyle = SWT.V_SCROLL | SWT.H_SCROLL;
        return new HierarchyInformationControl(parent, shellStyle,
            treeStyle) {
          protected IPreferenceStore getPreferenceStore() {
            return PHPUiPlugin.getDefault().getPreferenceStore();
          }
        };
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.ui.typehierarchy.HierarchyInformationControl

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.