public class CollectionAddAllCanBeReplacedWithConstructorInspection extends AbstractBaseJavaLocalInspectionTool
EMPTY_ARRAY, VALID_ID_PATTERNmyNameProvider| Constructor and Description |
|---|
CollectionAddAllCanBeReplacedWithConstructorInspection() |
| Modifier and Type | Method and Description |
|---|---|
PsiElementVisitor |
buildVisitor(ProblemsHolder holder,
boolean isOnTheFly,
LocalInspectionToolSession session)
Override the method to provide your own inspection visitor, if you need to store additional state in the
LocalInspectionToolSession user data or get information about the inspection scope.
|
javax.swing.JComponent |
createOptionsPanel()
This method is called each time UI is shown.
|
void |
readSettings(Element node)
Read in settings from XML config.
|
void |
writeSettings(Element node)
Store current settings in XML config.
|
buildVisitor, checkClass, checkField, checkMethodcheckFile, getAlternativeID, getID, getProblemElement, getSuppressId, inspectionFinished, inspectionFinished, inspectionStarted, isValidID, processFile, runForWholeFilecleanup, getBatchSuppressActions, getBlackList, getDefaultLevel, getDescriptionContextClass, getDescriptionFileName, getDisplayName, getGeneralGroupName, getGroupDisplayName, getGroupKey, getGroupPath, getMainToolId, getSerializationFilter, getShortName, getShortName, getStaticDescription, getSuppressors, initialize, isEnabledByDefault, isInitialized, isSuppressedFor, loadDescription, showDefaultConfigurationOptionspublic CollectionAddAllCanBeReplacedWithConstructorInspection()
public void writeSettings(Element node)
throws WriteExternalException
InspectionProfileEntryint TOOL_OPTION)
and bean-style getters/setters (like int getToolOption(), void setToolOption(int)) to store your options.writeSettings in class InspectionProfileEntrynode - to store settings to.WriteExternalExceptionpublic javax.swing.JComponent createOptionsPanel()
InspectionProfileEntrycreateOptionsPanel in class InspectionProfileEntrynull if no UI options required.public void readSettings(Element node)
throws InvalidDataException
InspectionProfileEntryint TOOL_OPTION)
and bean-style getters/setters (like int getToolOption(), void setToolOption(int)) to store your options.readSettings in class InspectionProfileEntrynode - to read settings from.InvalidDataException - if the loaded data was not valid.public PsiElementVisitor buildVisitor(ProblemsHolder holder, boolean isOnTheFly, LocalInspectionToolSession session)
LocalInspectionToolPsiRecursiveElementVisitor)
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 LocalInspectionToolholder - where visitor will register problems found.isOnTheFly - true if inspection was run in non-batch modesession - the session in the context of which the tool runs.PsiRecursiveVisitor