Package org.omegat.gui.issues
Interface IIssueProvider
-
- All Known Implementing Classes:
LanguageToolIssueProvider
public interface IIssueProvider
An 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 moreIIssue
s 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.String
getId()
java.util.List<IIssue>
getIssues(SourceTextEntry sourceEntry, TMXEntry tmxEntry)
java.lang.String
getName()
-
-
-
Method Detail
-
getIssues
java.util.List<IIssue> getIssues(SourceTextEntry sourceEntry, TMXEntry tmxEntry)
-
getId
java.lang.String getId()
-
getName
java.lang.String getName()
-
-