blob: e9538b8631322d4bf3ece865125a575e8d6fa309 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Sonatype, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.m2e.core.internal.markers;
import org.eclipse.core.resources.IFile;
import org.apache.maven.project.MavenProject;
/**
* IEditorMarkerService
*
* @author mkleint
*/
public interface IEditorMarkerService {
/**
* adds m2e's own editor markers to the pom file in question
*
* @param markerManager
* @param pom
* @param mavenProject
* @param type
*/
void addEditorHintMarkers(IMavenMarkerManager markerManager, IFile pom, MavenProject mavenProject, String type);
}