Uses of Interface
com.puppycrawl.tools.checkstyle.api.Configuration

Packages that use Configuration
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. 
 

Uses of Configuration in com.puppycrawl.tools.checkstyle
 

Classes in com.puppycrawl.tools.checkstyle that implement Configuration
 class DefaultConfiguration
          Default implementation of the Configuration interface.
 

Methods in com.puppycrawl.tools.checkstyle that return Configuration
static Configuration ConfigurationLoader.loadConfiguration(java.lang.String aConfig, PropertyResolver aOverridePropsResolver)
          Returns the module configurations in a specified file.
 Configuration[] DefaultConfiguration.getChildren()
           
 

Methods in com.puppycrawl.tools.checkstyle with parameters of type Configuration
protected  void Checker.setupChild(Configuration aChildConf)
          Instantiates, configures and registers a child AbstractFilter or FileSetCheck that is specified in the provided configuration.
 void DefaultConfiguration.addChild(Configuration aConfiguration)
          Makes a configuration a child of this configuration.
 void TreeWalker.setupChild(Configuration aChildConf)
          Instantiates, configures and registers a Check that is specified in the provided configuration.
 

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

Methods in com.puppycrawl.tools.checkstyle.api that return Configuration
protected  Configuration AutomaticBean.getConfiguration()
          Returns the configuration that was used to configure this component.
 Configuration[] Configuration.getChildren()
          The set of child configurations.
 

Methods in com.puppycrawl.tools.checkstyle.api with parameters of type Configuration
 void AutomaticBean.configure(Configuration aConfiguration)
          Implements the Configurable interface using 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.
 


Back to the Checkstyle Home Page