Package com.e1c.g5.v8.dt.ql.check
Interface QlBasicDelegateCheck.IQlResultAcceptor
-
- Enclosing class:
- QlBasicDelegateCheck
public static interface QlBasicDelegateCheck.IQlResultAcceptor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addIssue(String message)
Adds issue associated with the currently checked object as a contextvoid
addIssue(String message, int length)
Adds issue with the coordinates of the marked text block.void
addIssue(String message, int lineNumber, int offset, int length)
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 Detail
-
addIssue
void addIssue(String message)
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
void addIssue(String message, int length)
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
void addIssue(String message, int lineNumber, int offset, int length)
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
-
-