IMarkerResolutionGenerator.java :  » IDE-Eclipse » ui-workbench » org » eclipse » ui » Java Open Source

Java Open Source » IDE Eclipse » ui workbench 
ui workbench » org » eclipse » ui » IMarkerResolutionGenerator.java
/*******************************************************************************
 * Copyright (c) 2000, 2007 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;

/** 
 * Creates resolutions for a given marker. 
 * When run, a resolution would typically eliminate 
 * the need for the marker.
 * 
 * @since 2.0
 */
public interface IMarkerResolutionGenerator {
    /**
     * Returns resolutions for the given marker (may
     * be empty).
     *
     * @param marker the marker
     * @return resolutions for the given marker
     */
    public IMarkerResolution[] getResolutions(IMarker marker);
}

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.