Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: decbbb840f75540a4c54c502d620319dd3e8e6ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package org.eclipse.etrice.core.ui.quickfix;

import java.util.List;

import org.eclipse.xtext.ui.editor.quickfix.IssueResolution;
import org.eclipse.xtext.ui.editor.quickfix.IssueResolutionAcceptor;
import org.eclipse.xtext.validation.Issue;

public interface IRoomQuickfixProvider {

	void getResolution(final Issue issue, IssueResolutionAcceptor acceptor);
}

Back to the top