public class NonAsciiCharactersInspection extends LocalInspectionTool
| Modifier and Type | Field and Description |
|---|---|
boolean |
CHECK_FOR_DIFFERENT_LANGUAGES_IN_IDENTIFIER_NAME |
boolean |
CHECK_FOR_FILES_CONTAINING_BOM |
boolean |
CHECK_FOR_NOT_ASCII_COMMENT |
boolean |
CHECK_FOR_NOT_ASCII_IDENTIFIER_NAME |
boolean |
CHECK_FOR_NOT_ASCII_STRING_LITERAL |
EMPTY_ARRAY, VALID_ID_PATTERNmyNameProvider| Constructor and Description |
|---|
NonAsciiCharactersInspection() |
| 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.
|
java.lang.String |
getGroupDisplayName() |
java.lang.String |
getShortName()
DO NOT OVERRIDE this method.
|
buildVisitor, checkFile, getAlternativeID, getID, getProblemElement, getSuppressId, inspectionFinished, inspectionFinished, inspectionStarted, isValidID, processFile, runForWholeFilecleanup, getBatchSuppressActions, getBlackList, getDefaultLevel, getDescriptionContextClass, getDescriptionFileName, getDisplayName, getGeneralGroupName, getGroupKey, getGroupPath, getMainToolId, getSerializationFilter, getShortName, getStaticDescription, getSuppressors, initialize, isEnabledByDefault, isInitialized, isSuppressedFor, loadDescription, readSettings, showDefaultConfigurationOptions, writeSettingspublic boolean CHECK_FOR_NOT_ASCII_IDENTIFIER_NAME
public boolean CHECK_FOR_NOT_ASCII_STRING_LITERAL
public boolean CHECK_FOR_NOT_ASCII_COMMENT
public boolean CHECK_FOR_DIFFERENT_LANGUAGES_IN_IDENTIFIER_NAME
public boolean CHECK_FOR_FILES_CONTAINING_BOM
public java.lang.String getGroupDisplayName()
getGroupDisplayName in class InspectionProfileEntryInspectionEP.groupDisplayName,
InspectionEP.groupKey,
InspectionEP.groupBundlepublic java.lang.String getShortName()
InspectionProfileEntrygetShortName in class InspectionProfileEntryInspectionEP.shortNamepublic 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.PsiRecursiveVisitorpublic javax.swing.JComponent createOptionsPanel()
InspectionProfileEntrycreateOptionsPanel in class InspectionProfileEntrynull if no UI options required.