Uses of Interface
com.puppycrawl.tools.checkstyle.api.Configuration
-
Packages that use Configuration 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. -
-
Uses of Configuration in com.puppycrawl.tools.checkstyle
Classes in com.puppycrawl.tools.checkstyle that implement Configuration Modifier and Type Class Description classDefaultConfigurationDefault implementation of the Configuration interface.Fields in com.puppycrawl.tools.checkstyle declared as Configuration Modifier and Type Field Description private ConfigurationPropertyCacheFile. configConfiguration object.private ConfigurationConfigurationLoader. configurationThe Configuration that is being built.Fields in com.puppycrawl.tools.checkstyle with type parameters of type Configuration Modifier and Type Field Description private java.util.List<Configuration>DefaultConfiguration. childrenThe list of child Configurations.Methods in com.puppycrawl.tools.checkstyle that return Configuration Modifier and Type Method Description Configuration[]DefaultConfiguration. getChildren()static ConfigurationConfigurationLoader. loadConfiguration(java.io.InputStream configStream, PropertyResolver overridePropsResolver, boolean omitIgnoredModules)Deprecated.As this method does not provide a valid system ID, preventing resolution of external entities, aversion using an InputSourceshould be used insteadstatic 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, boolean omitIgnoredModules)Returns the module configurations in a specified file.static ConfigurationConfigurationLoader. loadConfiguration(org.xml.sax.InputSource configSource, PropertyResolver overridePropsResolver, boolean omitIgnoredModules)Returns the module configurations from a specified input source.Methods in com.puppycrawl.tools.checkstyle with parameters of type Configuration Modifier and Type Method Description voidDefaultConfiguration. addChild(Configuration configuration)Makes a configuration a child of this configuration.private booleanConfigurationLoader.InternalLoader. containsAttribute(Configuration module, java.lang.String attributeName)Util method to recheck attribute in module.voidDefaultConfiguration. removeChild(Configuration configuration)Removes a child of this configuration.protected voidChecker. setupChild(Configuration childConf)voidTreeWalker. setupChild(Configuration childConf)Constructors in com.puppycrawl.tools.checkstyle with parameters of type Configuration Constructor Description PropertyCacheFile(Configuration config, java.lang.String fileName)Creates a newPropertyCacheFileinstance. -
Uses of Configuration in com.puppycrawl.tools.checkstyle.api
Fields in com.puppycrawl.tools.checkstyle.api declared as Configuration Modifier and Type Field Description private ConfigurationAutomaticBean. configurationThe configuration of this bean.Methods in com.puppycrawl.tools.checkstyle.api that return Configuration Modifier and Type Method Description Configuration[]Configuration. getChildren()The set of child configurations.protected ConfigurationAutomaticBean. getConfiguration()Returns the configuration that was used to configure this component.Methods in com.puppycrawl.tools.checkstyle.api with parameters of type Configuration Modifier and Type Method Description voidAutomaticBean. configure(Configuration config)Implements the Configurable interface using bean introspection.voidConfigurable. configure(Configuration configuration)Configures this component.protected voidAutomaticBean. setupChild(Configuration childConf)Called by configure() for every child of this component's Configuration.
-