Interface ICheckAcceptor
- All Known Implementing Classes:
StorageCheckAcceptor
public interface ICheckAcceptor
Provide methods for manipulate resource markers for dictionary checks.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidacceptError(String checkId, String message, DictionaryRow row) Add issue with Error severinity.voidacceptInfo(String checkId, String message, DictionaryRow row) Add issue with Info severinity.voidacceptWarning(String checkId, String message, DictionaryRow row) Add issue with Warning severinity.voidclean()Clean all issue in resource.voidflush(org.eclipse.core.runtime.IProgressMonitor monitor) Flush marker info to resource.
-
Method Details
-
clean
void clean()Clean all issue in resource. -
acceptError
Add issue with Error severinity.- Parameters:
checkId- - unique check identificator, cannot benull.message- - message for user, cannot benull.row- - dictionary row, cannot benull.
-
acceptWarning
Add issue with Warning severinity.- Parameters:
checkId- - unique check identificator, cannot benull.message- - message for user, cannot benull.row- - dictionary row, cannot benull.
-
acceptInfo
Add issue with Info severinity.- Parameters:
checkId- - unique check identificator, cannot benull.message- - message for user, cannot benull.row- - dictionary row, cannot benull.
-
flush
void flush(org.eclipse.core.runtime.IProgressMonitor monitor) Flush marker info to resource.- Parameters:
monitor- the monitor
-