Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 350266

Summary: [Compatibility] Jubula's 'Functional Text Execution' perspective comes up blank
Product: [Eclipse Project] Platform Reporter: Remy Suen <remy.suen>
Component: UIAssignee: Remy Suen <remy.suen>
Status: RESOLVED FIXED QA Contact: Remy Suen <remy.suen>
Severity: major    
Priority: P3 CC: pwebster
Version: 4.1   
Target Milestone: 4.2 M1   
Hardware: All   
OS: All   
Whiteboard:
Bug Depends on: 350082    
Bug Blocks: 350080    
Attachments:
Description Flags
ModeledFolderLayout patch v1 none

Description Remy Suen CLA 2011-06-24 10:08:19 EDT
+++ This bug was initially created as a clone of Bug #350082 +++

This perspective comes up blank for some reasons. The layout code below will reproduce the problem.

public void createInitialLayout(IPageLayout layout) { 

String editorArea = layout.getEditorArea();
IFolderLayout left = layout.createFolder("left", //$NON-NLS-1$
    IPageLayout.LEFT, 0.27f, editorArea);
IFolderLayout topLeft = layout.createFolder("topLeft", //$NON-NLS-1$
    IPageLayout.TOP, 0.27f, "left"); //$NON-NLS-1$
IFolderLayout topRight = layout.createFolder("topRight", //$NON-NLS-1$
    IPageLayout.RIGHT,  0.6f, editorArea);
IFolderLayout bottomRight = layout.createFolder("bottomRight", //$NON-NLS-1$
    IPageLayout.BOTTOM,  0.5f, "topRight"); //$NON-NLS-1$
IFolderLayout middle = layout.createFolder("middle", //$NON-NLS-1$
    IPageLayout.LEFT, 0.27f, editorArea);
IFolderLayout middleBottom = layout.createFolder("middleBottom", //$NON-NLS-1$
    IPageLayout.BOTTOM, 0.8f, "middle"); //$NON-NLS-1$
left.addView(IPageLayout.ID_BOOKMARKS);
topLeft.addView(IPageLayout.ID_RES_NAV);
middle.addView(IPageLayout.ID_OUTLINE);
middleBottom.addView(IPageLayout.ID_PROGRESS_VIEW);
topRight.addView(IPageLayout.ID_PROBLEM_VIEW);
bottomRight.addView(IPageLayout.ID_PROJECT_EXPLORER);

}
Comment 1 Remy Suen CLA 2011-06-24 10:25:34 EDT
Created attachment 198537 [details]
ModeledFolderLayout patch v1
Comment 2 Remy Suen CLA 2011-06-24 10:32:25 EDT
(In reply to comment #1)
> Created attachment 198537 [details]
> ModeledFolderLayout patch v1

Patch released to CVS HEAD.