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.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
 Object ModuleFactory.createModule(String aName)
          Creates a new instance of a class from a given name.
 void Checker.finishLocalSetup()
          Provides a hook to finish the part of this compoent's setup that was not handled by the bean introspection.
 String DefaultConfiguration.getAttribute(String aName)
          The attribute value for an attribute name.
static Configuration ConfigurationLoader.loadConfiguration(String aConfig, PropertyResolver aOverridePropsResolver)
          Returns the module configurations in a specified file.
static Configuration ConfigurationLoader.loadConfiguration(String aConfig, PropertyResolver aOverridePropsResolver, boolean aOmitIgnoredModules)
          Returns the module configurations in a specified file.
static ModuleFactory PackageNamesLoader.loadModuleFactory(ClassLoader aClassLoader)
          Returns the default list of package names.
static ModuleFactory PackageNamesLoader.loadModuleFactory(String aFilename)
          Returns the package names in a specified file.
 String PropertyResolver.resolve(String aName)
          Resolves a property name to it's value.
protected  void Checker.setupChild(Configuration aChildConf)
          Instantiates, configures and registers a child AbstractFilter or FileSetCheck that is specified in the provided configuration.
 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 Configurable.configure(Configuration aConfiguration)
          Configures this component.
 void AutomaticBean.contextualize(Context aContext)
          Implements the Contextualizable interface using bean introspection.
 void Contextualizable.contextualize(Context aContext)
          Sets the context for this Component.
protected  void AutomaticBean.finishLocalSetup()
          Provides a hook to finish the part of this compoent's setup that was not handled by the bean introspection.
 String Configuration.getAttribute(String aName)
          The attribute value for an attribute name.
protected  void AutomaticBean.setupChild(Configuration aChildConf)
          Called by configure() for every child of this component's Configuration.
 

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

Methods in com.puppycrawl.tools.checkstyle.filters that throw CheckstyleException
static FilterSet SuppressionsLoader.loadSuppressions(String aFilename)
          Returns the suppression filters in a specified file.
 void SuppressionFilter.setFile(String aFileName)
          Loads the suppressions for a file.
 


Back to the Checkstyle Home Page