blob: d79db0ddaa410d204976bcd8a22e9b47fd375a1c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.profiling.dt;
public class RefreshProfilerViewAction extends ProfilerViewAction {
public RefreshProfilerViewAction(ProfilerView profilerView) {
super(profilerView);
setText("Refresh view");
setImageDescriptor(Activator.getImageDescriptor("icons/refresh.gif"));
}
@Override
public void run() {
profilerView.refresh();
}
}