Uses of Class
com.puppycrawl.tools.checkstyle.api.CheckstyleException
-
Packages that use CheckstyleException Package Description com.puppycrawl.tools.checkstyle Contains the implementation of the Checkstyle framework.com.puppycrawl.tools.checkstyle.api Contains the core API to be used to implement checks.com.puppycrawl.tools.checkstyle.checks.header File Header checks.com.puppycrawl.tools.checkstyle.checks.imports Contains the Imports checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.javadoc Contains the Javadoc checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.regexp Contains the regular expression checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.filters Contains the filters that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.gui User interface classes for CheckStyle.com.puppycrawl.tools.checkstyle.meta Contains module metadata generation classes for checkstyle.com.puppycrawl.tools.checkstyle.utils Contains utils classes for checkstyle. -
-
Uses of CheckstyleException in com.puppycrawl.tools.checkstyle
Methods in com.puppycrawl.tools.checkstyle that throw CheckstyleException Modifier and Type Method Description java.lang.ObjectModuleFactory. createModule(java.lang.String name)Creates a new instance of a class from a given name.java.lang.ObjectPackageObjectFactory. createModule(java.lang.String name)Creates a new instance of a class from a given name, or that name concatenated with "Check".protected voidChecker. finishLocalSetup()java.lang.StringDefaultConfiguration. getAttribute(java.lang.String attributeName)static java.util.Set<java.lang.String>PackageNamesLoader. getPackageNames(java.lang.ClassLoader classLoader)Returns the set of package names, compiled from all checkstyle_packages.xml files found on the given class loaders classpath.static ConfigurationConfigurationLoader. loadConfiguration(java.lang.String config, PropertyResolver overridePropsResolver)Returns the module configurations in a specified file.static ConfigurationConfigurationLoader. loadConfiguration(java.lang.String config, PropertyResolver overridePropsResolver, ConfigurationLoader.IgnoredModulesOptions ignoredModulesOptions)Returns the module configurations in a specified file.static ConfigurationConfigurationLoader. loadConfiguration(java.lang.String config, PropertyResolver overridePropsResolver, ConfigurationLoader.IgnoredModulesOptions ignoredModulesOptions, ThreadModeSettings threadModeSettings)Returns the module configurations in a specified file.static ConfigurationConfigurationLoader. loadConfiguration(java.lang.String config, PropertyResolver overridePropsResolver, ThreadModeSettings threadModeSettings)Returns the module configurations in a specified file.static ConfigurationConfigurationLoader. loadConfiguration(org.xml.sax.InputSource configSource, PropertyResolver overridePropsResolver, ConfigurationLoader.IgnoredModulesOptions ignoredModulesOptions)Returns the module configurations from a specified input source.static ConfigurationConfigurationLoader. loadConfiguration(org.xml.sax.InputSource configSource, PropertyResolver overridePropsResolver, ConfigurationLoader.IgnoredModulesOptions ignoredModulesOptions, ThreadModeSettings threadModeSettings)Returns the module configurations from a specified input source.static voidJavadocPropertiesGenerator. main(java.lang.String... args)TokenTypes.properties generator entry point.static DetailASTJavaParser. parse(FileContents contents)Static helper method to parses a Java source file.static DetailASTJavaParser. parseFile(java.io.File file, JavaParser.Options options)Parses Java source file.static DetailASTJavaParser. parseFileText(FileText text, JavaParser.Options options)Parse a text and return the parse tree.static java.lang.StringAstTreeStringPrinter. printAst(FileText text, JavaParser.Options options)Parse a file and print the parse tree.static java.lang.StringAstTreeStringPrinter. printFileAst(java.io.File file, JavaParser.Options options)Parse a file and print the parse tree.static java.lang.StringAstTreeStringPrinter. printJavaAndJavadocTree(java.io.File file)Prints full AST (java + comments + javadoc) of the java file.static java.lang.StringSuppressionsStringPrinter. printSuppressions(java.io.File file, java.lang.String suppressionLineColumnNumber, int tabWidth)Prints generated suppressions.intChecker. process(java.util.List<java.io.File> files)protected voidTreeWalker. processFiltered(java.io.File file, FileText fileText)protected voidChecker. setupChild(Configuration childConf)Called by configure() for every child of this component's Configuration.voidTreeWalker. setupChild(Configuration childConf)Called by configure() for every child of this component's Configuration. -
Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.api
Methods in com.puppycrawl.tools.checkstyle.api that throw CheckstyleException Modifier and Type Method Description voidAutomaticBean. configure(Configuration config)Implements the Configurable interface using bean introspection.voidConfigurable. configure(Configuration configuration)Configures this component.voidAutomaticBean. contextualize(Context context)Implements the Contextualizable interface using bean introspection.voidContextualizable. contextualize(Context context)Sets the context for this Component.protected voidAbstractViolationReporter. finishLocalSetup()protected abstract voidAutomaticBean. finishLocalSetup()Provides a hook to finish the part of this component's setup that was not handled by the bean introspection.java.lang.StringConfiguration. getAttribute(java.lang.String name)The attribute value for an attribute name.java.util.SortedSet<LocalizedMessage>AbstractFileSetCheck. process(java.io.File file, FileText fileText)java.util.SortedSet<LocalizedMessage>FileSetCheck. process(java.io.File file, FileText fileText)Request to process a file.intRootModule. process(java.util.List<java.io.File> files)Processes a set of files.protected abstract voidAbstractFileSetCheck. processFiltered(java.io.File file, FileText fileText)Called to process a file that matches the specified file extensions.protected voidAutomaticBean. setupChild(Configuration childConf)Called by configure() for every child of this component's Configuration. -
Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.checks.header
Methods in com.puppycrawl.tools.checkstyle.checks.header that throw CheckstyleException Modifier and Type Method Description protected voidAbstractHeaderCheck. finishLocalSetup()voidAbstractHeaderCheck. setHeaderFile(java.net.URI uri)Setter to specify the name of the file containing the required header.. -
Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.checks.imports
Methods in com.puppycrawl.tools.checkstyle.checks.imports that throw CheckstyleException Modifier and Type Method Description static com.puppycrawl.tools.checkstyle.checks.imports.PkgImportControlImportControlLoader. load(java.net.URI uri)Loads the import control file from a file. -
Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.checks.javadoc
Methods in com.puppycrawl.tools.checkstyle.checks.javadoc that throw CheckstyleException Modifier and Type Method Description protected voidJavadocPackageCheck. processFiltered(java.io.File file, FileText fileText) -
Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.checks.regexp
Methods in com.puppycrawl.tools.checkstyle.checks.regexp that throw CheckstyleException Modifier and Type Method Description protected voidRegexpOnFilenameCheck. processFiltered(java.io.File file, FileText fileText) -
Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.filters
Methods in com.puppycrawl.tools.checkstyle.filters that throw CheckstyleException Modifier and Type Method Description protected voidSuppressionFilter. finishLocalSetup()protected voidSuppressionXpathFilter. finishLocalSetup()static FilterSetSuppressionsLoader. loadSuppressions(java.lang.String filename)Returns the suppression filters in a specified file.static java.util.Set<TreeWalkerFilter>SuppressionsLoader. loadXpathSuppressions(java.lang.String filename)Returns the suppressionTreeWalkerfilters in a specified file. -
Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.gui
Methods in com.puppycrawl.tools.checkstyle.gui that throw CheckstyleException Modifier and Type Method Description voidMainFrameModel. openFile(java.io.File file)Open file and load the file. -
Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.meta
Methods in com.puppycrawl.tools.checkstyle.meta that throw CheckstyleException Modifier and Type Method Description static voidMetadataGeneratorUtil. generate(java.lang.String... args)Generate metadata from the module source files available in the input argument path. -
Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.utils
Methods in com.puppycrawl.tools.checkstyle.utils that throw CheckstyleException Modifier and Type Method Description static java.net.URICommonUtil. getUriByFilename(java.lang.String filename)Resolve the specified filename to a URI.static java.lang.StringXpathUtil. printXpathBranch(java.lang.String xpath, java.io.File file)Returns xpath query results on file as string.
-