Package com.e1c.g5.v8.dt.ql.check
Interface QlBasicDelegateCheck.IQlResultAcceptor
- All Known Implementing Classes:
BaseQlDelegatingCheck.QlModelResultAcceptor
- Enclosing class:
- QlBasicDelegateCheck
public static interface QlBasicDelegateCheck.IQlResultAcceptor
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds issue associated with the currently checked object as a contextvoid
Adds issue with the coordinates of the marked text block.void
Adds issue with the generic coordinates of the marked text block.void
addIssue
(String message, org.eclipse.emf.ecore.EObject target, org.eclipse.emf.ecore.EStructuralFeature feature) Adds issue associated with the given target object and featurevoid
addIssue
(String message, org.eclipse.emf.ecore.EObject target, org.eclipse.emf.ecore.EStructuralFeature manyFeature, int index) Adds issue for element with given index in feature collection and with the given message.
-
Method Details
-
addIssue
Adds issue associated with the currently checked object as a context- Parameters:
message
- The issue's message, notnull
-
addIssue
void addIssue(String message, org.eclipse.emf.ecore.EObject target, org.eclipse.emf.ecore.EStructuralFeature feature) Adds issue associated with the given target object and feature- Parameters:
message
- The issue's message, notnull
target
- The target object, notnull
feature
- The target object feacture, notnull
-
addIssue
void addIssue(String message, org.eclipse.emf.ecore.EObject target, org.eclipse.emf.ecore.EStructuralFeature manyFeature, int index) Adds issue for element with given index in feature collection and with the given message.- Parameters:
message
- The issue's message, notnull
manyFeature
- The target object feature, notnull
index
- The index in feature collection. May not be negative
-
addIssue
Adds issue with the coordinates of the marked text block. The block starts at the beginning of the current element's syntax model and has a given length- Parameters:
message
- The issue's message, notnull
length
- The length of the coordinate block
-
addIssue
Adds issue with the generic coordinates of the marked text block.- Parameters:
message
- The issue's message, notnull
lineNumber
- The line numberoffset
- The offset from the line's beginninglength
- The length of the block
-