blob: d9df2e3103c70c2fbfca7571586b96f8be2d2fee [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, Istvan Rath and Daniel Varro
* 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:
* Istvan Rath - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.errors.reporting;
import org.eclipse.core.resources.IResource;
import org.eclipse.viatra2.errors.info.ErrorInformation;
public interface IErrorReporter {
/**
* Creates a new problem marker from the {@link ErrorInformation} info
* @param info {@link ErrorInformation}
*/
public void reportError(ErrorInformation info);
/**
* Removes problem marker from {@link IResource} resource of a certain type
* @param type
*/
public void deleteMarkers(String type);
}