public abstract class AbstractBaseUastLocalInspectionTool extends LocalInspectionTool
EMPTY_ARRAY, VALID_ID_PATTERN
myNameProvider
Modifier | Constructor and Description |
---|---|
protected |
AbstractBaseUastLocalInspectionTool() |
protected |
AbstractBaseUastLocalInspectionTool(java.lang.Class<? extends UElement>... uElementsTypesHint) |
Modifier and Type | Method and Description |
---|---|
PsiElementVisitor |
buildVisitor(ProblemsHolder holder,
boolean isOnTheFly)
Override the method to provide your own inspection visitor.
|
ProblemDescriptor [] |
checkClass(UClass aClass,
InspectionManager manager,
boolean isOnTheFly)
Override this to report problems at class level.
|
ProblemDescriptor [] |
checkField(UField field,
InspectionManager manager,
boolean isOnTheFly)
Override this to report problems at field level.
|
ProblemDescriptor [] |
checkMethod(UMethod method,
InspectionManager manager,
boolean isOnTheFly)
Override this to report problems at method level.
|
PsiNamedElement |
getProblemElement(PsiElement psiElement)
The method finds problem container (ex: method, class, file) that used to be shown as inspection view tree node.
|
buildVisitor, checkFile, getAlternativeID, getID, getSuppressId, inspectionFinished, inspectionFinished, inspectionStarted, isValidID, processFile, runForWholeFile
cleanup, createOptionsPanel, getBatchSuppressActions, getBlackList, getDefaultLevel, getDescriptionContextClass, getDescriptionFileName, getDisplayName, getGeneralGroupName, getGroupDisplayName, getGroupKey, getGroupPath, getMainToolId, getSerializationFilter, getShortName, getShortName, getStaticDescription, getSuppressors, initialize, isEnabledByDefault, isInitialized, isSuppressedFor, loadDescription, readSettings, showDefaultConfigurationOptions, writeSettings
protected AbstractBaseUastLocalInspectionTool()
protected AbstractBaseUastLocalInspectionTool(java.lang.Class<? extends UElement>... uElementsTypesHint)
public ProblemDescriptor [] checkMethod(UMethod method, InspectionManager manager, boolean isOnTheFly)
method
- to check.manager
- InspectionManager to ask for ProblemDescriptors from.isOnTheFly
- true if called during on the fly editor highlighting. Called from Inspect Code action otherwise.null
if no problems found or not applicable at method level.public ProblemDescriptor [] checkClass(UClass aClass, InspectionManager manager, boolean isOnTheFly)
aClass
- to check.manager
- InspectionManager to ask for ProblemDescriptors from.isOnTheFly
- true if called during on the fly editor highlighting. Called from Inspect Code action otherwise.null
if no problems found or not applicable at class level.public ProblemDescriptor [] checkField(UField field, InspectionManager manager, boolean isOnTheFly)
field
- to check.manager
- InspectionManager to ask for ProblemDescriptors from.isOnTheFly
- true if called during on the fly editor highlighting. Called from Inspect Code action otherwise.null
if no problems found or not applicable at field level.public PsiElementVisitor buildVisitor(ProblemsHolder holder, boolean isOnTheFly)
LocalInspectionTool
PsiRecursiveElementVisitor
)
since it will be fed with every element in the file anyway.
Visitor created must be thread-safe since it might be called on several elements concurrently.buildVisitor
in class LocalInspectionTool
holder
- where visitor will register problems found.isOnTheFly
- true if inspection was run in non-batch modePsiRecursiveVisitor
public PsiNamedElement getProblemElement(PsiElement psiElement)
LocalInspectionTool
RefManagerExtension.getElementContainer(PsiElement)
to override container element for any inspection for given language.getProblemElement
in class LocalInspectionTool