-
Classes Class Description com.puppycrawl.tools.checkstyle.api.AutomaticBean since 10.9.3. UseAbstractAutomaticBean
instead.
-
Methods Method Description com.puppycrawl.tools.checkstyle.ant.CheckstyleAntTask.createClasspath() left in implementation until #12556 only to allow users to migrate to new gradle plugins. This method will be removed in Checkstyle 11.x.x .com.puppycrawl.tools.checkstyle.api.AbstractCheck.getFileContents() Usage of this method is no longer accepted. Please use AST based methods instead.com.puppycrawl.tools.checkstyle.api.Configuration.getAttribute(String) This shall be removed in future releases. Please usegetProperty(String name)
instead.com.puppycrawl.tools.checkstyle.api.Configuration.getAttributeNames() This shall be removed in future releases. Please usegetPropertyNames()
instead.com.puppycrawl.tools.checkstyle.api.DetailAST.branchContains(int) Usage of this method is no longer accepted. We encourage traversal of subtrees to be written per the needs of each check to avoid unintended side effects.com.puppycrawl.tools.checkstyle.api.DetailAST.getNumberOfChildren() This method will be removed in a future release. UseDetailAST.getChildCount()
instead.com.puppycrawl.tools.checkstyle.api.FileContents.inPackageInfo() useCheckUtil.isPackageInfo(String)
for the same functionality, or useAbstractCheck.getFilePath()
to process your own standards.com.puppycrawl.tools.checkstyle.DefaultConfiguration.addAttribute(String, String) This shall be removed in future releases. Please useaddProperty(String propertyName, String value)
instead.