Examples of IFolderLayout


Examples of org.eclipse.ui.IFolderLayout

    layout.addShowViewShortcut(LogResourcesView.ID);
   
    String editorArea = layout.getEditorArea();
    layout.setEditorAreaVisible(true);
    layout.setFixed(false);
    IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT, 0.33f, editorArea); //$NON-NLS-1$
    IFolderLayout rightBottom = layout.createFolder("rightBottom", IPageLayout.BOTTOM, 0.66f, editorArea); //$NON-NLS-1$
   
    left.addView(LogResourcesView.ID);
    rightBottom.addView(MessageFieldView.ID);
    rightBottom.addView(StacktraceFieldView.ID);
    rightBottom.addPlaceholder(IProgressConstants.PROGRESS_VIEW_ID);
  }
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.