Package org.omegat.gui.issues
Interface IIssueProvider
-
- All Known Implementing Classes:
LanguageToolIssueProvider
public interface IIssueProviderAn interface for providing issues (problems with a translation). Implementers should inspect the source text (SourceTextEntry.getSrcText()) and target text (TMXEntry.translation) and return one or moreIIssues if there is a problem, or an empty list otherwise.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetId()java.util.List<IIssue>getIssues(SourceTextEntry sourceEntry, TMXEntry tmxEntry)java.lang.StringgetName()
-
-
-
Method Detail
-
getIssues
java.util.List<IIssue> getIssues(SourceTextEntry sourceEntry, TMXEntry tmxEntry)
-
getId
java.lang.String getId()
-
getName
java.lang.String getName()
-
-