Uses of Class
com.puppycrawl.tools.checkstyle.api.CheckstyleException

Packages that use CheckstyleException
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 Contains the checks that are bundled with the main distribution. 
com.puppycrawl.tools.checkstyle.filters Contains the filters that are bundled with the main distribution. 
 

Uses of CheckstyleException in com.puppycrawl.tools.checkstyle
 

Methods in com.puppycrawl.tools.checkstyle that throw CheckstyleException
 void Checker.finishLocalSetup()
           
protected  void Checker.setupChild(Configuration aChildConf)
          Instantiates, configures and registers a child AbstractFilter or FileSetCheck that is specified in the provided configuration.
static Configuration ConfigurationLoader.loadConfiguration(java.lang.String aConfig, PropertyResolver aOverridePropsResolver)
          Returns the module configurations in a specified file.
 java.lang.String DefaultConfiguration.getAttribute(java.lang.String aName)
           
 java.lang.Object ModuleFactory.createModule(java.lang.String aName)
          Creates a new instance of a class from a given name.
static ModuleFactory PackageNamesLoader.loadModuleFactory(java.lang.ClassLoader aClassLoader)
          Returns the default list of package names.
static ModuleFactory PackageNamesLoader.loadModuleFactory(java.lang.String aFilename)
          Returns the package names in a specified file.
 java.lang.String PropertyResolver.resolve(java.lang.String aName)
          Resolves a property name to it's value.
 void TreeWalker.setupChild(Configuration aChildConf)
          Instantiates, configures and registers a Check that is specified in the provided configuration.
 

Constructors in com.puppycrawl.tools.checkstyle that throw CheckstyleException
Checker()
          Creates a new Checker instance.
 

Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.api
 

Methods in com.puppycrawl.tools.checkstyle.api that throw CheckstyleException
 void AutomaticBean.configure(Configuration aConfiguration)
          Implements the Configurable interface using bean introspection.
 void AutomaticBean.contextualize(Context aContext)
          Implements the Contextualizable interface using bean introspection.
protected  void AutomaticBean.finishLocalSetup()
          Provides a hook to finish the part of this compoent's setup that was not handled by the bean introspection.
protected  void AutomaticBean.setupChild(Configuration aChildConf)
          Called by configure() for every child of this component's Configuration.
 void Configurable.configure(Configuration aConfiguration)
          Configures this component.
 java.lang.String Configuration.getAttribute(java.lang.String aName)
          The attribute value for an attribute name.
 void Contextualizable.contextualize(Context aContext)
          Sets the context for this Component.
 

Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.checks
 

Methods in com.puppycrawl.tools.checkstyle.checks that throw CheckstyleException
protected  void AbstractHeaderCheck.finishLocalSetup()
          Checks that required args were specified.
 

Uses of CheckstyleException in com.puppycrawl.tools.checkstyle.filters
 

Methods in com.puppycrawl.tools.checkstyle.filters that throw CheckstyleException
protected  void SuppressionCommentFilter.finishLocalSetup()
          Check that everything was set up properly.
 void SuppressionFilter.setFile(java.lang.String aFileName)
          Loads the suppressions for a file.
static FilterSet SuppressionsLoader.loadSuppressions(java.lang.String aFilename)
          Returns the suppression filters in a specified file.
 


Back to the Checkstyle Home Page