blob: 3216bb74f30d6504f31af7c38857fb1325930559 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui;
import org.eclipse.core.resources.IMarker;
/**
* Resolution for a marker. When run, a resolution would
* typically eliminate the need for the marker.
*
* @since 2.0
*/
public interface IMarkerResolution {
/**
* Returns a short label indicating what the resolution will do.
*
* @return a short label for this resolution
*/
public String getLabel();
/**
* Runs this resolution.
*
* @param marker the marker to resolve
*/
public void run(IMarker marker);
}