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

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