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 TreeWalker.setupChild(Configuration aChildConf)
          Instantiates, configures and registers a Check that is specified in the provided configuration.
static FilterSet SuppressionsLoader.loadSuppressions(java.lang.String aFilename)
          Returns the suppression filters in a specified file.
 java.lang.String PropertiesExpander.resolve(java.lang.String aPropertyName)
          Resolves a property through the underlying Properties object.
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 DefaultConfiguration.getAttribute(java.lang.String aName)
           
 java.lang.String PropertyResolver.resolve(java.lang.String aName)
          Resolves a property name to it's value.
static Configuration ConfigurationLoader.loadConfiguration(java.lang.String aConfig, PropertyResolver aOverridePropsResolver)
          Returns the module configurations in a specified file.
 java.lang.Object ModuleFactory.createModule(java.lang.String aName)
          Creates a new instance of a class from a given name.
 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.
 

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
 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.
 void Configurable.configure(Configuration aConfiguration)
          Configures this component.
 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.
 

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

Methods in com.puppycrawl.tools.checkstyle.checks that throw CheckstyleException
protected  void HeaderCheck.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
 void SuppressionFilter.setFile(java.lang.String aFileName)
          Loads the suppressions for a file.
 


Back to the Checkstyle Home Page