public void createInitialLayout(IPageLayout layout) {
			// Folders
			var editorArea = layout.getEditorArea();
			var explorerFolder = layout.createFolder("explorer", IPageLayout.LEFT, 0.25f, editorArea);
			explorerFolder.addView(IPageLayout.ID_PROJECT_EXPLORER);
			
			var problemsFolder = layout.createFolder("problems", IPageLayout.BOTTOM, 0.75f, editorArea);
			problemsFolder.addView(IPageLayout.ID_PROBLEM_VIEW);
			problemsFolder.addView(IPageLayout.ID_TASK_LIST);
			problemsFolder.addView(IConsoleConstants.ID_CONSOLE_VIEW);
			
			// Shortcuts
		    layout.addNewWizardShortcut("org.eclipse.ui.wizards.new.folder");
		    layout.addNewWizardShortcut("org.eclipse.ui.wizards.new.file");
		    
		    layout.addShowViewShortcut("org.eclipse.ui.views.ResourceNavigator");
		    layout.addShowViewShortcut(IPageLayout.ID_PROJECT_EXPLORER);
	
		    // Action sets
		    layout.addActionSet(IDebugUIConstants.LAUNCH_ACTION_SET);
		}
        public void createInitialLayout(IPageLayout layout)
        {
            // Folders
            var editorArea     = layout.getEditorArea();
            var explorerFolder = layout.createFolder("explorer", IPageLayout.LEFT, 0.25f, editorArea);

            explorerFolder.addView(IPageLayout.ID_PROJECT_EXPLORER);

            var problemsFolder = layout.createFolder("problems", IPageLayout.BOTTOM, 0.75f, editorArea);

            problemsFolder.addView(IPageLayout.ID_PROBLEM_VIEW);
            problemsFolder.addView(IPageLayout.ID_TASK_LIST);
            problemsFolder.addView(IConsoleConstants.ID_CONSOLE_VIEW);

            // Shortcuts
            layout.addNewWizardShortcut("org.eclipse.ui.wizards.new.folder");
            layout.addNewWizardShortcut("org.eclipse.ui.wizards.new.file");

            layout.addShowViewShortcut("org.eclipse.ui.views.ResourceNavigator");
            layout.addShowViewShortcut(IPageLayout.ID_PROJECT_EXPLORER);

            // Action sets
            layout.addActionSet(IDebugUIConstants.LAUNCH_ACTION_SET);
        }