blob: 79527b3df7f016ea248c41c4b3eb121ed73351d0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 University of Illinois at Urbana-Champaign and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* UIUC - Initial API and implementation
*******************************************************************************/
package org.eclipse.photran.internal.ui.actions;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.photran.internal.core.analysis.binding.Binder;
import org.eclipse.rephraserengine.core.vpg.eclipse.EclipseVPG;
import org.eclipse.rephraserengine.ui.actions.VPGWindowActionDelegate;
/**
* Implements the Reset VPG Statistics action in the Refactor/(Debugging) menu
*
* @author Jeff Overbey
*/
public class ResetBinderStatistics extends VPGWindowActionDelegate
{
@SuppressWarnings("rawtypes")
@Override
protected void run(EclipseVPG vpg, IProgressMonitor progressMonitor) throws Exception
{
Binder.resetStatistics();
}
}