public class DeprecationInspection extends DeprecationInspectionBase
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
ID |
boolean |
IGNORE_ABSTRACT_DEPRECATED_OVERRIDES |
boolean |
IGNORE_IMPORT_STATEMENTS |
boolean |
IGNORE_INSIDE_DEPRECATED |
boolean |
IGNORE_METHODS_OF_DEPRECATED |
static java.lang.String |
IGNORE_METHODS_OF_DEPRECATED_NAME |
static java.lang.String |
SHORT_NAME |
IGNORE_IN_SAME_OUTERMOST_CLASS
EMPTY_ARRAY, VALID_ID_PATTERN
myNameProvider
Constructor and Description |
---|
DeprecationInspection() |
Modifier and Type | Method and Description |
---|---|
PsiElementVisitor |
buildVisitor(ProblemsHolder holder,
boolean isOnTheFly)
Override the method to provide your own inspection visitor.
|
javax.swing.JComponent |
createOptionsPanel()
This method is called each time UI is shown.
|
java.lang.String |
getGroupDisplayName() |
java.lang.String |
getID()
If you want to change suppression id you have to define it in XML as well.
|
java.lang.String |
getShortName()
DO NOT OVERRIDE this method.
|
checkDeprecated, getDescription, getPresentableName, isElementInsideDeprecated, isEnabledByDefault, isForRemovalAttributeSet, isForRemovalAttributeSet
buildVisitor, checkFile, getAlternativeID, getProblemElement, getSuppressId, inspectionFinished, inspectionFinished, inspectionStarted, isValidID, processFile, runForWholeFile
cleanup, getBatchSuppressActions, getBlackList, getDefaultLevel, getDescriptionContextClass, getDescriptionFileName, getDisplayName, getGeneralGroupName, getGroupKey, getGroupPath, getMainToolId, getSerializationFilter, getShortName, getStaticDescription, getSuppressors, initialize, isInitialized, isSuppressedFor, loadDescription, readSettings, showDefaultConfigurationOptions, writeSettings
public static final java.lang.String SHORT_NAME
public static final java.lang.String ID
public static final java.lang.String IGNORE_METHODS_OF_DEPRECATED_NAME
public boolean IGNORE_INSIDE_DEPRECATED
public boolean IGNORE_ABSTRACT_DEPRECATED_OVERRIDES
public boolean IGNORE_IMPORT_STATEMENTS
public boolean IGNORE_METHODS_OF_DEPRECATED
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 java.lang.String getGroupDisplayName()
getGroupDisplayName
in class InspectionProfileEntry
InspectionEP.groupDisplayName
,
InspectionEP.groupKey
,
InspectionEP.groupBundle
public java.lang.String getShortName()
InspectionProfileEntry
getShortName
in class InspectionProfileEntry
InspectionEP.shortName
public java.lang.String getID()
LocalInspectionTool
Inspection tool ID is a descriptive name to be used in "suppress" comments and annotations.
It must satisfy LocalInspectionTool.VALID_ID_PATTERN
regexp pattern.
If not defined InspectionProfileEntry.getShortName()
is used as tool ID.
getID
in class LocalInspectionTool
public javax.swing.JComponent createOptionsPanel()
InspectionProfileEntry
createOptionsPanel
in class InspectionProfileEntry
null
if no UI options required.