CallingContextViewActions.java
Go to the documentation of this file.00001 package edu.rice.cs.hpc.viewer.scope;
00002
00003 import org.eclipse.swt.widgets.Composite;
00004 import org.eclipse.swt.widgets.CoolBar;
00005 import org.eclipse.swt.widgets.Shell;
00006 import org.eclipse.ui.IWorkbenchWindow;
00007
00008
00009 public class CallingContextViewActions extends BaseScopeViewActions {
00010
00011 public CallingContextViewActions(Shell shell, IWorkbenchWindow window,
00012 Composite parent, CoolBar coolbar)
00013 {
00014 super(shell, window, parent, coolbar);
00015 }
00016
00020 protected Composite createGUI(Composite parent, CoolBar coolbar)
00021 {
00022 this.objActionsGUI = new CallingContextActionsGUI(this.objShell,
00023 this.objWindow, parent, this);
00024 return objActionsGUI.buildGUI(parent, coolbar);
00025 }
00026 }