Skip to content

Commit

Permalink
Bug 582308 Add description information to snapshot details
Browse files Browse the repository at this point in the history
Add progress view to window list.

Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=582308
Change-Id: Id8d2f1ad2945792dfd769e320deb55a5addf4e6d
  • Loading branch information
ajohnson1 committed Nov 4, 2023
1 parent 0dff02f commit b711b31
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2022 SAP AG and IBM Corporation.
* Copyright (c) 2008, 2023 SAP AG and IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand All @@ -17,7 +17,6 @@
import org.eclipse.ui.IFolderLayout;
import org.eclipse.ui.IPageLayout;
import org.eclipse.ui.IPerspectiveFactory;
import org.eclipse.ui.IPlaceholderFolderLayout;
import org.osgi.framework.Bundle;

public class Perspective implements IPerspectiveFactory
Expand All @@ -30,6 +29,7 @@ public enum Views
INSPECTOR_VIEW(MemoryAnalyserPlugin.PLUGIN_ID + ".views.InspectorView"), //$NON-NLS-1$
NAVIGATOR_VIEW(MemoryAnalyserPlugin.PLUGIN_ID + ".views.NavigatorView"), //$NON-NLS-1$
COMPARE_BASKET_VIEW(MemoryAnalyserPlugin.PLUGIN_ID + ".views.CompareBasketView"), //$NON-NLS-1$
PROGRESS_VIEW(IPageLayout.ID_PROGRESS_VIEW),
ERROR_VIEW("org.eclipse.pde.runtime.LogView");//$NON-NLS-1$

private final String id;
Expand Down Expand Up @@ -68,6 +68,7 @@ public void createInitialLayout(IPageLayout layout)
layout.addShowViewShortcut(Views.DETAILS_VIEW.getId());
layout.addShowViewShortcut(Views.INSPECTOR_VIEW.getId());
layout.addShowViewShortcut(Views.NOTES_VIEW.getId());
layout.addShowViewShortcut(Views.PROGRESS_VIEW.getId());
layout.addShowViewShortcut(Views.ERROR_VIEW.getId());
layout.addShowViewShortcut(Views.NAVIGATOR_VIEW.getId());

Expand Down

0 comments on commit b711b31

Please sign in to comment.