git_sniffer 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +19 -0
- data/Gemfile +8 -0
- data/LICENSE.txt +22 -0
- data/README.md +81 -0
- data/Rakefile +21 -0
- data/example/author_with_commits_changed_lines.rb +29 -0
- data/example/fixture/JSON-java.git/HEAD +1 -0
- data/example/fixture/JSON-java.git/config +11 -0
- data/example/fixture/JSON-java.git/description +1 -0
- data/example/fixture/JSON-java.git/hooks/applypatch-msg.sample +15 -0
- data/example/fixture/JSON-java.git/hooks/commit-msg.sample +24 -0
- data/example/fixture/JSON-java.git/hooks/post-update.sample +8 -0
- data/example/fixture/JSON-java.git/hooks/pre-applypatch.sample +14 -0
- data/example/fixture/JSON-java.git/hooks/pre-commit.sample +50 -0
- data/example/fixture/JSON-java.git/hooks/pre-rebase.sample +169 -0
- data/example/fixture/JSON-java.git/hooks/prepare-commit-msg.sample +36 -0
- data/example/fixture/JSON-java.git/hooks/update.sample +128 -0
- data/example/fixture/JSON-java.git/index +0 -0
- data/example/fixture/JSON-java.git/info/exclude +6 -0
- data/example/fixture/JSON-java.git/logs/HEAD +1 -0
- data/example/fixture/JSON-java.git/logs/refs/heads/master +1 -0
- data/example/fixture/JSON-java.git/logs/refs/remotes/origin/HEAD +1 -0
- data/example/fixture/JSON-java.git/objects/pack/pack-4a6120228a95b05b34afbfc44249afc220fd7b01.idx +0 -0
- data/example/fixture/JSON-java.git/objects/pack/pack-4a6120228a95b05b34afbfc44249afc220fd7b01.pack +0 -0
- data/example/fixture/JSON-java.git/packed-refs +2 -0
- data/example/fixture/JSON-java.git/refs/heads/master +1 -0
- data/example/fixture/JSON-java.git/refs/remotes/origin/HEAD +1 -0
- data/example/max_cc_changes_with_commits.rb +35 -0
- data/git_sniffer.gemspec +20 -0
- data/lib/git_sniffer.rb +10 -0
- data/lib/git_sniffer/base.rb +59 -0
- data/lib/git_sniffer/blob.rb +16 -0
- data/lib/git_sniffer/commit.rb +55 -0
- data/lib/git_sniffer/hook.rb +21 -0
- data/lib/git_sniffer/lazy.rb +28 -0
- data/lib/git_sniffer/memory_file.rb +21 -0
- data/lib/git_sniffer/metric_parsers.rb +15 -0
- data/lib/git_sniffer/object.rb +44 -0
- data/lib/git_sniffer/single_file_metric.rb +53 -0
- data/lib/git_sniffer/third_party_helper.rb +10 -0
- data/lib/git_sniffer/tree.rb +9 -0
- data/lib/git_sniffer/version.rb +3 -0
- data/spec/base_spec.rb +14 -0
- data/spec/blob_spec.rb +26 -0
- data/spec/commit_spec.rb +81 -0
- data/spec/fixture/simple_java.git/COMMIT_EDITMSG +1 -0
- data/spec/fixture/simple_java.git/HEAD +1 -0
- data/spec/fixture/simple_java.git/config +5 -0
- data/spec/fixture/simple_java.git/description +1 -0
- data/spec/fixture/simple_java.git/hooks/applypatch-msg.sample +15 -0
- data/spec/fixture/simple_java.git/hooks/commit-msg.sample +24 -0
- data/spec/fixture/simple_java.git/hooks/post-commit.sample +8 -0
- data/spec/fixture/simple_java.git/hooks/post-receive.sample +15 -0
- data/spec/fixture/simple_java.git/hooks/post-update.sample +8 -0
- data/spec/fixture/simple_java.git/hooks/pre-applypatch.sample +14 -0
- data/spec/fixture/simple_java.git/hooks/pre-commit.sample +46 -0
- data/spec/fixture/simple_java.git/hooks/pre-rebase.sample +172 -0
- data/spec/fixture/simple_java.git/hooks/prepare-commit-msg.sample +36 -0
- data/spec/fixture/simple_java.git/hooks/update.sample +128 -0
- data/spec/fixture/simple_java.git/index +0 -0
- data/spec/fixture/simple_java.git/info/exclude +6 -0
- data/spec/fixture/simple_java.git/logs/HEAD +6 -0
- data/spec/fixture/simple_java.git/logs/refs/heads/master +3 -0
- data/spec/fixture/simple_java.git/objects/00/cb610e642d0fac84ad4dac479b98ef447099cd +0 -0
- data/spec/fixture/simple_java.git/objects/23/e947f776b09fb585fbd16dca6b14ed4bd0c37e +0 -0
- data/spec/fixture/simple_java.git/objects/47/3e66f56cf9dcb2b875961937148e159b70d2b7 +2 -0
- data/spec/fixture/simple_java.git/objects/6b/468b62a9884e67ca19b673f8e14e1931d65036 +0 -0
- data/spec/fixture/simple_java.git/objects/b9/09f7f1c27fc2ac344d3abda0e705645f556180 +2 -0
- data/spec/fixture/simple_java.git/objects/c0/25dce424130b546754eb391a13eb601c4a243c +0 -0
- data/spec/fixture/simple_java.git/objects/ca/212902ea1d8694e51d1dd889b0072f2d3e7032 +0 -0
- data/spec/fixture/simple_java.git/objects/e1/d38109f134f22505b941ab6c11d5cc1e8b4f8b +0 -0
- data/spec/fixture/simple_java.git/objects/e9/b02fdf95aa827c0bb2c244622120886a452bab +0 -0
- data/spec/fixture/simple_java.git/objects/f0/50e6b7dfe73d6af9d867e3622c0cae3e818207 +0 -0
- data/spec/fixture/simple_java.git/objects/f8/15e728173402ce9c19b090e5b85f93c5c422bf +0 -0
- data/spec/fixture/simple_java.git/refs/heads/master +1 -0
- data/spec/fixture/single_commit.git/COMMIT_EDITMSG +1 -0
- data/spec/fixture/single_commit.git/HEAD +1 -0
- data/spec/fixture/single_commit.git/config +5 -0
- data/spec/fixture/single_commit.git/description +1 -0
- data/spec/fixture/single_commit.git/hooks/applypatch-msg.sample +15 -0
- data/spec/fixture/single_commit.git/hooks/commit-msg.sample +24 -0
- data/spec/fixture/single_commit.git/hooks/post-commit.sample +8 -0
- data/spec/fixture/single_commit.git/hooks/post-receive.sample +15 -0
- data/spec/fixture/single_commit.git/hooks/post-update.sample +8 -0
- data/spec/fixture/single_commit.git/hooks/pre-applypatch.sample +14 -0
- data/spec/fixture/single_commit.git/hooks/pre-commit.sample +46 -0
- data/spec/fixture/single_commit.git/hooks/pre-rebase.sample +172 -0
- data/spec/fixture/single_commit.git/hooks/prepare-commit-msg.sample +36 -0
- data/spec/fixture/single_commit.git/hooks/update.sample +128 -0
- data/spec/fixture/single_commit.git/index +0 -0
- data/spec/fixture/single_commit.git/info/exclude +6 -0
- data/spec/fixture/single_commit.git/logs/HEAD +1 -0
- data/spec/fixture/single_commit.git/logs/refs/heads/master +1 -0
- data/spec/fixture/single_commit.git/objects/3e/79e57cf125e8a8905ba91bd5e4ea1c3ee697c8 +3 -0
- data/spec/fixture/single_commit.git/objects/ba/77bcd50299e90d6ee00bd1cf3160512db635a8 +0 -0
- data/spec/fixture/single_commit.git/objects/e9/23f854774fc767cb9e02a3d0d616d188a81c53 +0 -0
- data/spec/fixture/single_commit.git/refs/heads/master +1 -0
- data/spec/fixture/single_file.git/COMMIT_EDITMSG +1 -0
- data/spec/fixture/single_file.git/HEAD +1 -0
- data/spec/fixture/single_file.git/config +5 -0
- data/spec/fixture/single_file.git/description +1 -0
- data/spec/fixture/single_file.git/hooks/applypatch-msg.sample +15 -0
- data/spec/fixture/single_file.git/hooks/commit-msg.sample +24 -0
- data/spec/fixture/single_file.git/hooks/post-update.sample +8 -0
- data/spec/fixture/single_file.git/hooks/pre-applypatch.sample +14 -0
- data/spec/fixture/single_file.git/hooks/pre-commit.sample +50 -0
- data/spec/fixture/single_file.git/hooks/pre-rebase.sample +169 -0
- data/spec/fixture/single_file.git/hooks/prepare-commit-msg.sample +36 -0
- data/spec/fixture/single_file.git/hooks/update.sample +128 -0
- data/spec/fixture/single_file.git/index +0 -0
- data/spec/fixture/single_file.git/info/exclude +6 -0
- data/spec/fixture/single_file.git/logs/HEAD +1 -0
- data/spec/fixture/single_file.git/logs/refs/heads/master +1 -0
- data/spec/fixture/single_file.git/objects/2e/9e543b5a88defe9ce9120cbac147cb6624d1bb +0 -0
- data/spec/fixture/single_file.git/objects/64/30ff7fb2944a0f0569fd1d416aaae3c09eafe0 +5 -0
- data/spec/fixture/single_file.git/objects/ee/a82e4e55fb15580ee5150a530f1785b94b378d +0 -0
- data/spec/fixture/single_file.git/refs/heads/master +1 -0
- data/spec/hook_spec.rb +73 -0
- data/spec/lazy_spec.rb +55 -0
- data/spec/object_spec.rb +27 -0
- data/spec/repo_cc_specslow.rb +41 -0
- data/spec/sha1_spec.rb +21 -0
- data/spec/single_file_metric_spec.rb +46 -0
- data/spec/spec_helper.rb +5 -0
- data/third_party_tools/checkstyle-5.6/LICENSE +504 -0
- data/third_party_tools/checkstyle-5.6/LICENSE.apache20 +202 -0
- data/third_party_tools/checkstyle-5.6/README +45 -0
- data/third_party_tools/checkstyle-5.6/RIGHTS.antlr +32 -0
- data/third_party_tools/checkstyle-5.6/antlr-2.7.7.jar +0 -0
- data/third_party_tools/checkstyle-5.6/checkstyle-5.6-all.jar +0 -0
- data/third_party_tools/checkstyle-5.6/checkstyle-5.6.jar +0 -0
- data/third_party_tools/checkstyle-5.6/checkstyle_checks.xml +218 -0
- data/third_party_tools/checkstyle-5.6/commons-beanutils-core-1.8.3.jar +0 -0
- data/third_party_tools/checkstyle-5.6/commons-cli-1.2.jar +0 -0
- data/third_party_tools/checkstyle-5.6/commons-logging-1.1.1.jar +0 -0
- data/third_party_tools/checkstyle-5.6/contrib/JavadocCheckDefault.java +62 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/docs/BCELConfig.xml +15 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/AbstractCheckVisitor.java +157 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/ClassFileSetCheck.java +317 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/EmptyClassFileVisitor.java +17 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/EmptyDeepVisitor.java +86 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/EmptyGenericVisitor.java +18 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/IDeepVisitor.java +25 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/IObjectSetVisitor.java +37 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/JavaClassWalker.java +40 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/ReferenceVisitor.java +194 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/VisitorSet.java +149 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/checks/AbstractReferenceCheck.java +150 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/checks/HiddenInheritedFieldCheck.java +64 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/checks/HiddenStaticMethodCheck.java +88 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/checks/UnreadFieldCheck.java +58 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/checks/UnreadVariableCheck.java +130 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/checks/UnusedMethodCheck.java +64 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/checks/messages.properties +5 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/classfile/FieldDefinition.java +89 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/classfile/FieldOrMethodDefinition.java +50 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/classfile/JavaClassDefinition.java +188 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/classfile/MethodDefinition.java +175 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/classfile/ReferenceDAO.java +140 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/classfile/Utils.java +39 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/generic/FieldOrMethodReference.java +61 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/generic/FieldReference.java +22 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/generic/GETFIELDReference.java +28 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/generic/GETSTATICReference.java +28 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/generic/InvokeReference.java +38 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/generic/PUTFIELDReference.java +28 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/generic/PUTSTATICReference.java +28 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/checkstyle/com/puppycrawl/tools/checkstyle/bcel/generic/Utils.java +71 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/testinputs/com/puppycrawl/tools/checkstyle/bcel/checks/InheritLibrary.java +11 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/testinputs/com/puppycrawl/tools/checkstyle/bcel/checks/SubClass.java +54 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/testinputs/com/puppycrawl/tools/checkstyle/bcel/checks/SuperClass.java +46 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/tests/com/puppycrawl/tools/checkstyle/bcel/BcelCheckTestCase.java +127 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/tests/com/puppycrawl/tools/checkstyle/bcel/checks/HiddenInheritedFieldTest.java +22 -0
- data/third_party_tools/checkstyle-5.6/contrib/bcel/src/tests/com/puppycrawl/tools/checkstyle/bcel/checks/HiddenStaticMethodTest.java +22 -0
- data/third_party_tools/checkstyle-5.6/contrib/checkstyle-author.xsl +230 -0
- data/third_party_tools/checkstyle-5.6/contrib/checkstyle-csv.xsl +11 -0
- data/third_party_tools/checkstyle-5.6/contrib/checkstyle-frames-errors.xsl +394 -0
- data/third_party_tools/checkstyle-5.6/contrib/checkstyle-frames.xsl +382 -0
- data/third_party_tools/checkstyle-5.6/contrib/checkstyle-noframes-severity-sorted.xsl +210 -0
- data/third_party_tools/checkstyle-5.6/contrib/checkstyle-noframes-sorted.xsl +179 -0
- data/third_party_tools/checkstyle-5.6/contrib/checkstyle-noframes.xsl +179 -0
- data/third_party_tools/checkstyle-5.6/contrib/checkstyle-simple.xsl +71 -0
- data/third_party_tools/checkstyle-5.6/contrib/checkstyle-text.xsl +26 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/XInclude/NamespacesSAXParserFactoryImpl.java +21 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/XInclude/config.xml +26 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/XInclude/index.html +142 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/XInclude/treewalker.xml +7 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/all-checkstyle-checks.xml +1126 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/mycompany/checks/LimitImplementationFiles.java +69 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/mycompany/checks/MethodLimitCheck.java +63 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/mycompany/checks/messages.properties +2 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/puppycrawl/tools/checkstyle/checks/xpath/Attribute.java +107 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/puppycrawl/tools/checkstyle/checks/xpath/AttributeAxisIterator.java +98 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/puppycrawl/tools/checkstyle/checks/xpath/DocumentNavigator.java +437 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/puppycrawl/tools/checkstyle/checks/xpath/NodeIterator.java +122 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/puppycrawl/tools/checkstyle/checks/xpath/XPathCheck.java +103 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/puppycrawl/tools/checkstyle/checks/xpath/jaxen_LICENSE.txt +56 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/puppycrawl/tools/checkstyle/checks/xpath/messages.properties +6 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/puppycrawl/tools/checkstyle/checks/xpath/package.html +10 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/puppycrawl/tools/checkstyle/checks/xpath/saxpath_LICENSE.txt +60 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/com/puppycrawl/tools/checkstyle/checks/xpath/xpath_config.xml +44 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/checks/mycompany_conf.xml +44 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/conf/BlochEffectiveJava.xml +113 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/conf/openorb.xml +139 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/conf/template_config.xml +788 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/filters/com/mycompany/filters/FilesFilter.java +34 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/linkErrors2Source/build.xml +70 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/linkErrors2Source/checkstyle-noframes.xsl +190 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/linkErrors2Source/readme.txt +6 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/listeners/com/mycompany/listeners/CommonsLoggingListener.java +127 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/listeners/com/mycompany/listeners/MailLogger.java +241 -0
- data/third_party_tools/checkstyle-5.6/contrib/examples/listeners/com/mycompany/listeners/VerboseListener.java +111 -0
- data/third_party_tools/checkstyle-5.6/contrib/hooks/git-pre-commit-hook.pl +72 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/AbstractUsageCheck.java +200 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/OneMethodPrivateFieldCheck.java +139 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/UnusedLocalVariableCheck.java +59 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/UnusedParameterCheck.java +132 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/UnusedPrivateFieldCheck.java +63 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/UnusedPrivateMethodCheck.java +244 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/messages.properties +5 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/messages_fi.properties +5 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/messages_fr.properties +5 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/package.html +10 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ASTManager.java +228 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ASTUtil.java +220 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/AnonymousInnerClass.java +62 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ArrayDef.java +154 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ArrayLengthMember.java +48 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/BaseScope.java +100 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/BlockDef.java +53 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ClassDef.java +362 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ClassImportException.java +35 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ClassManager.java +41 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/DefaultConstructor.java +65 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/DefaultScope.java +82 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/Definition.java +203 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/DefinitionTraverser.java +139 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/DotIterator.java +108 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ExternalClass.java +373 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ExternalConstructor.java +101 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ExternalDefinition.java +50 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ExternalMethod.java +128 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ExternalPackage.java +95 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ExternalSignature.java +97 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ExternalVariable.java +76 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/IClass.java +142 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/IDefinition.java +84 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/IMethod.java +67 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/IPackage.java +63 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ISignature.java +58 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/IVariable.java +39 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/InterfaceConstructor.java +90 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/LabelDef.java +48 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/LiteralResolver.java +157 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/MethodDef.java +157 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/MethodSignature.java +138 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/MethodSpecificityComparator.java +59 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/NullClass.java +107 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/Occurrence.java +131 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/PackageDef.java +66 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/PrimitiveClasses.java +107 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/QueryEngine.java +185 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/Reference.java +141 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ReferenceCounter.java +88 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ReferenceThreshold.java +78 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ReferenceTool.java +55 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/Resolver.java +1893 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/Scope.java +124 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/ScopeIndex.java +140 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/Span.java +153 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/SymTabAST.java +554 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/SymTabASTFactory.java +76 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/SymTabASTIterator.java +95 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/SymbolTable.java +274 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/SymbolTableException.java +35 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/TableMaker.java +1460 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/Typed.java +45 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/UnknownClass.java +174 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/usage/transmogrify/VariableDef.java +132 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/testinputs/com/puppycrawl/tools/checkstyle/usage/InputEmptyFile.java +2 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/testinputs/com/puppycrawl/tools/checkstyle/usage/InputInnerUsedMethod.java +23 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/testinputs/com/puppycrawl/tools/checkstyle/usage/InputOneMethodPrivateField.java +114 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/testinputs/com/puppycrawl/tools/checkstyle/usage/InputUnusedField.java +97 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/testinputs/com/puppycrawl/tools/checkstyle/usage/InputUnusedLocal.java +60 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/testinputs/com/puppycrawl/tools/checkstyle/usage/InputUnusedMethod.java +155 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/testinputs/com/puppycrawl/tools/checkstyle/usage/InputUnusedParameter.java +50 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/tests/com/puppycrawl/tools/checkstyle/checks/usage/AllTests.java +23 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/tests/com/puppycrawl/tools/checkstyle/checks/usage/OneMethodPrivateFieldCheckTest.java +46 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/tests/com/puppycrawl/tools/checkstyle/checks/usage/UnusedLocalVariableCheckTest.java +34 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/tests/com/puppycrawl/tools/checkstyle/checks/usage/UnusedParameterCheckTest.java +58 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/tests/com/puppycrawl/tools/checkstyle/checks/usage/UnusedPrivateFieldCheckTest.java +36 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/tests/com/puppycrawl/tools/checkstyle/checks/usage/UnusedPrivateMethodCheckTest.java +78 -0
- data/third_party_tools/checkstyle-5.6/contrib/usage/src/xdocs/config_usage.xml +359 -0
- data/third_party_tools/checkstyle-5.6/google-collections-1.0.jar +0 -0
- data/third_party_tools/checkstyle-5.6/import-control.xml +62 -0
- data/third_party_tools/checkstyle-5.6/java.header +18 -0
- data/third_party_tools/checkstyle-5.6/rules/cc.xml +45 -0
- data/third_party_tools/checkstyle-5.6/rules/method_length.xml +46 -0
- data/third_party_tools/checkstyle-5.6/rules/parameter_number.xml +46 -0
- data/third_party_tools/checkstyle-5.6/site/anttask.html +571 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/allclasses-frame.html +288 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/allclasses-noframe.html +288 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/CheckStyleTask.Formatter.html +324 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/CheckStyleTask.FormatterType.html +296 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/CheckStyleTask.Listener.html +278 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/CheckStyleTask.Property.html +320 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/CheckStyleTask.html +643 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/Checker.html +726 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/ConfigurationLoader.html +330 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/DefaultConfiguration.html +436 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/DefaultContext.html +313 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/DefaultLogger.html +437 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/Defn.html +239 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/Main.html +232 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/ModuleFactory.html +227 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/PackageNamesLoader.html +320 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/PropertiesExpander.html +282 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/PropertyResolver.html +228 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/TreeWalker.html +489 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/XMLLogger.html +430 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/AbstractFileSetCheck.html +580 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/AbstractLoader.html +421 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/AbstractViolationReporter.html +471 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/AnnotationUtility.html +388 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/AuditEvent.html +454 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/AuditListener.html +319 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/AutomaticBean.html +376 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/Check.html +661 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/CheckstyleException.html +281 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/Comment.html +415 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/Configurable.html +228 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/Configuration.html +300 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/Context.html +240 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/Contextualizable.html +230 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/DetailAST.html +602 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/FastStack.html +441 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/FileContents.html +563 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/FileSetCheck.html +337 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/FileText.html +502 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/Filter.html +220 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/FilterSet.html +394 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/FullIdent.html +319 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/JavadocTagInfo.Type.html +339 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/JavadocTagInfo.html +834 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/LineColumn.html +304 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/LocalizedMessage.html +535 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/LocalizedMessages.html +311 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/MessageDispatcher.html +255 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/Scope.html +460 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/ScopeUtils.html +387 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/SeverityLevel.html +418 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/SeverityLevelCounter.html +397 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/TextBlock.html +320 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/TokenTypes.html +5356 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/Utils.html +483 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/AbstractFileSetCheck.html +380 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/AbstractLoader.html +187 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/AbstractViolationReporter.html +1568 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/AnnotationUtility.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/AuditEvent.html +399 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/AuditListener.html +236 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/AutomaticBean.html +1641 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/Check.html +1394 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/CheckstyleException.html +361 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/Comment.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/Configurable.html +1663 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/Configuration.html +300 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/Context.html +193 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/Contextualizable.html +1663 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/DetailAST.html +2049 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/FastStack.html +161 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/FileContents.html +275 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/FileSetCheck.html +422 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/FileText.html +207 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/Filter.html +285 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/FilterSet.html +167 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/FullIdent.html +206 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/JavadocTagInfo.Type.html +174 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/JavadocTagInfo.html +180 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/LineColumn.html +174 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/LocalizedMessage.html +263 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/LocalizedMessages.html +176 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/MessageDispatcher.html +211 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/Scope.html +201 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/ScopeUtils.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/SeverityLevel.html +226 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/SeverityLevelCounter.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/TextBlock.html +224 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/TokenTypes.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/class-use/Utils.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/package-frame.html +63 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/package-summary.html +394 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/package-tree.html +231 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/api/package-use.html +1379 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/AbstractFormatCheck.html +392 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/AbstractOptionCheck.html +340 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/AbstractTypeAwareCheck.ClassInfo.html +284 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/AbstractTypeAwareCheck.Token.html +333 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/AbstractTypeAwareCheck.html +662 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/ArrayTypeStyleCheck.html +352 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/CheckUtils.html +421 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/ClassResolver.html +326 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/DeclarationCollector.html +375 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/DescendantTokenCheck.html +642 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/FileContentsHolder.html +369 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/FinalParametersCheck.html +359 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/LineSeparatorOption.html +394 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/NewlineAtEndOfFileCheck.html +369 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/OuterTypeFilenameCheck.html +353 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/RegexpCheck.html +473 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/TodoCommentCheck.html +369 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/TrailingCommentCheck.html +455 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/TranslationCheck.html +387 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/UncommentedMainCheck.html +421 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/UpperEllCheck.html +351 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/AnnotationUseStyleCheck.ClosingParens.html +356 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/AnnotationUseStyleCheck.ElementStyle.html +374 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/AnnotationUseStyleCheck.TrailingArrayComma.html +356 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/AnnotationUseStyleCheck.html +551 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/MissingDeprecatedCheck.html +389 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/MissingOverrideCheck.html +440 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/PackageAnnotationCheck.html +388 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/SuppressWarningsCheck.html +424 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/class-use/AnnotationUseStyleCheck.ClosingParens.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/class-use/AnnotationUseStyleCheck.ElementStyle.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/class-use/AnnotationUseStyleCheck.TrailingArrayComma.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/class-use/AnnotationUseStyleCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/class-use/MissingDeprecatedCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/class-use/MissingOverrideCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/class-use/PackageAnnotationCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/class-use/SuppressWarningsCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/package-frame.html +30 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/package-summary.html +213 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/package-tree.html +164 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/annotation/package-use.html +167 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/AvoidNestedBlocksCheck.html +406 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/BlockOption.html +346 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/EmptyBlockCheck.html +389 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/LeftCurlyCheck.html +394 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/LeftCurlyOption.html +381 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/NeedBracesCheck.html +356 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/RightCurlyCheck.html +392 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/RightCurlyOption.html +350 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/class-use/AvoidNestedBlocksCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/class-use/BlockOption.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/class-use/EmptyBlockCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/class-use/LeftCurlyCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/class-use/LeftCurlyOption.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/class-use/NeedBracesCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/class-use/RightCurlyCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/class-use/RightCurlyOption.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/package-frame.html +30 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/package-summary.html +206 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/package-tree.html +164 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/blocks/package-use.html +165 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/AbstractFormatCheck.html +415 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/AbstractOptionCheck.html +275 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/AbstractTypeAwareCheck.ClassInfo.html +168 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/AbstractTypeAwareCheck.Token.html +250 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/AbstractTypeAwareCheck.html +190 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/ArrayTypeStyleCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/CheckUtils.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/ClassResolver.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/DeclarationCollector.html +162 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/DescendantTokenCheck.html +171 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/FileContentsHolder.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/FinalParametersCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/LineSeparatorOption.html +168 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/NewlineAtEndOfFileCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/OuterTypeFilenameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/RegexpCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/TodoCommentCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/TrailingCommentCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/TranslationCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/UncommentedMainCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/class-use/UpperEllCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/AbstractIllegalCheck.html +333 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/AbstractIllegalMethodCheck.html +342 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/AbstractNestedDepthCheck.html +408 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/AbstractSuperCheck.html +398 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/ArrayTrailingCommaCheck.html +343 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/AvoidInlineConditionalsCheck.html +361 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/CovariantEqualsCheck.html +364 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.html +427 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/DefaultComesLastCheck.html +372 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/EmptyStatementCheck.html +348 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/EqualsAvoidNullCheck.html +406 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/EqualsHashCodeCheck.html +389 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/ExplicitInitializationCheck.html +370 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/FallThroughCheck.html +443 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/FinalLocalVariableCheck.html +408 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/HiddenFieldCheck.html +544 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/IllegalCatchCheck.html +368 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/IllegalInstantiationCheck.html +463 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/IllegalThrowsCheck.html +385 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenCheck.html +377 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenTextCheck.html +466 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTypeCheck.html +458 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/InnerAssignmentCheck.html +340 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/JUnitTestCaseCheck.html +358 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/MagicNumberCheck.html +396 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/MissingCtorCheck.html +379 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/MissingSwitchDefaultCheck.html +366 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/ModifiedControlVariableCheck.html +396 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/MultipleStringLiteralsCheck.html +430 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/MultipleVariableDeclarationsCheck.html +349 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/NestedForDepthCheck.html +382 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/NestedIfDepthCheck.html +367 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/NestedTryDepthCheck.html +367 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/NoCloneCheck.html +392 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/NoFinalizerCheck.html +289 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/OneStatementPerLineCheck.html +374 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/PackageDeclarationCheck.html +415 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/ParameterAssignmentCheck.html +405 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/RedundantThrowsCheck.html +429 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/RequireThisCheck.html +453 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/ReturnCountCheck.html +452 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/SimplifyBooleanExpressionCheck.html +389 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/SimplifyBooleanReturnCheck.html +340 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/StringLiteralEqualityCheck.html +338 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/SuperCloneCheck.html +334 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/SuperFinalizeCheck.html +334 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/UnnecessaryParenthesesCheck.html +374 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/AbstractIllegalCheck.html +170 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/AbstractIllegalMethodCheck.html +171 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/AbstractNestedDepthCheck.html +174 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/AbstractSuperCheck.html +170 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/ArrayTrailingCommaCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/AvoidInlineConditionalsCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/CovariantEqualsCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/DeclarationOrderCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/DefaultComesLastCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/EmptyStatementCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/EqualsAvoidNullCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/EqualsHashCodeCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/ExplicitInitializationCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/FallThroughCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/FinalLocalVariableCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/HiddenFieldCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/IllegalCatchCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/IllegalInstantiationCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/IllegalThrowsCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/IllegalTokenCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/IllegalTokenTextCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/IllegalTypeCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/InnerAssignmentCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/JUnitTestCaseCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/MagicNumberCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/MissingCtorCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/MissingSwitchDefaultCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/ModifiedControlVariableCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/MultipleStringLiteralsCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/MultipleVariableDeclarationsCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/NestedForDepthCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/NestedIfDepthCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/NestedTryDepthCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/NoCloneCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/NoFinalizerCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/OneStatementPerLineCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/PackageDeclarationCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/ParameterAssignmentCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/RedundantThrowsCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/RequireThisCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/ReturnCountCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/SimplifyBooleanExpressionCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/SimplifyBooleanReturnCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/StringLiteralEqualityCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/SuperCloneCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/SuperFinalizeCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/UnnecessaryParenthesesCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/package-frame.html +66 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/package-summary.html +480 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/package-tree.html +216 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/package-use.html +173 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/DesignForExtensionCheck.html +357 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/FinalClassCheck.html +361 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/HideUtilityClassConstructorCheck.html +336 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/InnerTypeLastCheck.html +355 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/InterfaceIsTypeCheck.html +382 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/MutableExceptionCheck.html +396 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/ThrowsCountCheck.html +403 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/VisibilityModifierCheck.html +420 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/class-use/DesignForExtensionCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/class-use/FinalClassCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/class-use/HideUtilityClassConstructorCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/class-use/InnerTypeLastCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/class-use/InterfaceIsTypeCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/class-use/MutableExceptionCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/class-use/ThrowsCountCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/class-use/VisibilityModifierCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/package-frame.html +27 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/package-summary.html +198 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/package-tree.html +153 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/design/package-use.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/duplicates/StrictDuplicateCodeCheck.html +415 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/duplicates/class-use/StrictDuplicateCodeCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/duplicates/package-frame.html +20 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/duplicates/package-summary.html +148 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/duplicates/package-tree.html +142 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/duplicates/package-use.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/header/AbstractHeaderCheck.html +426 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/header/HeaderCheck.html +374 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/header/RegexpHeaderCheck.html +378 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/header/class-use/AbstractHeaderCheck.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/header/class-use/HeaderCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/header/class-use/RegexpHeaderCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/header/package-frame.html +22 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/header/package-summary.html +160 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/header/package-tree.html +147 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/header/package-use.html +154 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/AvoidStarImportCheck.html +415 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/AvoidStaticImportCheck.html +385 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/IllegalImportCheck.html +381 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/ImportControlCheck.html +402 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/ImportOrderCheck.html +498 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/ImportOrderOption.html +433 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/RedundantImportCheck.html +374 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/UnusedImportsCheck.html +422 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/class-use/AvoidStarImportCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/class-use/AvoidStaticImportCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/class-use/IllegalImportCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/class-use/ImportControlCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/class-use/ImportOrderCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/class-use/ImportOrderOption.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/class-use/RedundantImportCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/class-use/UnusedImportsCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/package-frame.html +30 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/package-summary.html +208 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/package-tree.html +164 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/imports/package-use.html +155 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/ArrayInitHandler.html +446 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/AssignHandler.html +346 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/BlockParentHandler.html +599 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/CaseHandler.html +336 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/CatchHandler.html +324 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/ClassDefHandler.html +408 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/DoWhileHandler.html +303 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/ElseHandler.html +324 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html +723 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/FinallyHandler.html +303 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/ForHandler.html +327 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/HandlerFactory.html +308 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/IfHandler.html +369 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/ImportHandler.html +291 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/IndentLevel.html +374 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html +563 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/LabelHandler.html +312 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/LineSet.html +370 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/MemberDefHandler.html +315 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/MethodCallHandler.html +355 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/MethodDefHandler.html +324 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/NewHandler.html +331 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/ObjectBlockHandler.html +408 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/PackageDefHandler.html +291 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/PrimordialHandler.html +330 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/SlistHandler.html +432 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/StaticInitHandler.html +303 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/SwitchHandler.html +387 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/TryHandler.html +306 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/WhileHandler.html +303 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/ArrayInitHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/AssignHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/BlockParentHandler.html +252 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/CaseHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/CatchHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/ClassDefHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/DoWhileHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/ElseHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/ExpressionHandler.html +602 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/FinallyHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/ForHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/HandlerFactory.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/IfHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/ImportHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/IndentLevel.html +321 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/IndentationCheck.html +394 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/LabelHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/LineSet.html +164 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/MemberDefHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/MethodCallHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/MethodDefHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/NewHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/ObjectBlockHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/PackageDefHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/PrimordialHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/SlistHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/StaticInitHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/SwitchHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/TryHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/class-use/WhileHandler.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/package-frame.html +49 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/package-summary.html +322 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/package-tree.html +177 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/indentation/package-use.html +175 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/InvalidJavadocTag.html +295 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocMethodCheck.html +596 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocPackageCheck.html +371 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocStyleCheck.html +437 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocTag.html +449 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocTags.html +281 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocTypeCheck.html +441 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocUtils.JavadocTagType.html +349 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocUtils.html +255 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocVariableCheck.html +367 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/WriteTagCheck.html +464 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/InvalidJavadocTag.html +173 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/JavadocMethodCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/JavadocPackageCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/JavadocStyleCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/JavadocTag.html +173 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/JavadocTags.html +162 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/JavadocTypeCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/JavadocUtils.JavadocTagType.html +184 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/JavadocUtils.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/JavadocVariableCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/class-use/WriteTagCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/package-frame.html +33 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/package-summary.html +219 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/package-tree.html +171 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/javadoc/package-use.html +170 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/AbstractClassCouplingCheck.html +429 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/AbstractComplexityCheck.html +518 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/BooleanExpressionComplexityCheck.html +411 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/ClassDataAbstractionCouplingCheck.html +342 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/ClassFanOutComplexityCheck.html +343 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/CyclomaticComplexityCheck.html +369 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/JavaNCSSCheck.html +475 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/NPathComplexityCheck.html +390 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/class-use/AbstractClassCouplingCheck.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/class-use/AbstractComplexityCheck.html +168 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/class-use/BooleanExpressionComplexityCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/class-use/ClassDataAbstractionCouplingCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/class-use/ClassFanOutComplexityCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/class-use/CyclomaticComplexityCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/class-use/JavaNCSSCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/class-use/NPathComplexityCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/package-frame.html +27 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/package-summary.html +193 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/package-tree.html +155 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/metrics/package-use.html +160 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/modifier/ModifierOrderCheck.html +364 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/modifier/RedundantModifierCheck.html +353 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/modifier/class-use/ModifierOrderCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/modifier/class-use/RedundantModifierCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/modifier/package-frame.html +21 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/modifier/package-summary.html +156 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/modifier/package-tree.html +143 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/modifier/package-use.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/AbstractAccessControlNameCheck.html +504 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/AbstractClassNameCheck.html +411 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/AbstractNameCheck.html +352 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/AbstractTypeParameterNameCheck.html +416 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/ClassTypeParameterNameCheck.html +373 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/ConstantNameCheck.html +400 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/LocalFinalVariableNameCheck.html +385 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/LocalVariableNameCheck.html +386 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/MemberNameCheck.html +398 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/MethodNameCheck.html +421 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/MethodTypeParameterNameCheck.html +373 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/PackageNameCheck.html +379 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/ParameterNameCheck.html +383 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/StaticVariableNameCheck.html +396 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/TypeNameCheck.html +368 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/AbstractAccessControlNameCheck.html +196 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/AbstractClassNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/AbstractNameCheck.html +251 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/AbstractTypeParameterNameCheck.html +172 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/ClassTypeParameterNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/ConstantNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/LocalFinalVariableNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/LocalVariableNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/MemberNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/MethodNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/MethodTypeParameterNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/PackageNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/ParameterNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/StaticVariableNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/class-use/TypeNameCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/package-frame.html +34 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/package-summary.html +259 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/package-tree.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/naming/package-use.html +168 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/package-frame.html +43 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/package-summary.html +289 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/package-tree.html +180 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/package-use.html +397 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/NeverSuppress.html +278 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/RegexpMultilineCheck.html +434 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/RegexpSinglelineCheck.html +433 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/RegexpSinglelineJavaCheck.html +457 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/class-use/NeverSuppress.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/class-use/RegexpMultilineCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/class-use/RegexpSinglelineCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/class-use/RegexpSinglelineJavaCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/package-frame.html +23 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/package-summary.html +168 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/package-tree.html +149 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/regexp/package-use.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/AnonInnerLengthCheck.html +373 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/ExecutableStatementCountCheck.html +433 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/FileLengthCheck.html +365 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/LineLengthCheck.html +412 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/MethodCountCheck.html +438 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/MethodLengthCheck.html +386 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/OuterTypeNumberCheck.html +413 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/ParameterNumberCheck.html +368 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/class-use/AnonInnerLengthCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/class-use/ExecutableStatementCountCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/class-use/FileLengthCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/class-use/LineLengthCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/class-use/MethodCountCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/class-use/MethodLengthCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/class-use/OuterTypeNumberCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/class-use/ParameterNumberCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/package-frame.html +27 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/package-summary.html +196 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/package-tree.html +153 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/sizes/package-use.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/EmptyForInitializerPadCheck.html +365 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/EmptyForIteratorPadCheck.html +366 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/FileTabCharacterCheck.html +342 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/GenericWhitespaceCheck.html +354 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/MethodParamPadCheck.html +399 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/NoWhitespaceAfterCheck.html +407 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/NoWhitespaceBeforeCheck.html +404 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/OperatorWrapCheck.html +429 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/OperatorWrapOption.html +334 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/PadOption.html +340 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/ParenPadCheck.html +414 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/TypecastParenPadCheck.html +422 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/WhitespaceAfterCheck.html +357 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/WhitespaceAroundCheck.html +485 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/EmptyForInitializerPadCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/EmptyForIteratorPadCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/FileTabCharacterCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/GenericWhitespaceCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/MethodParamPadCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/NoWhitespaceAfterCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/NoWhitespaceBeforeCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/OperatorWrapCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/OperatorWrapOption.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/PadOption.html +169 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/ParenPadCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/TypecastParenPadCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/WhitespaceAfterCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/class-use/WhitespaceAroundCheck.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/package-frame.html +36 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/package-summary.html +254 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/package-tree.html +174 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/checks/whitespace/package-use.html +160 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/CheckStyleTask.Formatter.html +161 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/CheckStyleTask.FormatterType.html +161 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/CheckStyleTask.Listener.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/CheckStyleTask.Property.html +161 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/CheckStyleTask.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/Checker.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/ConfigurationLoader.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/DefaultConfiguration.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/DefaultContext.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/DefaultLogger.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/Defn.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/Main.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/ModuleFactory.html +167 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/PackageNamesLoader.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/PropertiesExpander.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/PropertyResolver.html +207 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/TreeWalker.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/class-use/XMLLogger.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/doclets/CheckDocsDoclet.html +273 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/doclets/TokenTypesDoclet.html +275 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/doclets/class-use/CheckDocsDoclet.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/doclets/class-use/TokenTypesDoclet.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/doclets/package-frame.html +21 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/doclets/package-summary.html +157 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/doclets/package-tree.html +131 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/doclets/package-use.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/SeverityMatchFilter.html +324 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/SuppressElement.html +413 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/SuppressWithNearbyCommentFilter.Tag.html +369 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/SuppressWithNearbyCommentFilter.html +488 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/SuppressionCommentFilter.Tag.html +400 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/SuppressionCommentFilter.html +476 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/SuppressionFilter.html +360 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/SuppressionsLoader.html +307 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/class-use/SeverityMatchFilter.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/class-use/SuppressElement.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/class-use/SuppressWithNearbyCommentFilter.Tag.html +162 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/class-use/SuppressWithNearbyCommentFilter.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/class-use/SuppressionCommentFilter.Tag.html +162 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/class-use/SuppressionCommentFilter.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/class-use/SuppressionFilter.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/class-use/SuppressionsLoader.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/package-frame.html +25 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/package-summary.html +182 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/package-tree.html +149 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/filters/package-use.html +160 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/CommentListener.html +256 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/GeneratedJavaLexer.html +2058 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/GeneratedJavaRecognizer.html +3034 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/GeneratedJavaTokenTypes.html +2845 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/class-use/CommentListener.html +185 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/class-use/GeneratedJavaLexer.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/class-use/GeneratedJavaRecognizer.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/class-use/GeneratedJavaTokenTypes.html +167 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/package-frame.html +26 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/package-summary.html +175 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/package-tree.html +148 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/grammars/package-use.html +182 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/AbstractCellEditor.html +406 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/AbstractTreeTableModel.html +526 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/CodeSelector.html +262 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/JTreeTable.TreeTableCellEditor.html +338 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/JTreeTable.html +520 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/Main.html +259 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/ParseTreeInfoPanel.html +448 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/ParseTreeModel.html +388 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/TreeTableModel.html +328 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/TreeTableModelAdapter.html +441 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/class-use/AbstractCellEditor.html +161 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/class-use/AbstractTreeTableModel.html +161 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/class-use/CodeSelector.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/class-use/JTreeTable.TreeTableCellEditor.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/class-use/JTreeTable.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/class-use/Main.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/class-use/ParseTreeInfoPanel.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/class-use/ParseTreeModel.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/class-use/TreeTableModel.html +183 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/class-use/TreeTableModelAdapter.html +117 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/package-frame.html +31 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/package-summary.html +236 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/package-tree.html +176 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/gui/package-use.html +167 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/package-frame.html +40 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/package-summary.html +266 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/package-tree.html +182 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/com/puppycrawl/tools/checkstyle/package-use.html +174 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/constant-values.html +2631 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/deprecated-list.html +181 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/help-doc.html +222 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/index-all.html +7857 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/index.html +34 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/options +26 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/overview-frame.html +42 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/overview-summary.html +270 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/overview-tree.html +608 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/package-list +22 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/packages +22 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/resources/background.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/resources/tab.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/resources/titlebar.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/resources/titlebar_end.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/serialized-form.html +421 -0
- data/third_party_tools/checkstyle-5.6/site/apidocs/stylesheet.css +474 -0
- data/third_party_tools/checkstyle-5.6/site/availablechecks.html +876 -0
- data/third_party_tools/checkstyle-5.6/site/checks.html +208 -0
- data/third_party_tools/checkstyle-5.6/site/cmdline.html +364 -0
- data/third_party_tools/checkstyle-5.6/site/config.html +1465 -0
- data/third_party_tools/checkstyle-5.6/site/config_annotation.html +503 -0
- data/third_party_tools/checkstyle-5.6/site/config_blocks.html +579 -0
- data/third_party_tools/checkstyle-5.6/site/config_coding.html +2724 -0
- data/third_party_tools/checkstyle-5.6/site/config_design.html +647 -0
- data/third_party_tools/checkstyle-5.6/site/config_duplicates.html +330 -0
- data/third_party_tools/checkstyle-5.6/site/config_header.html +488 -0
- data/third_party_tools/checkstyle-5.6/site/config_imports.html +741 -0
- data/third_party_tools/checkstyle-5.6/site/config_javadoc.html +982 -0
- data/third_party_tools/checkstyle-5.6/site/config_metrics.html +646 -0
- data/third_party_tools/checkstyle-5.6/site/config_misc.html +1607 -0
- data/third_party_tools/checkstyle-5.6/site/config_modifier.html +352 -0
- data/third_party_tools/checkstyle-5.6/site/config_naming.html +486 -0
- data/third_party_tools/checkstyle-5.6/site/config_regexp.html +494 -0
- data/third_party_tools/checkstyle-5.6/site/config_reporting.html +243 -0
- data/third_party_tools/checkstyle-5.6/site/config_sizes.html +783 -0
- data/third_party_tools/checkstyle-5.6/site/config_whitespace.html +1194 -0
- data/third_party_tools/checkstyle-5.6/site/contributing.html +297 -0
- data/third_party_tools/checkstyle-5.6/site/css/maven-base.css +151 -0
- data/third_party_tools/checkstyle-5.6/site/css/maven-theme.css +161 -0
- data/third_party_tools/checkstyle-5.6/site/css/print.css +7 -0
- data/third_party_tools/checkstyle-5.6/site/css/site.css +25 -0
- data/third_party_tools/checkstyle-5.6/site/dependencies.html +254 -0
- data/third_party_tools/checkstyle-5.6/site/distribution-management.html +229 -0
- data/third_party_tools/checkstyle-5.6/site/extending.html +203 -0
- data/third_party_tools/checkstyle-5.6/site/images/AuditListener.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/Filter.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/close.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/collapsed.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/expanded.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/external.png +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/gui_screenshot.png +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/icon_error_sml.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/icon_info_sml.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/icon_success_sml.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/icon_warning_sml.gif +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/logo.png +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/logos/build-by-maven-black.png +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/logos/build-by-maven-white.png +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/logos/maven-feather.png +0 -0
- data/third_party_tools/checkstyle-5.6/site/images/newwindow.png +0 -0
- data/third_party_tools/checkstyle-5.6/site/index.html +474 -0
- data/third_party_tools/checkstyle-5.6/site/integration.html +229 -0
- data/third_party_tools/checkstyle-5.6/site/issue-tracking.html +229 -0
- data/third_party_tools/checkstyle-5.6/site/license.html +731 -0
- data/third_party_tools/checkstyle-5.6/site/mail-lists.html +229 -0
- data/third_party_tools/checkstyle-5.6/site/plugin-management.html +229 -0
- data/third_party_tools/checkstyle-5.6/site/plugins.html +229 -0
- data/third_party_tools/checkstyle-5.6/site/project-info.html +229 -0
- data/third_party_tools/checkstyle-5.6/site/project-reports.html +196 -0
- data/third_party_tools/checkstyle-5.6/site/project-summary.html +229 -0
- data/third_party_tools/checkstyle-5.6/site/property_types.html +717 -0
- data/third_party_tools/checkstyle-5.6/site/releasenotes.html +2565 -0
- data/third_party_tools/checkstyle-5.6/site/running.html +213 -0
- data/third_party_tools/checkstyle-5.6/site/source-repository.html +229 -0
- data/third_party_tools/checkstyle-5.6/site/team-list.html +244 -0
- data/third_party_tools/checkstyle-5.6/site/writingchecks.html +728 -0
- data/third_party_tools/checkstyle-5.6/site/writingfilters.html +312 -0
- data/third_party_tools/checkstyle-5.6/site/writinglisteners.html +535 -0
- data/third_party_tools/checkstyle-5.6/sun_checks.xml +178 -0
- data/third_party_tools/checkstyle-5.6/suppressions.xml +50 -0
- metadata +1149 -0
|
@@ -0,0 +1,2049 @@
|
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
2
|
+
<!-- NewPage -->
|
|
3
|
+
<html lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<!-- Generated by javadoc (version 1.7.0_07) on Tue Sep 18 21:25:58 EST 2012 -->
|
|
6
|
+
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
|
7
|
+
<title>Uses of Class com.puppycrawl.tools.checkstyle.api.DetailAST (checkstyle 5.6 API)</title>
|
|
8
|
+
<meta name="date" content="2012-09-18">
|
|
9
|
+
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<script type="text/javascript"><!--
|
|
13
|
+
if (location.href.indexOf('is-external=true') == -1) {
|
|
14
|
+
parent.document.title="Uses of Class com.puppycrawl.tools.checkstyle.api.DetailAST (checkstyle 5.6 API)";
|
|
15
|
+
}
|
|
16
|
+
//-->
|
|
17
|
+
</script>
|
|
18
|
+
<noscript>
|
|
19
|
+
<div>JavaScript is disabled on your browser.</div>
|
|
20
|
+
</noscript>
|
|
21
|
+
<!-- ========= START OF TOP NAVBAR ======= -->
|
|
22
|
+
<div class="topNav"><a name="navbar_top">
|
|
23
|
+
<!-- -->
|
|
24
|
+
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
|
|
25
|
+
<!-- -->
|
|
26
|
+
</a>
|
|
27
|
+
<ul class="navList" title="Navigation">
|
|
28
|
+
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
|
|
29
|
+
<li><a href="../package-summary.html">Package</a></li>
|
|
30
|
+
<li><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">Class</a></li>
|
|
31
|
+
<li class="navBarCell1Rev">Use</li>
|
|
32
|
+
<li><a href="../package-tree.html">Tree</a></li>
|
|
33
|
+
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
|
|
34
|
+
<li><a href="../../../../../../index-all.html">Index</a></li>
|
|
35
|
+
<li><a href="../../../../../../help-doc.html">Help</a></li>
|
|
36
|
+
</ul>
|
|
37
|
+
</div>
|
|
38
|
+
<div class="subNav">
|
|
39
|
+
<ul class="navList">
|
|
40
|
+
<li>Prev</li>
|
|
41
|
+
<li>Next</li>
|
|
42
|
+
</ul>
|
|
43
|
+
<ul class="navList">
|
|
44
|
+
<li><a href="../../../../../../index.html?com/puppycrawl/tools/checkstyle/api/class-use/DetailAST.html" target="_top">Frames</a></li>
|
|
45
|
+
<li><a href="DetailAST.html" target="_top">No Frames</a></li>
|
|
46
|
+
</ul>
|
|
47
|
+
<ul class="navList" id="allclasses_navbar_top">
|
|
48
|
+
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
|
|
49
|
+
</ul>
|
|
50
|
+
<div>
|
|
51
|
+
<script type="text/javascript"><!--
|
|
52
|
+
allClassesLink = document.getElementById("allclasses_navbar_top");
|
|
53
|
+
if(window==top) {
|
|
54
|
+
allClassesLink.style.display = "block";
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
allClassesLink.style.display = "none";
|
|
58
|
+
}
|
|
59
|
+
//-->
|
|
60
|
+
</script>
|
|
61
|
+
</div>
|
|
62
|
+
<a name="skip-navbar_top">
|
|
63
|
+
<!-- -->
|
|
64
|
+
</a></div>
|
|
65
|
+
<!-- ========= END OF TOP NAVBAR ========= -->
|
|
66
|
+
<div class="header">
|
|
67
|
+
<h2 title="Uses of Class com.puppycrawl.tools.checkstyle.api.DetailAST" class="title">Uses of Class<br>com.puppycrawl.tools.checkstyle.api.DetailAST</h2>
|
|
68
|
+
</div>
|
|
69
|
+
<div class="classUseContainer">
|
|
70
|
+
<ul class="blockList">
|
|
71
|
+
<li class="blockList">
|
|
72
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
|
|
73
|
+
<caption><span>Packages that use <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
74
|
+
<tr>
|
|
75
|
+
<th class="colFirst" scope="col">Package</th>
|
|
76
|
+
<th class="colLast" scope="col">Description</th>
|
|
77
|
+
</tr>
|
|
78
|
+
<tbody>
|
|
79
|
+
<tr class="altColor">
|
|
80
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle">com.puppycrawl.tools.checkstyle</a></td>
|
|
81
|
+
<td class="colLast">
|
|
82
|
+
<div class="block">Contains the implementation of the Checkstyle framework.</div>
|
|
83
|
+
</td>
|
|
84
|
+
</tr>
|
|
85
|
+
<tr class="rowColor">
|
|
86
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.api">com.puppycrawl.tools.checkstyle.api</a></td>
|
|
87
|
+
<td class="colLast">
|
|
88
|
+
<div class="block">Contains the core API to be used to implement checks.</div>
|
|
89
|
+
</td>
|
|
90
|
+
</tr>
|
|
91
|
+
<tr class="altColor">
|
|
92
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks">com.puppycrawl.tools.checkstyle.checks</a></td>
|
|
93
|
+
<td class="colLast">
|
|
94
|
+
<div class="block">Contains the checks that are bundled with the main distribution.</div>
|
|
95
|
+
</td>
|
|
96
|
+
</tr>
|
|
97
|
+
<tr class="rowColor">
|
|
98
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.annotation">com.puppycrawl.tools.checkstyle.checks.annotation</a></td>
|
|
99
|
+
<td class="colLast">
|
|
100
|
+
<div class="block">Contains the <span class="xdocspagetitle">Annotation checks</span> that are
|
|
101
|
+
bundled with the main distribution.</div>
|
|
102
|
+
</td>
|
|
103
|
+
</tr>
|
|
104
|
+
<tr class="altColor">
|
|
105
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.blocks">com.puppycrawl.tools.checkstyle.checks.blocks</a></td>
|
|
106
|
+
<td class="colLast">
|
|
107
|
+
<div class="block">Contains the <span class="xdocspagetitle">Block checks</span> that are
|
|
108
|
+
bundled with the main distribution.</div>
|
|
109
|
+
</td>
|
|
110
|
+
</tr>
|
|
111
|
+
<tr class="rowColor">
|
|
112
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.coding">com.puppycrawl.tools.checkstyle.checks.coding</a></td>
|
|
113
|
+
<td class="colLast">
|
|
114
|
+
<div class="block">Contains the <span class="xdocspagetitle">Coding</span> checks that are
|
|
115
|
+
bundled with the main distribution.</div>
|
|
116
|
+
</td>
|
|
117
|
+
</tr>
|
|
118
|
+
<tr class="altColor">
|
|
119
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.design">com.puppycrawl.tools.checkstyle.checks.design</a></td>
|
|
120
|
+
<td class="colLast">
|
|
121
|
+
<div class="block">Contains the <span class="xdocspagetitle">Class Design</span> checks that
|
|
122
|
+
are bundled with the main distribution.</div>
|
|
123
|
+
</td>
|
|
124
|
+
</tr>
|
|
125
|
+
<tr class="rowColor">
|
|
126
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.imports">com.puppycrawl.tools.checkstyle.checks.imports</a></td>
|
|
127
|
+
<td class="colLast">
|
|
128
|
+
<div class="block">Contains the <span class="xdocspagetitle">Imports</span> checks that are
|
|
129
|
+
bundled with the main distribution.</div>
|
|
130
|
+
</td>
|
|
131
|
+
</tr>
|
|
132
|
+
<tr class="altColor">
|
|
133
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.indentation">com.puppycrawl.tools.checkstyle.checks.indentation</a></td>
|
|
134
|
+
<td class="colLast">
|
|
135
|
+
<div class="block">Contains all classes required for the
|
|
136
|
+
<span class="xdocspagetitle">indentation</span> check.</div>
|
|
137
|
+
</td>
|
|
138
|
+
</tr>
|
|
139
|
+
<tr class="rowColor">
|
|
140
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.javadoc">com.puppycrawl.tools.checkstyle.checks.javadoc</a></td>
|
|
141
|
+
<td class="colLast">
|
|
142
|
+
<div class="block">Contains the Javadoc checks that are bundled with the main distribution.</div>
|
|
143
|
+
</td>
|
|
144
|
+
</tr>
|
|
145
|
+
<tr class="altColor">
|
|
146
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.metrics">com.puppycrawl.tools.checkstyle.checks.metrics</a></td>
|
|
147
|
+
<td class="colLast">
|
|
148
|
+
<div class="block">Contains the <span class="xdocspagetitle">Metrics</span> checks that are
|
|
149
|
+
bundled with the main distribution.</div>
|
|
150
|
+
</td>
|
|
151
|
+
</tr>
|
|
152
|
+
<tr class="rowColor">
|
|
153
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.modifier">com.puppycrawl.tools.checkstyle.checks.modifier</a></td>
|
|
154
|
+
<td class="colLast">
|
|
155
|
+
<div class="block">Contains the modifier checks that are bundled with the main distribution.</div>
|
|
156
|
+
</td>
|
|
157
|
+
</tr>
|
|
158
|
+
<tr class="altColor">
|
|
159
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.naming">com.puppycrawl.tools.checkstyle.checks.naming</a></td>
|
|
160
|
+
<td class="colLast">
|
|
161
|
+
<div class="block">Contains the <span class="xdocspagetitle">Naming conventions</span> checks
|
|
162
|
+
that are bundled with the main distribution.</div>
|
|
163
|
+
</td>
|
|
164
|
+
</tr>
|
|
165
|
+
<tr class="rowColor">
|
|
166
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.regexp">com.puppycrawl.tools.checkstyle.checks.regexp</a></td>
|
|
167
|
+
<td class="colLast">
|
|
168
|
+
<div class="block">Contains the regular expression checks that are bundled with the main
|
|
169
|
+
distribution.</div>
|
|
170
|
+
</td>
|
|
171
|
+
</tr>
|
|
172
|
+
<tr class="altColor">
|
|
173
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.sizes">com.puppycrawl.tools.checkstyle.checks.sizes</a></td>
|
|
174
|
+
<td class="colLast">
|
|
175
|
+
<div class="block">Contains the <span class="xdocspagetitle">Size Violations</span> checks
|
|
176
|
+
that are bundled with the main distribution.</div>
|
|
177
|
+
</td>
|
|
178
|
+
</tr>
|
|
179
|
+
<tr class="rowColor">
|
|
180
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.checks.whitespace">com.puppycrawl.tools.checkstyle.checks.whitespace</a></td>
|
|
181
|
+
<td class="colLast">
|
|
182
|
+
<div class="block">Contains the <span class="xdocspagetitle">Whitespace</span> checks that
|
|
183
|
+
are bundled with the main distribution.</div>
|
|
184
|
+
</td>
|
|
185
|
+
</tr>
|
|
186
|
+
<tr class="altColor">
|
|
187
|
+
<td class="colFirst"><a href="#com.puppycrawl.tools.checkstyle.gui">com.puppycrawl.tools.checkstyle.gui</a></td>
|
|
188
|
+
<td class="colLast">
|
|
189
|
+
<div class="block">User interface classes for CheckStyle.</div>
|
|
190
|
+
</td>
|
|
191
|
+
</tr>
|
|
192
|
+
</tbody>
|
|
193
|
+
</table>
|
|
194
|
+
</li>
|
|
195
|
+
<li class="blockList">
|
|
196
|
+
<ul class="blockList">
|
|
197
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle">
|
|
198
|
+
<!-- -->
|
|
199
|
+
</a>
|
|
200
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/package-summary.html">com.puppycrawl.tools.checkstyle</a></h3>
|
|
201
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
202
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/package-summary.html">com.puppycrawl.tools.checkstyle</a> that return <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
203
|
+
<tr>
|
|
204
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
205
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
206
|
+
</tr>
|
|
207
|
+
<tbody>
|
|
208
|
+
<tr class="altColor">
|
|
209
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
210
|
+
<td class="colLast"><span class="strong">TreeWalker.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/TreeWalker.html#parse(com.puppycrawl.tools.checkstyle.api.FileContents)">parse</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/FileContents.html" title="class in com.puppycrawl.tools.checkstyle.api">FileContents</a> aContents)</code>
|
|
211
|
+
<div class="block">Static helper method to parses a Java source file.</div>
|
|
212
|
+
</td>
|
|
213
|
+
</tr>
|
|
214
|
+
</tbody>
|
|
215
|
+
</table>
|
|
216
|
+
</li>
|
|
217
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.api">
|
|
218
|
+
<!-- -->
|
|
219
|
+
</a>
|
|
220
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/package-summary.html">com.puppycrawl.tools.checkstyle.api</a></h3>
|
|
221
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
222
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/package-summary.html">com.puppycrawl.tools.checkstyle.api</a> that return <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
223
|
+
<tr>
|
|
224
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
225
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
226
|
+
</tr>
|
|
227
|
+
<tbody>
|
|
228
|
+
<tr class="altColor">
|
|
229
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
230
|
+
<td class="colLast"><span class="strong">AnnotationUtility.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/AnnotationUtility.html#annotatingWhat(com.puppycrawl.tools.checkstyle.api.DetailAST)">annotatingWhat</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
231
|
+
<div class="block">Checks to see what the passed in AST (representing
|
|
232
|
+
an annotation) is annotating.</div>
|
|
233
|
+
</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr class="rowColor">
|
|
236
|
+
<td class="colFirst"><code><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
237
|
+
<td class="colLast"><span class="strong">DetailAST.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html#findFirstToken(int)">findFirstToken</a></strong>(int aType)</code>
|
|
238
|
+
<div class="block">Returns the first child token that makes a specified type.</div>
|
|
239
|
+
</td>
|
|
240
|
+
</tr>
|
|
241
|
+
<tr class="altColor">
|
|
242
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
243
|
+
<td class="colLast"><span class="strong">AnnotationUtility.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/AnnotationUtility.html#getAnnotation(com.puppycrawl.tools.checkstyle.api.DetailAST, java.lang.String)">getAnnotation</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST,
|
|
244
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> aAnnotation)</code>
|
|
245
|
+
<div class="block">Checks to see if the AST is annotated with
|
|
246
|
+
the passed in annotation and return the AST
|
|
247
|
+
representing that annotation.</div>
|
|
248
|
+
</td>
|
|
249
|
+
</tr>
|
|
250
|
+
<tr class="rowColor">
|
|
251
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
252
|
+
<td class="colLast"><span class="strong">AnnotationUtility.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/AnnotationUtility.html#getAnnotationHolder(com.puppycrawl.tools.checkstyle.api.DetailAST)">getAnnotationHolder</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
253
|
+
<div class="block">Gets the AST that holds a series of annotations for the
|
|
254
|
+
potentially annotated AST.</div>
|
|
255
|
+
</td>
|
|
256
|
+
</tr>
|
|
257
|
+
<tr class="altColor">
|
|
258
|
+
<td class="colFirst"><code><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
259
|
+
<td class="colLast"><span class="strong">DetailAST.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html#getFirstChild()">getFirstChild</a></strong>()</code> </td>
|
|
260
|
+
</tr>
|
|
261
|
+
<tr class="rowColor">
|
|
262
|
+
<td class="colFirst"><code><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
263
|
+
<td class="colLast"><span class="strong">DetailAST.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html#getLastChild()">getLastChild</a></strong>()</code> </td>
|
|
264
|
+
</tr>
|
|
265
|
+
<tr class="altColor">
|
|
266
|
+
<td class="colFirst"><code><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
267
|
+
<td class="colLast"><span class="strong">DetailAST.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html#getNextSibling()">getNextSibling</a></strong>()</code> </td>
|
|
268
|
+
</tr>
|
|
269
|
+
<tr class="rowColor">
|
|
270
|
+
<td class="colFirst"><code><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
271
|
+
<td class="colLast"><span class="strong">DetailAST.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html#getParent()">getParent</a></strong>()</code>
|
|
272
|
+
<div class="block">Returns the parent token.</div>
|
|
273
|
+
</td>
|
|
274
|
+
</tr>
|
|
275
|
+
<tr class="altColor">
|
|
276
|
+
<td class="colFirst"><code><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
277
|
+
<td class="colLast"><span class="strong">DetailAST.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html#getPreviousSibling()">getPreviousSibling</a></strong>()</code>
|
|
278
|
+
<div class="block">Returns the previous sibling or null if no such sibling exists.</div>
|
|
279
|
+
</td>
|
|
280
|
+
</tr>
|
|
281
|
+
</tbody>
|
|
282
|
+
</table>
|
|
283
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
284
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/package-summary.html">com.puppycrawl.tools.checkstyle.api</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
285
|
+
<tr>
|
|
286
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
287
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
288
|
+
</tr>
|
|
289
|
+
<tbody>
|
|
290
|
+
<tr class="altColor">
|
|
291
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
292
|
+
<td class="colLast"><span class="strong">AnnotationUtility.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/AnnotationUtility.html#annotatingWhat(com.puppycrawl.tools.checkstyle.api.DetailAST)">annotatingWhat</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
293
|
+
<div class="block">Checks to see what the passed in AST (representing
|
|
294
|
+
an annotation) is annotating.</div>
|
|
295
|
+
</td>
|
|
296
|
+
</tr>
|
|
297
|
+
<tr class="rowColor">
|
|
298
|
+
<td class="colFirst"><code>void</code></td>
|
|
299
|
+
<td class="colLast"><span class="strong">Check.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/Check.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code>
|
|
300
|
+
<div class="block">Called before the starting to process a tree.</div>
|
|
301
|
+
</td>
|
|
302
|
+
</tr>
|
|
303
|
+
<tr class="altColor">
|
|
304
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
305
|
+
<td class="colLast"><span class="strong">AnnotationUtility.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/AnnotationUtility.html#containsAnnotation(com.puppycrawl.tools.checkstyle.api.DetailAST)">containsAnnotation</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
306
|
+
<div class="block">Checks to see if the AST is annotated with
|
|
307
|
+
any annotation.</div>
|
|
308
|
+
</td>
|
|
309
|
+
</tr>
|
|
310
|
+
<tr class="rowColor">
|
|
311
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
312
|
+
<td class="colLast"><span class="strong">AnnotationUtility.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/AnnotationUtility.html#containsAnnotation(com.puppycrawl.tools.checkstyle.api.DetailAST, java.lang.String)">containsAnnotation</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST,
|
|
313
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> aAnnotation)</code>
|
|
314
|
+
<div class="block">Checks to see if the AST is annotated with
|
|
315
|
+
the passed in annotation.</div>
|
|
316
|
+
</td>
|
|
317
|
+
</tr>
|
|
318
|
+
<tr class="altColor">
|
|
319
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/FullIdent.html" title="class in com.puppycrawl.tools.checkstyle.api">FullIdent</a></code></td>
|
|
320
|
+
<td class="colLast"><span class="strong">FullIdent.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/FullIdent.html#createFullIdent(com.puppycrawl.tools.checkstyle.api.DetailAST)">createFullIdent</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
321
|
+
<div class="block">Creates a new FullIdent starting from the specified node.</div>
|
|
322
|
+
</td>
|
|
323
|
+
</tr>
|
|
324
|
+
<tr class="rowColor">
|
|
325
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/FullIdent.html" title="class in com.puppycrawl.tools.checkstyle.api">FullIdent</a></code></td>
|
|
326
|
+
<td class="colLast"><span class="strong">FullIdent.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/FullIdent.html#createFullIdentBelow(com.puppycrawl.tools.checkstyle.api.DetailAST)">createFullIdentBelow</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
327
|
+
<div class="block">Creates a new FullIdent starting from the child of the specified node.</div>
|
|
328
|
+
</td>
|
|
329
|
+
</tr>
|
|
330
|
+
<tr class="altColor">
|
|
331
|
+
<td class="colFirst"><code>void</code></td>
|
|
332
|
+
<td class="colLast"><span class="strong">Check.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/Check.html#finishTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">finishTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code>
|
|
333
|
+
<div class="block">Called after finished processing a tree.</div>
|
|
334
|
+
</td>
|
|
335
|
+
</tr>
|
|
336
|
+
<tr class="rowColor">
|
|
337
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
338
|
+
<td class="colLast"><span class="strong">AnnotationUtility.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/AnnotationUtility.html#getAnnotation(com.puppycrawl.tools.checkstyle.api.DetailAST, java.lang.String)">getAnnotation</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST,
|
|
339
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> aAnnotation)</code>
|
|
340
|
+
<div class="block">Checks to see if the AST is annotated with
|
|
341
|
+
the passed in annotation and return the AST
|
|
342
|
+
representing that annotation.</div>
|
|
343
|
+
</td>
|
|
344
|
+
</tr>
|
|
345
|
+
<tr class="altColor">
|
|
346
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
347
|
+
<td class="colLast"><span class="strong">AnnotationUtility.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/AnnotationUtility.html#getAnnotationHolder(com.puppycrawl.tools.checkstyle.api.DetailAST)">getAnnotationHolder</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
348
|
+
<div class="block">Gets the AST that holds a series of annotations for the
|
|
349
|
+
potentially annotated AST.</div>
|
|
350
|
+
</td>
|
|
351
|
+
</tr>
|
|
352
|
+
<tr class="rowColor">
|
|
353
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/Scope.html" title="enum in com.puppycrawl.tools.checkstyle.api">Scope</a></code></td>
|
|
354
|
+
<td class="colLast"><span class="strong">ScopeUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/ScopeUtils.html#getScopeFromMods(com.puppycrawl.tools.checkstyle.api.DetailAST)">getScopeFromMods</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aMods)</code>
|
|
355
|
+
<div class="block">Returns the Scope specified by the modifier set.</div>
|
|
356
|
+
</td>
|
|
357
|
+
</tr>
|
|
358
|
+
<tr class="altColor">
|
|
359
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/Scope.html" title="enum in com.puppycrawl.tools.checkstyle.api">Scope</a></code></td>
|
|
360
|
+
<td class="colLast"><span class="strong">ScopeUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/ScopeUtils.html#getSurroundingScope(com.puppycrawl.tools.checkstyle.api.DetailAST)">getSurroundingScope</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
361
|
+
<div class="block">Returns the scope of the surrounding "block".</div>
|
|
362
|
+
</td>
|
|
363
|
+
</tr>
|
|
364
|
+
<tr class="rowColor">
|
|
365
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
366
|
+
<td class="colLast"><span class="strong">ScopeUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/ScopeUtils.html#inAnnotationBlock(com.puppycrawl.tools.checkstyle.api.DetailAST)">inAnnotationBlock</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
367
|
+
<div class="block">Returns whether a node is directly contained within an annotation block.</div>
|
|
368
|
+
</td>
|
|
369
|
+
</tr>
|
|
370
|
+
<tr class="altColor">
|
|
371
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
372
|
+
<td class="colLast"><span class="strong">ScopeUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/ScopeUtils.html#inCodeBlock(com.puppycrawl.tools.checkstyle.api.DetailAST)">inCodeBlock</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
373
|
+
<div class="block">Returns whether the scope of a node is restricted to a code block.</div>
|
|
374
|
+
</td>
|
|
375
|
+
</tr>
|
|
376
|
+
<tr class="rowColor">
|
|
377
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
378
|
+
<td class="colLast"><span class="strong">ScopeUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/ScopeUtils.html#inEnumBlock(com.puppycrawl.tools.checkstyle.api.DetailAST)">inEnumBlock</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
379
|
+
<div class="block">Returns whether a node is directly contained within an enum block.</div>
|
|
380
|
+
</td>
|
|
381
|
+
</tr>
|
|
382
|
+
<tr class="altColor">
|
|
383
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
384
|
+
<td class="colLast"><span class="strong">ScopeUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/ScopeUtils.html#inInterfaceBlock(com.puppycrawl.tools.checkstyle.api.DetailAST)">inInterfaceBlock</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
385
|
+
<div class="block">Returns whether a node is directly contained within an interface block.</div>
|
|
386
|
+
</td>
|
|
387
|
+
</tr>
|
|
388
|
+
<tr class="rowColor">
|
|
389
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
390
|
+
<td class="colLast"><span class="strong">ScopeUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/ScopeUtils.html#inInterfaceOrAnnotationBlock(com.puppycrawl.tools.checkstyle.api.DetailAST)">inInterfaceOrAnnotationBlock</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
391
|
+
<div class="block">Returns whether a node is directly contained within an interface or
|
|
392
|
+
annotation block.</div>
|
|
393
|
+
</td>
|
|
394
|
+
</tr>
|
|
395
|
+
<tr class="altColor">
|
|
396
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
397
|
+
<td class="colLast"><span class="strong">AnnotationUtility.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/AnnotationUtility.html#isAnnotatingType(com.puppycrawl.tools.checkstyle.api.DetailAST, int)">isAnnotatingType</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST,
|
|
398
|
+
int aTokenType)</code>
|
|
399
|
+
<div class="block">Checks to see if the passed in AST (representing
|
|
400
|
+
an annotation) is annotating the passed in type.</div>
|
|
401
|
+
</td>
|
|
402
|
+
</tr>
|
|
403
|
+
<tr class="rowColor">
|
|
404
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
405
|
+
<td class="colLast"><span class="strong">ScopeUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/ScopeUtils.html#isLocalVariableDef(com.puppycrawl.tools.checkstyle.api.DetailAST)">isLocalVariableDef</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
406
|
+
<div class="block">Determines whether a node is a local variable definition.</div>
|
|
407
|
+
</td>
|
|
408
|
+
</tr>
|
|
409
|
+
<tr class="altColor">
|
|
410
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
411
|
+
<td class="colLast"><span class="strong">ScopeUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/ScopeUtils.html#isOuterMostType(com.puppycrawl.tools.checkstyle.api.DetailAST)">isOuterMostType</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
412
|
+
<div class="block">Returns whether a node is contained in the outer most type block.</div>
|
|
413
|
+
</td>
|
|
414
|
+
</tr>
|
|
415
|
+
<tr class="rowColor">
|
|
416
|
+
<td class="colFirst"><code>abstract boolean</code></td>
|
|
417
|
+
<td class="colLast"><span class="strong">JavadocTagInfo.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/JavadocTagInfo.html#isValidOn(com.puppycrawl.tools.checkstyle.api.DetailAST)">isValidOn</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
418
|
+
<div class="block">Checks if a particular Javadoc tag is valid within a Javadoc block of a
|
|
419
|
+
given AST.</div>
|
|
420
|
+
</td>
|
|
421
|
+
</tr>
|
|
422
|
+
<tr class="altColor">
|
|
423
|
+
<td class="colFirst"><code>void</code></td>
|
|
424
|
+
<td class="colLast"><span class="strong">Check.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/Check.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
425
|
+
<div class="block">Called after all the child nodes have been process.</div>
|
|
426
|
+
</td>
|
|
427
|
+
</tr>
|
|
428
|
+
<tr class="rowColor">
|
|
429
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
430
|
+
<td class="colLast"><span class="strong">AbstractViolationReporter.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/AbstractViolationReporter.html#log(com.puppycrawl.tools.checkstyle.api.DetailAST, java.lang.String, java.lang.Object...)">log</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST,
|
|
431
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> aKey,
|
|
432
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>... aArgs)</code>
|
|
433
|
+
<div class="block">Helper method to log a LocalizedMessage.</div>
|
|
434
|
+
</td>
|
|
435
|
+
</tr>
|
|
436
|
+
<tr class="altColor">
|
|
437
|
+
<td class="colFirst"><code>void</code></td>
|
|
438
|
+
<td class="colLast"><span class="strong">Check.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/Check.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
439
|
+
<div class="block">Called to process a token.</div>
|
|
440
|
+
</td>
|
|
441
|
+
</tr>
|
|
442
|
+
</tbody>
|
|
443
|
+
</table>
|
|
444
|
+
</li>
|
|
445
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks">
|
|
446
|
+
<!-- -->
|
|
447
|
+
</a>
|
|
448
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/package-summary.html">com.puppycrawl.tools.checkstyle.checks</a></h3>
|
|
449
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
450
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/package-summary.html">com.puppycrawl.tools.checkstyle.checks</a> that return <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
451
|
+
<tr>
|
|
452
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
453
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
454
|
+
</tr>
|
|
455
|
+
<tbody>
|
|
456
|
+
<tr class="altColor">
|
|
457
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
458
|
+
<td class="colLast"><span class="strong">CheckUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/CheckUtils.html#getFirstNode(com.puppycrawl.tools.checkstyle.api.DetailAST)">getFirstNode</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aNode)</code>
|
|
459
|
+
<div class="block">Finds sub-node for given node minimal (line, column) pair.</div>
|
|
460
|
+
</td>
|
|
461
|
+
</tr>
|
|
462
|
+
</tbody>
|
|
463
|
+
</table>
|
|
464
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
465
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/package-summary.html">com.puppycrawl.tools.checkstyle.checks</a> that return types with arguments of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
466
|
+
<tr>
|
|
467
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
468
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
469
|
+
</tr>
|
|
470
|
+
<tbody>
|
|
471
|
+
<tr class="altColor">
|
|
472
|
+
<td class="colFirst"><code>static <a href="http://download.oracle.com/javase/1.5.0/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a>></code></td>
|
|
473
|
+
<td class="colLast"><span class="strong">CheckUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/CheckUtils.html#getTypeParameters(com.puppycrawl.tools.checkstyle.api.DetailAST)">getTypeParameters</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aNode)</code>
|
|
474
|
+
<div class="block">Retrieves the type parameters to the node.</div>
|
|
475
|
+
</td>
|
|
476
|
+
</tr>
|
|
477
|
+
</tbody>
|
|
478
|
+
</table>
|
|
479
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
480
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/package-summary.html">com.puppycrawl.tools.checkstyle.checks</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
481
|
+
<tr>
|
|
482
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
483
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
484
|
+
</tr>
|
|
485
|
+
<tbody>
|
|
486
|
+
<tr class="altColor">
|
|
487
|
+
<td class="colFirst"><code>void</code></td>
|
|
488
|
+
<td class="colLast"><span class="strong">UncommentedMainCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/UncommentedMainCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
489
|
+
</tr>
|
|
490
|
+
<tr class="rowColor">
|
|
491
|
+
<td class="colFirst"><code>void</code></td>
|
|
492
|
+
<td class="colLast"><span class="strong">TrailingCommentCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/TrailingCommentCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
493
|
+
</tr>
|
|
494
|
+
<tr class="altColor">
|
|
495
|
+
<td class="colFirst"><code>void</code></td>
|
|
496
|
+
<td class="colLast"><span class="strong">TodoCommentCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/TodoCommentCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
497
|
+
</tr>
|
|
498
|
+
<tr class="rowColor">
|
|
499
|
+
<td class="colFirst"><code>void</code></td>
|
|
500
|
+
<td class="colLast"><span class="strong">RegexpCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/RegexpCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
501
|
+
</tr>
|
|
502
|
+
<tr class="altColor">
|
|
503
|
+
<td class="colFirst"><code>void</code></td>
|
|
504
|
+
<td class="colLast"><span class="strong">OuterTypeFilenameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/OuterTypeFilenameCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
505
|
+
</tr>
|
|
506
|
+
<tr class="rowColor">
|
|
507
|
+
<td class="colFirst"><code>void</code></td>
|
|
508
|
+
<td class="colLast"><span class="strong">FileContentsHolder.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/FileContentsHolder.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
509
|
+
</tr>
|
|
510
|
+
<tr class="altColor">
|
|
511
|
+
<td class="colFirst"><code>void</code></td>
|
|
512
|
+
<td class="colLast"><span class="strong">DeclarationCollector.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/DeclarationCollector.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
513
|
+
</tr>
|
|
514
|
+
<tr class="rowColor">
|
|
515
|
+
<td class="colFirst"><code>void</code></td>
|
|
516
|
+
<td class="colLast"><span class="strong">AbstractTypeAwareCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/AbstractTypeAwareCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
517
|
+
</tr>
|
|
518
|
+
<tr class="altColor">
|
|
519
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/FullIdent.html" title="class in com.puppycrawl.tools.checkstyle.api">FullIdent</a></code></td>
|
|
520
|
+
<td class="colLast"><span class="strong">CheckUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/CheckUtils.html#createFullType(com.puppycrawl.tools.checkstyle.api.DetailAST)">createFullType</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aTypeAST)</code>
|
|
521
|
+
<div class="block">Creates <code>FullIdent</code> for given type node.</div>
|
|
522
|
+
</td>
|
|
523
|
+
</tr>
|
|
524
|
+
<tr class="rowColor">
|
|
525
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
526
|
+
<td class="colLast"><span class="strong">CheckUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/CheckUtils.html#getFirstNode(com.puppycrawl.tools.checkstyle.api.DetailAST)">getFirstNode</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aNode)</code>
|
|
527
|
+
<div class="block">Finds sub-node for given node minimal (line, column) pair.</div>
|
|
528
|
+
</td>
|
|
529
|
+
</tr>
|
|
530
|
+
<tr class="altColor">
|
|
531
|
+
<td class="colFirst"><code>static <a href="http://download.oracle.com/javase/1.5.0/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>></code></td>
|
|
532
|
+
<td class="colLast"><span class="strong">CheckUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/CheckUtils.html#getTypeParameterNames(com.puppycrawl.tools.checkstyle.api.DetailAST)">getTypeParameterNames</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aNode)</code>
|
|
533
|
+
<div class="block">Retrieves the names of the type parameters to the node.</div>
|
|
534
|
+
</td>
|
|
535
|
+
</tr>
|
|
536
|
+
<tr class="rowColor">
|
|
537
|
+
<td class="colFirst"><code>static <a href="http://download.oracle.com/javase/1.5.0/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a>></code></td>
|
|
538
|
+
<td class="colLast"><span class="strong">CheckUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/CheckUtils.html#getTypeParameters(com.puppycrawl.tools.checkstyle.api.DetailAST)">getTypeParameters</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aNode)</code>
|
|
539
|
+
<div class="block">Retrieves the type parameters to the node.</div>
|
|
540
|
+
</td>
|
|
541
|
+
</tr>
|
|
542
|
+
<tr class="altColor">
|
|
543
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
544
|
+
<td class="colLast"><span class="strong">CheckUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/CheckUtils.html#isElseIf(com.puppycrawl.tools.checkstyle.api.DetailAST)">isElseIf</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
545
|
+
<div class="block">Returns whether a token represents an ELSE as part of an ELSE / IF set.</div>
|
|
546
|
+
</td>
|
|
547
|
+
</tr>
|
|
548
|
+
<tr class="rowColor">
|
|
549
|
+
<td class="colFirst"><code>static boolean</code></td>
|
|
550
|
+
<td class="colLast"><span class="strong">CheckUtils.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/CheckUtils.html#isEqualsMethod(com.puppycrawl.tools.checkstyle.api.DetailAST)">isEqualsMethod</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
551
|
+
<div class="block">Tests whether a method definition AST defines an equals covariant.</div>
|
|
552
|
+
</td>
|
|
553
|
+
</tr>
|
|
554
|
+
<tr class="altColor">
|
|
555
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
556
|
+
<td class="colLast"><span class="strong">AbstractTypeAwareCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/AbstractTypeAwareCheck.html#leaveAST(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveAST</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
557
|
+
<div class="block">Called when exiting an AST.</div>
|
|
558
|
+
</td>
|
|
559
|
+
</tr>
|
|
560
|
+
<tr class="rowColor">
|
|
561
|
+
<td class="colFirst"><code>void</code></td>
|
|
562
|
+
<td class="colLast"><span class="strong">UncommentedMainCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/UncommentedMainCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code> </td>
|
|
563
|
+
</tr>
|
|
564
|
+
<tr class="altColor">
|
|
565
|
+
<td class="colFirst"><code>void</code></td>
|
|
566
|
+
<td class="colLast"><span class="strong">DeclarationCollector.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/DeclarationCollector.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
567
|
+
</tr>
|
|
568
|
+
<tr class="rowColor">
|
|
569
|
+
<td class="colFirst"><code>void</code></td>
|
|
570
|
+
<td class="colLast"><span class="strong">AbstractTypeAwareCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/AbstractTypeAwareCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
571
|
+
</tr>
|
|
572
|
+
<tr class="altColor">
|
|
573
|
+
<td class="colFirst"><code>protected abstract void</code></td>
|
|
574
|
+
<td class="colLast"><span class="strong">AbstractTypeAwareCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/AbstractTypeAwareCheck.html#processAST(com.puppycrawl.tools.checkstyle.api.DetailAST)">processAST</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
575
|
+
<div class="block">Called to process an AST when visiting it.</div>
|
|
576
|
+
</td>
|
|
577
|
+
</tr>
|
|
578
|
+
<tr class="rowColor">
|
|
579
|
+
<td class="colFirst"><code>void</code></td>
|
|
580
|
+
<td class="colLast"><span class="strong">UpperEllCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/UpperEllCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
581
|
+
</tr>
|
|
582
|
+
<tr class="altColor">
|
|
583
|
+
<td class="colFirst"><code>void</code></td>
|
|
584
|
+
<td class="colLast"><span class="strong">UncommentedMainCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/UncommentedMainCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code> </td>
|
|
585
|
+
</tr>
|
|
586
|
+
<tr class="rowColor">
|
|
587
|
+
<td class="colFirst"><code>void</code></td>
|
|
588
|
+
<td class="colLast"><span class="strong">TrailingCommentCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/TrailingCommentCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
589
|
+
</tr>
|
|
590
|
+
<tr class="altColor">
|
|
591
|
+
<td class="colFirst"><code>void</code></td>
|
|
592
|
+
<td class="colLast"><span class="strong">OuterTypeFilenameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/OuterTypeFilenameCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
593
|
+
</tr>
|
|
594
|
+
<tr class="rowColor">
|
|
595
|
+
<td class="colFirst"><code>void</code></td>
|
|
596
|
+
<td class="colLast"><span class="strong">FinalParametersCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/FinalParametersCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
597
|
+
</tr>
|
|
598
|
+
<tr class="altColor">
|
|
599
|
+
<td class="colFirst"><code>void</code></td>
|
|
600
|
+
<td class="colLast"><span class="strong">DescendantTokenCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/DescendantTokenCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
601
|
+
</tr>
|
|
602
|
+
<tr class="rowColor">
|
|
603
|
+
<td class="colFirst"><code>void</code></td>
|
|
604
|
+
<td class="colLast"><span class="strong">DeclarationCollector.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/DeclarationCollector.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
605
|
+
</tr>
|
|
606
|
+
<tr class="altColor">
|
|
607
|
+
<td class="colFirst"><code>void</code></td>
|
|
608
|
+
<td class="colLast"><span class="strong">ArrayTypeStyleCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/ArrayTypeStyleCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
609
|
+
</tr>
|
|
610
|
+
<tr class="rowColor">
|
|
611
|
+
<td class="colFirst"><code>void</code></td>
|
|
612
|
+
<td class="colLast"><span class="strong">AbstractTypeAwareCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/AbstractTypeAwareCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
613
|
+
</tr>
|
|
614
|
+
</tbody>
|
|
615
|
+
</table>
|
|
616
|
+
</li>
|
|
617
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.annotation">
|
|
618
|
+
<!-- -->
|
|
619
|
+
</a>
|
|
620
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/annotation/package-summary.html">com.puppycrawl.tools.checkstyle.checks.annotation</a></h3>
|
|
621
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
622
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/annotation/package-summary.html">com.puppycrawl.tools.checkstyle.checks.annotation</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
623
|
+
<tr>
|
|
624
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
625
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
626
|
+
</tr>
|
|
627
|
+
<tbody>
|
|
628
|
+
<tr class="altColor">
|
|
629
|
+
<td class="colFirst"><code>void</code></td>
|
|
630
|
+
<td class="colLast"><span class="strong">SuppressWarningsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/annotation/SuppressWarningsCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
631
|
+
<div class="block">Called to process a token.</div>
|
|
632
|
+
</td>
|
|
633
|
+
</tr>
|
|
634
|
+
<tr class="rowColor">
|
|
635
|
+
<td class="colFirst"><code>void</code></td>
|
|
636
|
+
<td class="colLast"><span class="strong">PackageAnnotationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/annotation/PackageAnnotationCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
637
|
+
<div class="block">Called to process a token.</div>
|
|
638
|
+
</td>
|
|
639
|
+
</tr>
|
|
640
|
+
<tr class="altColor">
|
|
641
|
+
<td class="colFirst"><code>void</code></td>
|
|
642
|
+
<td class="colLast"><span class="strong">MissingOverrideCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/annotation/MissingOverrideCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
643
|
+
<div class="block">Called to process a token.</div>
|
|
644
|
+
</td>
|
|
645
|
+
</tr>
|
|
646
|
+
<tr class="rowColor">
|
|
647
|
+
<td class="colFirst"><code>void</code></td>
|
|
648
|
+
<td class="colLast"><span class="strong">MissingDeprecatedCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/annotation/MissingDeprecatedCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
649
|
+
<div class="block">Called to process a token.</div>
|
|
650
|
+
</td>
|
|
651
|
+
</tr>
|
|
652
|
+
<tr class="altColor">
|
|
653
|
+
<td class="colFirst"><code>void</code></td>
|
|
654
|
+
<td class="colLast"><span class="strong">AnnotationUseStyleCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/annotation/AnnotationUseStyleCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
655
|
+
<div class="block">Called to process a token.</div>
|
|
656
|
+
</td>
|
|
657
|
+
</tr>
|
|
658
|
+
</tbody>
|
|
659
|
+
</table>
|
|
660
|
+
</li>
|
|
661
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.blocks">
|
|
662
|
+
<!-- -->
|
|
663
|
+
</a>
|
|
664
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/blocks/package-summary.html">com.puppycrawl.tools.checkstyle.checks.blocks</a></h3>
|
|
665
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
666
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/blocks/package-summary.html">com.puppycrawl.tools.checkstyle.checks.blocks</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
667
|
+
<tr>
|
|
668
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
669
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
670
|
+
</tr>
|
|
671
|
+
<tbody>
|
|
672
|
+
<tr class="altColor">
|
|
673
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
674
|
+
<td class="colLast"><span class="strong">EmptyBlockCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/blocks/EmptyBlockCheck.html#hasText(com.puppycrawl.tools.checkstyle.api.DetailAST)">hasText</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aSlistAST)</code> </td>
|
|
675
|
+
</tr>
|
|
676
|
+
<tr class="rowColor">
|
|
677
|
+
<td class="colFirst"><code>void</code></td>
|
|
678
|
+
<td class="colLast"><span class="strong">RightCurlyCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/blocks/RightCurlyCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
679
|
+
</tr>
|
|
680
|
+
<tr class="altColor">
|
|
681
|
+
<td class="colFirst"><code>void</code></td>
|
|
682
|
+
<td class="colLast"><span class="strong">NeedBracesCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/blocks/NeedBracesCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
683
|
+
</tr>
|
|
684
|
+
<tr class="rowColor">
|
|
685
|
+
<td class="colFirst"><code>void</code></td>
|
|
686
|
+
<td class="colLast"><span class="strong">LeftCurlyCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/blocks/LeftCurlyCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
687
|
+
</tr>
|
|
688
|
+
<tr class="altColor">
|
|
689
|
+
<td class="colFirst"><code>void</code></td>
|
|
690
|
+
<td class="colLast"><span class="strong">EmptyBlockCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/blocks/EmptyBlockCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
691
|
+
</tr>
|
|
692
|
+
<tr class="rowColor">
|
|
693
|
+
<td class="colFirst"><code>void</code></td>
|
|
694
|
+
<td class="colLast"><span class="strong">AvoidNestedBlocksCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/blocks/AvoidNestedBlocksCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
695
|
+
</tr>
|
|
696
|
+
</tbody>
|
|
697
|
+
</table>
|
|
698
|
+
</li>
|
|
699
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.coding">
|
|
700
|
+
<!-- -->
|
|
701
|
+
</a>
|
|
702
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/package-summary.html">com.puppycrawl.tools.checkstyle.checks.coding</a></h3>
|
|
703
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
704
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/package-summary.html">com.puppycrawl.tools.checkstyle.checks.coding</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
705
|
+
<tr>
|
|
706
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
707
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
708
|
+
</tr>
|
|
709
|
+
<tbody>
|
|
710
|
+
<tr class="altColor">
|
|
711
|
+
<td class="colFirst"><code>void</code></td>
|
|
712
|
+
<td class="colLast"><span class="strong">ReturnCountCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ReturnCountCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
713
|
+
</tr>
|
|
714
|
+
<tr class="rowColor">
|
|
715
|
+
<td class="colFirst"><code>void</code></td>
|
|
716
|
+
<td class="colLast"><span class="strong">ParameterAssignmentCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ParameterAssignmentCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
717
|
+
</tr>
|
|
718
|
+
<tr class="altColor">
|
|
719
|
+
<td class="colFirst"><code>void</code></td>
|
|
720
|
+
<td class="colLast"><span class="strong">PackageDeclarationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/PackageDeclarationCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
721
|
+
</tr>
|
|
722
|
+
<tr class="rowColor">
|
|
723
|
+
<td class="colFirst"><code>void</code></td>
|
|
724
|
+
<td class="colLast"><span class="strong">OneStatementPerLineCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/OneStatementPerLineCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
725
|
+
</tr>
|
|
726
|
+
<tr class="altColor">
|
|
727
|
+
<td class="colFirst"><code>void</code></td>
|
|
728
|
+
<td class="colLast"><span class="strong">MultipleStringLiteralsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/MultipleStringLiteralsCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
729
|
+
</tr>
|
|
730
|
+
<tr class="rowColor">
|
|
731
|
+
<td class="colFirst"><code>void</code></td>
|
|
732
|
+
<td class="colLast"><span class="strong">ModifiedControlVariableCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ModifiedControlVariableCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
733
|
+
</tr>
|
|
734
|
+
<tr class="altColor">
|
|
735
|
+
<td class="colFirst"><code>void</code></td>
|
|
736
|
+
<td class="colLast"><span class="strong">IllegalTokenTextCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenTextCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
737
|
+
</tr>
|
|
738
|
+
<tr class="rowColor">
|
|
739
|
+
<td class="colFirst"><code>void</code></td>
|
|
740
|
+
<td class="colLast"><span class="strong">IllegalInstantiationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/IllegalInstantiationCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
741
|
+
</tr>
|
|
742
|
+
<tr class="altColor">
|
|
743
|
+
<td class="colFirst"><code>void</code></td>
|
|
744
|
+
<td class="colLast"><span class="strong">HiddenFieldCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/HiddenFieldCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
745
|
+
</tr>
|
|
746
|
+
<tr class="rowColor">
|
|
747
|
+
<td class="colFirst"><code>void</code></td>
|
|
748
|
+
<td class="colLast"><span class="strong">EqualsHashCodeCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/EqualsHashCodeCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
749
|
+
</tr>
|
|
750
|
+
<tr class="altColor">
|
|
751
|
+
<td class="colFirst"><code>void</code></td>
|
|
752
|
+
<td class="colLast"><span class="strong">AbstractSuperCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/AbstractSuperCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
753
|
+
</tr>
|
|
754
|
+
<tr class="rowColor">
|
|
755
|
+
<td class="colFirst"><code>void</code></td>
|
|
756
|
+
<td class="colLast"><span class="strong">AbstractNestedDepthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/AbstractNestedDepthCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
757
|
+
</tr>
|
|
758
|
+
<tr class="altColor">
|
|
759
|
+
<td class="colFirst"><code>void</code></td>
|
|
760
|
+
<td class="colLast"><span class="strong">PackageDeclarationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/PackageDeclarationCheck.html#finishTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">finishTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
761
|
+
</tr>
|
|
762
|
+
<tr class="rowColor">
|
|
763
|
+
<td class="colFirst"><code>void</code></td>
|
|
764
|
+
<td class="colLast"><span class="strong">MultipleStringLiteralsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/MultipleStringLiteralsCheck.html#finishTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">finishTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
765
|
+
</tr>
|
|
766
|
+
<tr class="altColor">
|
|
767
|
+
<td class="colFirst"><code>void</code></td>
|
|
768
|
+
<td class="colLast"><span class="strong">IllegalInstantiationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/IllegalInstantiationCheck.html#finishTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">finishTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
769
|
+
</tr>
|
|
770
|
+
<tr class="rowColor">
|
|
771
|
+
<td class="colFirst"><code>void</code></td>
|
|
772
|
+
<td class="colLast"><span class="strong">EqualsHashCodeCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/EqualsHashCodeCheck.html#finishTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">finishTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
773
|
+
</tr>
|
|
774
|
+
<tr class="altColor">
|
|
775
|
+
<td class="colFirst"><code>void</code></td>
|
|
776
|
+
<td class="colLast"><span class="strong">UnnecessaryParenthesesCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/UnnecessaryParenthesesCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
777
|
+
</tr>
|
|
778
|
+
<tr class="rowColor">
|
|
779
|
+
<td class="colFirst"><code>void</code></td>
|
|
780
|
+
<td class="colLast"><span class="strong">ReturnCountCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ReturnCountCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
781
|
+
</tr>
|
|
782
|
+
<tr class="altColor">
|
|
783
|
+
<td class="colFirst"><code>void</code></td>
|
|
784
|
+
<td class="colLast"><span class="strong">ParameterAssignmentCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ParameterAssignmentCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
785
|
+
</tr>
|
|
786
|
+
<tr class="rowColor">
|
|
787
|
+
<td class="colFirst"><code>void</code></td>
|
|
788
|
+
<td class="colLast"><span class="strong">OneStatementPerLineCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/OneStatementPerLineCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code> </td>
|
|
789
|
+
</tr>
|
|
790
|
+
<tr class="altColor">
|
|
791
|
+
<td class="colFirst"><code>void</code></td>
|
|
792
|
+
<td class="colLast"><span class="strong">NestedTryDepthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/NestedTryDepthCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
793
|
+
</tr>
|
|
794
|
+
<tr class="rowColor">
|
|
795
|
+
<td class="colFirst"><code>void</code></td>
|
|
796
|
+
<td class="colLast"><span class="strong">NestedIfDepthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/NestedIfDepthCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
797
|
+
</tr>
|
|
798
|
+
<tr class="altColor">
|
|
799
|
+
<td class="colFirst"><code>void</code></td>
|
|
800
|
+
<td class="colLast"><span class="strong">NestedForDepthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/NestedForDepthCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
801
|
+
</tr>
|
|
802
|
+
<tr class="rowColor">
|
|
803
|
+
<td class="colFirst"><code>void</code></td>
|
|
804
|
+
<td class="colLast"><span class="strong">ModifiedControlVariableCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ModifiedControlVariableCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
805
|
+
</tr>
|
|
806
|
+
<tr class="altColor">
|
|
807
|
+
<td class="colFirst"><code>void</code></td>
|
|
808
|
+
<td class="colLast"><span class="strong">HiddenFieldCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/HiddenFieldCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
809
|
+
</tr>
|
|
810
|
+
<tr class="rowColor">
|
|
811
|
+
<td class="colFirst"><code>void</code></td>
|
|
812
|
+
<td class="colLast"><span class="strong">FinalLocalVariableCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/FinalLocalVariableCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
813
|
+
</tr>
|
|
814
|
+
<tr class="altColor">
|
|
815
|
+
<td class="colFirst"><code>void</code></td>
|
|
816
|
+
<td class="colLast"><span class="strong">DeclarationOrderCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
817
|
+
</tr>
|
|
818
|
+
<tr class="rowColor">
|
|
819
|
+
<td class="colFirst"><code>void</code></td>
|
|
820
|
+
<td class="colLast"><span class="strong">AbstractSuperCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/AbstractSuperCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
821
|
+
</tr>
|
|
822
|
+
<tr class="altColor">
|
|
823
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
824
|
+
<td class="colLast"><span class="strong">AbstractNestedDepthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/AbstractNestedDepthCheck.html#nestIn(com.puppycrawl.tools.checkstyle.api.DetailAST, java.lang.String)">nestIn</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST,
|
|
825
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> aMessageId)</code>
|
|
826
|
+
<div class="block">Increasing current nesting depth.</div>
|
|
827
|
+
</td>
|
|
828
|
+
</tr>
|
|
829
|
+
<tr class="rowColor">
|
|
830
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
831
|
+
<td class="colLast"><span class="strong">RedundantThrowsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/RedundantThrowsCheck.html#processAST(com.puppycrawl.tools.checkstyle.api.DetailAST)">processAST</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
832
|
+
</tr>
|
|
833
|
+
<tr class="altColor">
|
|
834
|
+
<td class="colFirst"><code>void</code></td>
|
|
835
|
+
<td class="colLast"><span class="strong">UnnecessaryParenthesesCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/UnnecessaryParenthesesCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
836
|
+
</tr>
|
|
837
|
+
<tr class="rowColor">
|
|
838
|
+
<td class="colFirst"><code>void</code></td>
|
|
839
|
+
<td class="colLast"><span class="strong">StringLiteralEqualityCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/StringLiteralEqualityCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
840
|
+
</tr>
|
|
841
|
+
<tr class="altColor">
|
|
842
|
+
<td class="colFirst"><code>void</code></td>
|
|
843
|
+
<td class="colLast"><span class="strong">SimplifyBooleanReturnCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/SimplifyBooleanReturnCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
844
|
+
</tr>
|
|
845
|
+
<tr class="rowColor">
|
|
846
|
+
<td class="colFirst"><code>void</code></td>
|
|
847
|
+
<td class="colLast"><span class="strong">SimplifyBooleanExpressionCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/SimplifyBooleanExpressionCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
848
|
+
</tr>
|
|
849
|
+
<tr class="altColor">
|
|
850
|
+
<td class="colFirst"><code>void</code></td>
|
|
851
|
+
<td class="colLast"><span class="strong">ReturnCountCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ReturnCountCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
852
|
+
</tr>
|
|
853
|
+
<tr class="rowColor">
|
|
854
|
+
<td class="colFirst"><code>void</code></td>
|
|
855
|
+
<td class="colLast"><span class="strong">RequireThisCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/RequireThisCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
856
|
+
</tr>
|
|
857
|
+
<tr class="altColor">
|
|
858
|
+
<td class="colFirst"><code>void</code></td>
|
|
859
|
+
<td class="colLast"><span class="strong">ParameterAssignmentCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ParameterAssignmentCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
860
|
+
</tr>
|
|
861
|
+
<tr class="rowColor">
|
|
862
|
+
<td class="colFirst"><code>void</code></td>
|
|
863
|
+
<td class="colLast"><span class="strong">PackageDeclarationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/PackageDeclarationCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
864
|
+
</tr>
|
|
865
|
+
<tr class="altColor">
|
|
866
|
+
<td class="colFirst"><code>void</code></td>
|
|
867
|
+
<td class="colLast"><span class="strong">OneStatementPerLineCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/OneStatementPerLineCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code> </td>
|
|
868
|
+
</tr>
|
|
869
|
+
<tr class="rowColor">
|
|
870
|
+
<td class="colFirst"><code>void</code></td>
|
|
871
|
+
<td class="colLast"><span class="strong">NestedTryDepthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/NestedTryDepthCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
872
|
+
</tr>
|
|
873
|
+
<tr class="altColor">
|
|
874
|
+
<td class="colFirst"><code>void</code></td>
|
|
875
|
+
<td class="colLast"><span class="strong">NestedIfDepthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/NestedIfDepthCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
876
|
+
</tr>
|
|
877
|
+
<tr class="rowColor">
|
|
878
|
+
<td class="colFirst"><code>void</code></td>
|
|
879
|
+
<td class="colLast"><span class="strong">NestedForDepthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/NestedForDepthCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
880
|
+
</tr>
|
|
881
|
+
<tr class="altColor">
|
|
882
|
+
<td class="colFirst"><code>void</code></td>
|
|
883
|
+
<td class="colLast"><span class="strong">MultipleVariableDeclarationsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/MultipleVariableDeclarationsCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
884
|
+
</tr>
|
|
885
|
+
<tr class="rowColor">
|
|
886
|
+
<td class="colFirst"><code>void</code></td>
|
|
887
|
+
<td class="colLast"><span class="strong">MultipleStringLiteralsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/MultipleStringLiteralsCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
888
|
+
</tr>
|
|
889
|
+
<tr class="altColor">
|
|
890
|
+
<td class="colFirst"><code>void</code></td>
|
|
891
|
+
<td class="colLast"><span class="strong">ModifiedControlVariableCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ModifiedControlVariableCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
892
|
+
</tr>
|
|
893
|
+
<tr class="rowColor">
|
|
894
|
+
<td class="colFirst"><code>void</code></td>
|
|
895
|
+
<td class="colLast"><span class="strong">MissingCtorCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/MissingCtorCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
896
|
+
</tr>
|
|
897
|
+
<tr class="altColor">
|
|
898
|
+
<td class="colFirst"><code>void</code></td>
|
|
899
|
+
<td class="colLast"><span class="strong">MagicNumberCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/MagicNumberCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
900
|
+
</tr>
|
|
901
|
+
<tr class="rowColor">
|
|
902
|
+
<td class="colFirst"><code>void</code></td>
|
|
903
|
+
<td class="colLast"><span class="strong">JUnitTestCaseCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/JUnitTestCaseCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
904
|
+
</tr>
|
|
905
|
+
<tr class="altColor">
|
|
906
|
+
<td class="colFirst"><code>void</code></td>
|
|
907
|
+
<td class="colLast"><span class="strong">InnerAssignmentCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/InnerAssignmentCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
908
|
+
</tr>
|
|
909
|
+
<tr class="rowColor">
|
|
910
|
+
<td class="colFirst"><code>void</code></td>
|
|
911
|
+
<td class="colLast"><span class="strong">IllegalTypeCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/IllegalTypeCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
912
|
+
</tr>
|
|
913
|
+
<tr class="altColor">
|
|
914
|
+
<td class="colFirst"><code>void</code></td>
|
|
915
|
+
<td class="colLast"><span class="strong">IllegalTokenTextCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenTextCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
916
|
+
</tr>
|
|
917
|
+
<tr class="rowColor">
|
|
918
|
+
<td class="colFirst"><code>void</code></td>
|
|
919
|
+
<td class="colLast"><span class="strong">IllegalTokenCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
920
|
+
</tr>
|
|
921
|
+
<tr class="altColor">
|
|
922
|
+
<td class="colFirst"><code>void</code></td>
|
|
923
|
+
<td class="colLast"><span class="strong">IllegalThrowsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/IllegalThrowsCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aDetailAST)</code> </td>
|
|
924
|
+
</tr>
|
|
925
|
+
<tr class="rowColor">
|
|
926
|
+
<td class="colFirst"><code>void</code></td>
|
|
927
|
+
<td class="colLast"><span class="strong">IllegalInstantiationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/IllegalInstantiationCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
928
|
+
</tr>
|
|
929
|
+
<tr class="altColor">
|
|
930
|
+
<td class="colFirst"><code>void</code></td>
|
|
931
|
+
<td class="colLast"><span class="strong">IllegalCatchCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/IllegalCatchCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aDetailAST)</code> </td>
|
|
932
|
+
</tr>
|
|
933
|
+
<tr class="rowColor">
|
|
934
|
+
<td class="colFirst"><code>void</code></td>
|
|
935
|
+
<td class="colLast"><span class="strong">HiddenFieldCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/HiddenFieldCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
936
|
+
</tr>
|
|
937
|
+
<tr class="altColor">
|
|
938
|
+
<td class="colFirst"><code>void</code></td>
|
|
939
|
+
<td class="colLast"><span class="strong">FinalLocalVariableCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/FinalLocalVariableCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
940
|
+
</tr>
|
|
941
|
+
<tr class="rowColor">
|
|
942
|
+
<td class="colFirst"><code>void</code></td>
|
|
943
|
+
<td class="colLast"><span class="strong">FallThroughCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/FallThroughCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
944
|
+
</tr>
|
|
945
|
+
<tr class="altColor">
|
|
946
|
+
<td class="colFirst"><code>void</code></td>
|
|
947
|
+
<td class="colLast"><span class="strong">ExplicitInitializationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ExplicitInitializationCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
948
|
+
</tr>
|
|
949
|
+
<tr class="rowColor">
|
|
950
|
+
<td class="colFirst"><code>void</code></td>
|
|
951
|
+
<td class="colLast"><span class="strong">EqualsHashCodeCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/EqualsHashCodeCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
952
|
+
</tr>
|
|
953
|
+
<tr class="altColor">
|
|
954
|
+
<td class="colFirst"><code>void</code></td>
|
|
955
|
+
<td class="colLast"><span class="strong">EqualsAvoidNullCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/EqualsAvoidNullCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aMethodCall)</code> </td>
|
|
956
|
+
</tr>
|
|
957
|
+
<tr class="rowColor">
|
|
958
|
+
<td class="colFirst"><code>void</code></td>
|
|
959
|
+
<td class="colLast"><span class="strong">EmptyStatementCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/EmptyStatementCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
960
|
+
</tr>
|
|
961
|
+
<tr class="altColor">
|
|
962
|
+
<td class="colFirst"><code>void</code></td>
|
|
963
|
+
<td class="colLast"><span class="strong">DefaultComesLastCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/DefaultComesLastCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
964
|
+
</tr>
|
|
965
|
+
<tr class="rowColor">
|
|
966
|
+
<td class="colFirst"><code>void</code></td>
|
|
967
|
+
<td class="colLast"><span class="strong">DeclarationOrderCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
968
|
+
</tr>
|
|
969
|
+
<tr class="altColor">
|
|
970
|
+
<td class="colFirst"><code>void</code></td>
|
|
971
|
+
<td class="colLast"><span class="strong">CovariantEqualsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/CovariantEqualsCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
972
|
+
</tr>
|
|
973
|
+
<tr class="rowColor">
|
|
974
|
+
<td class="colFirst"><code>void</code></td>
|
|
975
|
+
<td class="colLast"><span class="strong">AvoidInlineConditionalsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/AvoidInlineConditionalsCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
976
|
+
</tr>
|
|
977
|
+
<tr class="altColor">
|
|
978
|
+
<td class="colFirst"><code>void</code></td>
|
|
979
|
+
<td class="colLast"><span class="strong">ArrayTrailingCommaCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/ArrayTrailingCommaCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aArrayInit)</code> </td>
|
|
980
|
+
</tr>
|
|
981
|
+
<tr class="rowColor">
|
|
982
|
+
<td class="colFirst"><code>void</code></td>
|
|
983
|
+
<td class="colLast"><span class="strong">AbstractSuperCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/AbstractSuperCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
984
|
+
</tr>
|
|
985
|
+
<tr class="altColor">
|
|
986
|
+
<td class="colFirst"><code>void</code></td>
|
|
987
|
+
<td class="colLast"><span class="strong">AbstractIllegalMethodCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/AbstractIllegalMethodCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
988
|
+
</tr>
|
|
989
|
+
</tbody>
|
|
990
|
+
</table>
|
|
991
|
+
</li>
|
|
992
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.design">
|
|
993
|
+
<!-- -->
|
|
994
|
+
</a>
|
|
995
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/package-summary.html">com.puppycrawl.tools.checkstyle.checks.design</a></h3>
|
|
996
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
997
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/package-summary.html">com.puppycrawl.tools.checkstyle.checks.design</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
998
|
+
<tr>
|
|
999
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1000
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1001
|
+
</tr>
|
|
1002
|
+
<tbody>
|
|
1003
|
+
<tr class="altColor">
|
|
1004
|
+
<td class="colFirst"><code>void</code></td>
|
|
1005
|
+
<td class="colLast"><span class="strong">MutableExceptionCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/MutableExceptionCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1006
|
+
</tr>
|
|
1007
|
+
<tr class="rowColor">
|
|
1008
|
+
<td class="colFirst"><code>void</code></td>
|
|
1009
|
+
<td class="colLast"><span class="strong">InnerTypeLastCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/InnerTypeLastCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1010
|
+
</tr>
|
|
1011
|
+
<tr class="altColor">
|
|
1012
|
+
<td class="colFirst"><code>void</code></td>
|
|
1013
|
+
<td class="colLast"><span class="strong">FinalClassCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/FinalClassCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1014
|
+
</tr>
|
|
1015
|
+
<tr class="rowColor">
|
|
1016
|
+
<td class="colFirst"><code>void</code></td>
|
|
1017
|
+
<td class="colLast"><span class="strong">VisibilityModifierCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/VisibilityModifierCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1018
|
+
</tr>
|
|
1019
|
+
<tr class="altColor">
|
|
1020
|
+
<td class="colFirst"><code>void</code></td>
|
|
1021
|
+
<td class="colLast"><span class="strong">ThrowsCountCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/ThrowsCountCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1022
|
+
</tr>
|
|
1023
|
+
<tr class="rowColor">
|
|
1024
|
+
<td class="colFirst"><code>void</code></td>
|
|
1025
|
+
<td class="colLast"><span class="strong">MutableExceptionCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/MutableExceptionCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1026
|
+
</tr>
|
|
1027
|
+
<tr class="altColor">
|
|
1028
|
+
<td class="colFirst"><code>void</code></td>
|
|
1029
|
+
<td class="colLast"><span class="strong">InterfaceIsTypeCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/InterfaceIsTypeCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1030
|
+
</tr>
|
|
1031
|
+
<tr class="rowColor">
|
|
1032
|
+
<td class="colFirst"><code>void</code></td>
|
|
1033
|
+
<td class="colLast"><span class="strong">InnerTypeLastCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/InnerTypeLastCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1034
|
+
</tr>
|
|
1035
|
+
<tr class="altColor">
|
|
1036
|
+
<td class="colFirst"><code>void</code></td>
|
|
1037
|
+
<td class="colLast"><span class="strong">HideUtilityClassConstructorCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/HideUtilityClassConstructorCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1038
|
+
</tr>
|
|
1039
|
+
<tr class="rowColor">
|
|
1040
|
+
<td class="colFirst"><code>void</code></td>
|
|
1041
|
+
<td class="colLast"><span class="strong">FinalClassCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/FinalClassCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1042
|
+
</tr>
|
|
1043
|
+
<tr class="altColor">
|
|
1044
|
+
<td class="colFirst"><code>void</code></td>
|
|
1045
|
+
<td class="colLast"><span class="strong">DesignForExtensionCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/design/DesignForExtensionCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1046
|
+
</tr>
|
|
1047
|
+
</tbody>
|
|
1048
|
+
</table>
|
|
1049
|
+
</li>
|
|
1050
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.imports">
|
|
1051
|
+
<!-- -->
|
|
1052
|
+
</a>
|
|
1053
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/package-summary.html">com.puppycrawl.tools.checkstyle.checks.imports</a></h3>
|
|
1054
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1055
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/package-summary.html">com.puppycrawl.tools.checkstyle.checks.imports</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1056
|
+
<tr>
|
|
1057
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1058
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1059
|
+
</tr>
|
|
1060
|
+
<tbody>
|
|
1061
|
+
<tr class="altColor">
|
|
1062
|
+
<td class="colFirst"><code>void</code></td>
|
|
1063
|
+
<td class="colLast"><span class="strong">UnusedImportsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/UnusedImportsCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1064
|
+
</tr>
|
|
1065
|
+
<tr class="rowColor">
|
|
1066
|
+
<td class="colFirst"><code>void</code></td>
|
|
1067
|
+
<td class="colLast"><span class="strong">RedundantImportCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/RedundantImportCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1068
|
+
</tr>
|
|
1069
|
+
<tr class="altColor">
|
|
1070
|
+
<td class="colFirst"><code>void</code></td>
|
|
1071
|
+
<td class="colLast"><span class="strong">ImportOrderCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/ImportOrderCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1072
|
+
</tr>
|
|
1073
|
+
<tr class="rowColor">
|
|
1074
|
+
<td class="colFirst"><code>void</code></td>
|
|
1075
|
+
<td class="colLast"><span class="strong">ImportControlCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/ImportControlCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1076
|
+
</tr>
|
|
1077
|
+
<tr class="altColor">
|
|
1078
|
+
<td class="colFirst"><code>void</code></td>
|
|
1079
|
+
<td class="colLast"><span class="strong">UnusedImportsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/UnusedImportsCheck.html#finishTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">finishTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1080
|
+
</tr>
|
|
1081
|
+
<tr class="rowColor">
|
|
1082
|
+
<td class="colFirst"><code>void</code></td>
|
|
1083
|
+
<td class="colLast"><span class="strong">UnusedImportsCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/UnusedImportsCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1084
|
+
</tr>
|
|
1085
|
+
<tr class="altColor">
|
|
1086
|
+
<td class="colFirst"><code>void</code></td>
|
|
1087
|
+
<td class="colLast"><span class="strong">RedundantImportCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/RedundantImportCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1088
|
+
</tr>
|
|
1089
|
+
<tr class="rowColor">
|
|
1090
|
+
<td class="colFirst"><code>void</code></td>
|
|
1091
|
+
<td class="colLast"><span class="strong">ImportOrderCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/ImportOrderCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1092
|
+
</tr>
|
|
1093
|
+
<tr class="altColor">
|
|
1094
|
+
<td class="colFirst"><code>void</code></td>
|
|
1095
|
+
<td class="colLast"><span class="strong">ImportControlCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/ImportControlCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1096
|
+
</tr>
|
|
1097
|
+
<tr class="rowColor">
|
|
1098
|
+
<td class="colFirst"><code>void</code></td>
|
|
1099
|
+
<td class="colLast"><span class="strong">IllegalImportCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/IllegalImportCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1100
|
+
</tr>
|
|
1101
|
+
<tr class="altColor">
|
|
1102
|
+
<td class="colFirst"><code>void</code></td>
|
|
1103
|
+
<td class="colLast"><span class="strong">AvoidStaticImportCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/AvoidStaticImportCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1104
|
+
</tr>
|
|
1105
|
+
<tr class="rowColor">
|
|
1106
|
+
<td class="colFirst"><code>void</code></td>
|
|
1107
|
+
<td class="colLast"><span class="strong">AvoidStarImportCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/imports/AvoidStarImportCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1108
|
+
</tr>
|
|
1109
|
+
</tbody>
|
|
1110
|
+
</table>
|
|
1111
|
+
</li>
|
|
1112
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.indentation">
|
|
1113
|
+
<!-- -->
|
|
1114
|
+
</a>
|
|
1115
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/package-summary.html">com.puppycrawl.tools.checkstyle.checks.indentation</a></h3>
|
|
1116
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1117
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/package-summary.html">com.puppycrawl.tools.checkstyle.checks.indentation</a> that return <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1118
|
+
<tr>
|
|
1119
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1120
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1121
|
+
</tr>
|
|
1122
|
+
<tbody>
|
|
1123
|
+
<tr class="altColor">
|
|
1124
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1125
|
+
<td class="colLast"><span class="strong">SwitchHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SwitchHandler.html#getLCurly()">getLCurly</a></strong>()</code> </td>
|
|
1126
|
+
</tr>
|
|
1127
|
+
<tr class="rowColor">
|
|
1128
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1129
|
+
<td class="colLast"><span class="strong">SlistHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SlistHandler.html#getLCurly()">getLCurly</a></strong>()</code> </td>
|
|
1130
|
+
</tr>
|
|
1131
|
+
<tr class="altColor">
|
|
1132
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1133
|
+
<td class="colLast"><span class="strong">ObjectBlockHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ObjectBlockHandler.html#getLCurly()">getLCurly</a></strong>()</code> </td>
|
|
1134
|
+
</tr>
|
|
1135
|
+
<tr class="rowColor">
|
|
1136
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1137
|
+
<td class="colLast"><span class="strong">ClassDefHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ClassDefHandler.html#getLCurly()">getLCurly</a></strong>()</code> </td>
|
|
1138
|
+
</tr>
|
|
1139
|
+
<tr class="altColor">
|
|
1140
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1141
|
+
<td class="colLast"><span class="strong">BlockParentHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/BlockParentHandler.html#getLCurly()">getLCurly</a></strong>()</code>
|
|
1142
|
+
<div class="block">Get the left curly brace portion of the expression we are handling.</div>
|
|
1143
|
+
</td>
|
|
1144
|
+
</tr>
|
|
1145
|
+
<tr class="rowColor">
|
|
1146
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1147
|
+
<td class="colLast"><span class="strong">ArrayInitHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ArrayInitHandler.html#getLCurly()">getLCurly</a></strong>()</code> </td>
|
|
1148
|
+
</tr>
|
|
1149
|
+
<tr class="altColor">
|
|
1150
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1151
|
+
<td class="colLast"><span class="strong">SwitchHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SwitchHandler.html#getListChild()">getListChild</a></strong>()</code> </td>
|
|
1152
|
+
</tr>
|
|
1153
|
+
<tr class="rowColor">
|
|
1154
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1155
|
+
<td class="colLast"><span class="strong">SlistHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SlistHandler.html#getListChild()">getListChild</a></strong>()</code> </td>
|
|
1156
|
+
</tr>
|
|
1157
|
+
<tr class="altColor">
|
|
1158
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1159
|
+
<td class="colLast"><span class="strong">ObjectBlockHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ObjectBlockHandler.html#getListChild()">getListChild</a></strong>()</code> </td>
|
|
1160
|
+
</tr>
|
|
1161
|
+
<tr class="rowColor">
|
|
1162
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1163
|
+
<td class="colLast"><span class="strong">ClassDefHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ClassDefHandler.html#getListChild()">getListChild</a></strong>()</code> </td>
|
|
1164
|
+
</tr>
|
|
1165
|
+
<tr class="altColor">
|
|
1166
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1167
|
+
<td class="colLast"><span class="strong">BlockParentHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/BlockParentHandler.html#getListChild()">getListChild</a></strong>()</code>
|
|
1168
|
+
<div class="block">Get the child element representing the list of statements.</div>
|
|
1169
|
+
</td>
|
|
1170
|
+
</tr>
|
|
1171
|
+
<tr class="rowColor">
|
|
1172
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1173
|
+
<td class="colLast"><span class="strong">ArrayInitHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ArrayInitHandler.html#getListChild()">getListChild</a></strong>()</code> </td>
|
|
1174
|
+
</tr>
|
|
1175
|
+
<tr class="altColor">
|
|
1176
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1177
|
+
<td class="colLast"><span class="strong">BlockParentHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/BlockParentHandler.html#getLParen()">getLParen</a></strong>()</code>
|
|
1178
|
+
<div class="block">Get the left parenthesis portion of the expression we are handling.</div>
|
|
1179
|
+
</td>
|
|
1180
|
+
</tr>
|
|
1181
|
+
<tr class="rowColor">
|
|
1182
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1183
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#getMainAst()">getMainAst</a></strong>()</code>
|
|
1184
|
+
<div class="block">Accessor for the MainAst attribute.</div>
|
|
1185
|
+
</td>
|
|
1186
|
+
</tr>
|
|
1187
|
+
<tr class="altColor">
|
|
1188
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1189
|
+
<td class="colLast"><span class="strong">SwitchHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SwitchHandler.html#getNonlistChild()">getNonlistChild</a></strong>()</code> </td>
|
|
1190
|
+
</tr>
|
|
1191
|
+
<tr class="rowColor">
|
|
1192
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1193
|
+
<td class="colLast"><span class="strong">SlistHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SlistHandler.html#getNonlistChild()">getNonlistChild</a></strong>()</code> </td>
|
|
1194
|
+
</tr>
|
|
1195
|
+
<tr class="altColor">
|
|
1196
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1197
|
+
<td class="colLast"><span class="strong">ElseHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ElseHandler.html#getNonlistChild()">getNonlistChild</a></strong>()</code> </td>
|
|
1198
|
+
</tr>
|
|
1199
|
+
<tr class="rowColor">
|
|
1200
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1201
|
+
<td class="colLast"><span class="strong">BlockParentHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/BlockParentHandler.html#getNonlistChild()">getNonlistChild</a></strong>()</code>
|
|
1202
|
+
<div class="block">Get the child element that is not a list of statements.</div>
|
|
1203
|
+
</td>
|
|
1204
|
+
</tr>
|
|
1205
|
+
<tr class="altColor">
|
|
1206
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1207
|
+
<td class="colLast"><span class="strong">SwitchHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SwitchHandler.html#getRCurly()">getRCurly</a></strong>()</code> </td>
|
|
1208
|
+
</tr>
|
|
1209
|
+
<tr class="rowColor">
|
|
1210
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1211
|
+
<td class="colLast"><span class="strong">SlistHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SlistHandler.html#getRCurly()">getRCurly</a></strong>()</code> </td>
|
|
1212
|
+
</tr>
|
|
1213
|
+
<tr class="altColor">
|
|
1214
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1215
|
+
<td class="colLast"><span class="strong">ObjectBlockHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ObjectBlockHandler.html#getRCurly()">getRCurly</a></strong>()</code> </td>
|
|
1216
|
+
</tr>
|
|
1217
|
+
<tr class="rowColor">
|
|
1218
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1219
|
+
<td class="colLast"><span class="strong">ClassDefHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ClassDefHandler.html#getRCurly()">getRCurly</a></strong>()</code> </td>
|
|
1220
|
+
</tr>
|
|
1221
|
+
<tr class="altColor">
|
|
1222
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1223
|
+
<td class="colLast"><span class="strong">BlockParentHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/BlockParentHandler.html#getRCurly()">getRCurly</a></strong>()</code>
|
|
1224
|
+
<div class="block">Get the right curly brace portion of the expression we are handling.</div>
|
|
1225
|
+
</td>
|
|
1226
|
+
</tr>
|
|
1227
|
+
<tr class="rowColor">
|
|
1228
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1229
|
+
<td class="colLast"><span class="strong">ArrayInitHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ArrayInitHandler.html#getRCurly()">getRCurly</a></strong>()</code> </td>
|
|
1230
|
+
</tr>
|
|
1231
|
+
<tr class="altColor">
|
|
1232
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1233
|
+
<td class="colLast"><span class="strong">BlockParentHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/BlockParentHandler.html#getRParen()">getRParen</a></strong>()</code>
|
|
1234
|
+
<div class="block">Get the right parenthesis portion of the expression we are handling.</div>
|
|
1235
|
+
</td>
|
|
1236
|
+
</tr>
|
|
1237
|
+
<tr class="rowColor">
|
|
1238
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1239
|
+
<td class="colLast"><span class="strong">SlistHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SlistHandler.html#getToplevelAST()">getToplevelAST</a></strong>()</code> </td>
|
|
1240
|
+
</tr>
|
|
1241
|
+
<tr class="altColor">
|
|
1242
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1243
|
+
<td class="colLast"><span class="strong">ObjectBlockHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ObjectBlockHandler.html#getToplevelAST()">getToplevelAST</a></strong>()</code> </td>
|
|
1244
|
+
</tr>
|
|
1245
|
+
<tr class="rowColor">
|
|
1246
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1247
|
+
<td class="colLast"><span class="strong">MethodDefHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/MethodDefHandler.html#getToplevelAST()">getToplevelAST</a></strong>()</code> </td>
|
|
1248
|
+
</tr>
|
|
1249
|
+
<tr class="altColor">
|
|
1250
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1251
|
+
<td class="colLast"><span class="strong">ClassDefHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ClassDefHandler.html#getToplevelAST()">getToplevelAST</a></strong>()</code> </td>
|
|
1252
|
+
</tr>
|
|
1253
|
+
<tr class="rowColor">
|
|
1254
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1255
|
+
<td class="colLast"><span class="strong">BlockParentHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/BlockParentHandler.html#getToplevelAST()">getToplevelAST</a></strong>()</code>
|
|
1256
|
+
<div class="block">Get the top level expression being managed by this handler.</div>
|
|
1257
|
+
</td>
|
|
1258
|
+
</tr>
|
|
1259
|
+
<tr class="altColor">
|
|
1260
|
+
<td class="colFirst"><code>protected <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1261
|
+
<td class="colLast"><span class="strong">ArrayInitHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ArrayInitHandler.html#getToplevelAST()">getToplevelAST</a></strong>()</code> </td>
|
|
1262
|
+
</tr>
|
|
1263
|
+
</tbody>
|
|
1264
|
+
</table>
|
|
1265
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1266
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/package-summary.html">com.puppycrawl.tools.checkstyle.checks.indentation</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1267
|
+
<tr>
|
|
1268
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1269
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1270
|
+
</tr>
|
|
1271
|
+
<tbody>
|
|
1272
|
+
<tr class="altColor">
|
|
1273
|
+
<td class="colFirst"><code>void</code></td>
|
|
1274
|
+
<td class="colLast"><span class="strong">IndentationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code> </td>
|
|
1275
|
+
</tr>
|
|
1276
|
+
<tr class="rowColor">
|
|
1277
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1278
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#checkChildren(com.puppycrawl.tools.checkstyle.api.DetailAST, int[], com.puppycrawl.tools.checkstyle.checks.indentation.IndentLevel, boolean, boolean)">checkChildren</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aParent,
|
|
1279
|
+
int[] aTokenTypes,
|
|
1280
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentLevel.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentLevel</a> aStartLevel,
|
|
1281
|
+
boolean aFirstLineMatches,
|
|
1282
|
+
boolean aAllowNesting)</code>
|
|
1283
|
+
<div class="block">Check the indent level of the children of the specified parent
|
|
1284
|
+
expression.</div>
|
|
1285
|
+
</td>
|
|
1286
|
+
</tr>
|
|
1287
|
+
<tr class="altColor">
|
|
1288
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1289
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#checkExpressionSubtree(com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.IndentLevel, boolean, boolean)">checkExpressionSubtree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aTree,
|
|
1290
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentLevel.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentLevel</a> aLevel,
|
|
1291
|
+
boolean aFirstLineMatches,
|
|
1292
|
+
boolean aAllowNesting)</code>
|
|
1293
|
+
<div class="block">Check the indentation level for an expression subtree.</div>
|
|
1294
|
+
</td>
|
|
1295
|
+
</tr>
|
|
1296
|
+
<tr class="rowColor">
|
|
1297
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1298
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#checkLParen(com.puppycrawl.tools.checkstyle.api.DetailAST)">checkLParen</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aLparen)</code>
|
|
1299
|
+
<div class="block">Check the indentation of the left parenthesis.</div>
|
|
1300
|
+
</td>
|
|
1301
|
+
</tr>
|
|
1302
|
+
<tr class="altColor">
|
|
1303
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1304
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#checkRParen(com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.api.DetailAST)">checkRParen</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aLparen,
|
|
1305
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRparen)</code>
|
|
1306
|
+
<div class="block">Check the indentation of the right parenthesis.</div>
|
|
1307
|
+
</td>
|
|
1308
|
+
</tr>
|
|
1309
|
+
<tr class="rowColor">
|
|
1310
|
+
<td class="colFirst"><code>protected int</code></td>
|
|
1311
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#expandedTabsColumnNo(com.puppycrawl.tools.checkstyle.api.DetailAST)">expandedTabsColumnNo</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
1312
|
+
<div class="block">Get the column number for the start of a given expression, expanding
|
|
1313
|
+
tabs out into spaces in the process.</div>
|
|
1314
|
+
</td>
|
|
1315
|
+
</tr>
|
|
1316
|
+
<tr class="altColor">
|
|
1317
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1318
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#findSubtreeLines(com.puppycrawl.tools.checkstyle.checks.indentation.LineSet, com.puppycrawl.tools.checkstyle.api.DetailAST, boolean)">findSubtreeLines</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/LineSet.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">LineSet</a> aLines,
|
|
1319
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aTree,
|
|
1320
|
+
boolean aAllowNesting)</code>
|
|
1321
|
+
<div class="block">Find the set of lines for a given subtree.</div>
|
|
1322
|
+
</td>
|
|
1323
|
+
</tr>
|
|
1324
|
+
<tr class="rowColor">
|
|
1325
|
+
<td class="colFirst"><code>protected int</code></td>
|
|
1326
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#getFirstLine(int, com.puppycrawl.tools.checkstyle.api.DetailAST)">getFirstLine</a></strong>(int aStartLine,
|
|
1327
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aTree)</code>
|
|
1328
|
+
<div class="block">Get the first line for a given expression.</div>
|
|
1329
|
+
</td>
|
|
1330
|
+
</tr>
|
|
1331
|
+
<tr class="altColor">
|
|
1332
|
+
<td class="colFirst"><code><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a></code></td>
|
|
1333
|
+
<td class="colLast"><span class="strong">HandlerFactory.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/HandlerFactory.html#getHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">getHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1334
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1335
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1336
|
+
<div class="block">Get the handler for an AST.</div>
|
|
1337
|
+
</td>
|
|
1338
|
+
</tr>
|
|
1339
|
+
<tr class="rowColor">
|
|
1340
|
+
<td class="colFirst"><code>protected int</code></td>
|
|
1341
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#getLineStart(com.puppycrawl.tools.checkstyle.api.DetailAST)">getLineStart</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code>
|
|
1342
|
+
<div class="block">Get the start of the line for the given expression.</div>
|
|
1343
|
+
</td>
|
|
1344
|
+
</tr>
|
|
1345
|
+
<tr class="altColor">
|
|
1346
|
+
<td class="colFirst"><code>void</code></td>
|
|
1347
|
+
<td class="colLast"><span class="strong">IndentationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1348
|
+
</tr>
|
|
1349
|
+
<tr class="rowColor">
|
|
1350
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1351
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#logError(com.puppycrawl.tools.checkstyle.api.DetailAST, java.lang.String, int)">logError</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1352
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> aSubtypeName,
|
|
1353
|
+
int aActualLevel)</code>
|
|
1354
|
+
<div class="block">Log an indentation error.</div>
|
|
1355
|
+
</td>
|
|
1356
|
+
</tr>
|
|
1357
|
+
<tr class="altColor">
|
|
1358
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1359
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#logError(com.puppycrawl.tools.checkstyle.api.DetailAST, java.lang.String, int, com.puppycrawl.tools.checkstyle.checks.indentation.IndentLevel)">logError</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1360
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> aSubtypeName,
|
|
1361
|
+
int aActualLevel,
|
|
1362
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentLevel.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentLevel</a> aExpectedLevel)</code>
|
|
1363
|
+
<div class="block">Log an indentation error.</div>
|
|
1364
|
+
</td>
|
|
1365
|
+
</tr>
|
|
1366
|
+
<tr class="rowColor">
|
|
1367
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1368
|
+
<td class="colLast"><span class="strong">ExpressionHandler.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#startsLine(com.puppycrawl.tools.checkstyle.api.DetailAST)">startsLine</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code>
|
|
1369
|
+
<div class="block">Determines if the given expression is at the start of a line.</div>
|
|
1370
|
+
</td>
|
|
1371
|
+
</tr>
|
|
1372
|
+
<tr class="altColor">
|
|
1373
|
+
<td class="colFirst"><code>void</code></td>
|
|
1374
|
+
<td class="colLast"><span class="strong">IndentationCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1375
|
+
</tr>
|
|
1376
|
+
</tbody>
|
|
1377
|
+
</table>
|
|
1378
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
|
|
1379
|
+
<caption><span>Constructors in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/package-summary.html">com.puppycrawl.tools.checkstyle.checks.indentation</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1380
|
+
<tr>
|
|
1381
|
+
<th class="colOne" scope="col">Constructor and Description</th>
|
|
1382
|
+
</tr>
|
|
1383
|
+
<tbody>
|
|
1384
|
+
<tr class="altColor">
|
|
1385
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ArrayInitHandler.html#ArrayInitHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">ArrayInitHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1386
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1387
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1388
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1389
|
+
abstract syntax tree, and parent handler.</div>
|
|
1390
|
+
</td>
|
|
1391
|
+
</tr>
|
|
1392
|
+
<tr class="rowColor">
|
|
1393
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/AssignHandler.html#AssignHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">AssignHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1394
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1395
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1396
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1397
|
+
abstract syntax tree, and parent handler.</div>
|
|
1398
|
+
</td>
|
|
1399
|
+
</tr>
|
|
1400
|
+
<tr class="altColor">
|
|
1401
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/BlockParentHandler.html#BlockParentHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, java.lang.String, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">BlockParentHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1402
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> aName,
|
|
1403
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1404
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1405
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1406
|
+
name, abstract syntax tree, and parent handler.</div>
|
|
1407
|
+
</td>
|
|
1408
|
+
</tr>
|
|
1409
|
+
<tr class="rowColor">
|
|
1410
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/CaseHandler.html#CaseHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">CaseHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1411
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aExpr,
|
|
1412
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1413
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1414
|
+
abstract syntax tree, and parent handler.</div>
|
|
1415
|
+
</td>
|
|
1416
|
+
</tr>
|
|
1417
|
+
<tr class="altColor">
|
|
1418
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/CatchHandler.html#CatchHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">CatchHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1419
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1420
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1421
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1422
|
+
abstract syntax tree, and parent handler.</div>
|
|
1423
|
+
</td>
|
|
1424
|
+
</tr>
|
|
1425
|
+
<tr class="rowColor">
|
|
1426
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ClassDefHandler.html#ClassDefHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">ClassDefHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1427
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1428
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1429
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1430
|
+
abstract syntax tree, and parent handler.</div>
|
|
1431
|
+
</td>
|
|
1432
|
+
</tr>
|
|
1433
|
+
<tr class="altColor">
|
|
1434
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/DoWhileHandler.html#DoWhileHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">DoWhileHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1435
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1436
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1437
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1438
|
+
abstract syntax tree, and parent handler.</div>
|
|
1439
|
+
</td>
|
|
1440
|
+
</tr>
|
|
1441
|
+
<tr class="rowColor">
|
|
1442
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ElseHandler.html#ElseHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">ElseHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1443
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1444
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1445
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1446
|
+
abstract syntax tree, and parent handler.</div>
|
|
1447
|
+
</td>
|
|
1448
|
+
</tr>
|
|
1449
|
+
<tr class="altColor">
|
|
1450
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html#ExpressionHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, java.lang.String, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">ExpressionHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1451
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> aTypeName,
|
|
1452
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aExpr,
|
|
1453
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1454
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1455
|
+
name, abstract syntax tree, and parent handler.</div>
|
|
1456
|
+
</td>
|
|
1457
|
+
</tr>
|
|
1458
|
+
<tr class="rowColor">
|
|
1459
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/FinallyHandler.html#FinallyHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">FinallyHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1460
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1461
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1462
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1463
|
+
abstract syntax tree, and parent handler.</div>
|
|
1464
|
+
</td>
|
|
1465
|
+
</tr>
|
|
1466
|
+
<tr class="altColor">
|
|
1467
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ForHandler.html#ForHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">ForHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1468
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1469
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1470
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1471
|
+
abstract syntax tree, and parent handler.</div>
|
|
1472
|
+
</td>
|
|
1473
|
+
</tr>
|
|
1474
|
+
<tr class="rowColor">
|
|
1475
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IfHandler.html#IfHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">IfHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1476
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1477
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1478
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1479
|
+
abstract syntax tree, and parent handler.</div>
|
|
1480
|
+
</td>
|
|
1481
|
+
</tr>
|
|
1482
|
+
<tr class="altColor">
|
|
1483
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ImportHandler.html#ImportHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">ImportHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1484
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1485
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1486
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1487
|
+
abstract syntax tree, and parent handler.</div>
|
|
1488
|
+
</td>
|
|
1489
|
+
</tr>
|
|
1490
|
+
<tr class="rowColor">
|
|
1491
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/LabelHandler.html#LabelHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">LabelHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1492
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aExpr,
|
|
1493
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1494
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1495
|
+
abstract syntax tree, and parent handler.</div>
|
|
1496
|
+
</td>
|
|
1497
|
+
</tr>
|
|
1498
|
+
<tr class="altColor">
|
|
1499
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/MemberDefHandler.html#MemberDefHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">MemberDefHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1500
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST,
|
|
1501
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1502
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1503
|
+
abstract syntax tree, and parent handler.</div>
|
|
1504
|
+
</td>
|
|
1505
|
+
</tr>
|
|
1506
|
+
<tr class="rowColor">
|
|
1507
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/MethodCallHandler.html#MethodCallHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">MethodCallHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1508
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST,
|
|
1509
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1510
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1511
|
+
abstract syntax tree, and parent handler.</div>
|
|
1512
|
+
</td>
|
|
1513
|
+
</tr>
|
|
1514
|
+
<tr class="altColor">
|
|
1515
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/MethodDefHandler.html#MethodDefHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">MethodDefHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1516
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1517
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1518
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1519
|
+
abstract syntax tree, and parent handler.</div>
|
|
1520
|
+
</td>
|
|
1521
|
+
</tr>
|
|
1522
|
+
<tr class="rowColor">
|
|
1523
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/NewHandler.html#NewHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">NewHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1524
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST,
|
|
1525
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1526
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1527
|
+
abstract syntax tree, and parent handler.</div>
|
|
1528
|
+
</td>
|
|
1529
|
+
</tr>
|
|
1530
|
+
<tr class="altColor">
|
|
1531
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ObjectBlockHandler.html#ObjectBlockHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">ObjectBlockHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1532
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1533
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1534
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1535
|
+
abstract syntax tree, and parent handler.</div>
|
|
1536
|
+
</td>
|
|
1537
|
+
</tr>
|
|
1538
|
+
<tr class="rowColor">
|
|
1539
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/PackageDefHandler.html#PackageDefHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">PackageDefHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1540
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1541
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1542
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1543
|
+
abstract syntax tree, and parent handler.</div>
|
|
1544
|
+
</td>
|
|
1545
|
+
</tr>
|
|
1546
|
+
<tr class="altColor">
|
|
1547
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SlistHandler.html#SlistHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">SlistHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1548
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1549
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1550
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1551
|
+
abstract syntax tree, and parent handler.</div>
|
|
1552
|
+
</td>
|
|
1553
|
+
</tr>
|
|
1554
|
+
<tr class="rowColor">
|
|
1555
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/StaticInitHandler.html#StaticInitHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">StaticInitHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1556
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1557
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1558
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1559
|
+
abstract syntax tree, and parent handler.</div>
|
|
1560
|
+
</td>
|
|
1561
|
+
</tr>
|
|
1562
|
+
<tr class="altColor">
|
|
1563
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/SwitchHandler.html#SwitchHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">SwitchHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1564
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1565
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1566
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1567
|
+
abstract syntax tree, and parent handler.</div>
|
|
1568
|
+
</td>
|
|
1569
|
+
</tr>
|
|
1570
|
+
<tr class="rowColor">
|
|
1571
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/TryHandler.html#TryHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">TryHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1572
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1573
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1574
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1575
|
+
abstract syntax tree, and parent handler.</div>
|
|
1576
|
+
</td>
|
|
1577
|
+
</tr>
|
|
1578
|
+
<tr class="altColor">
|
|
1579
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/WhileHandler.html#WhileHandler(com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck, com.puppycrawl.tools.checkstyle.api.DetailAST, com.puppycrawl.tools.checkstyle.checks.indentation.ExpressionHandler)">WhileHandler</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/IndentationCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">IndentationCheck</a> aIndentCheck,
|
|
1580
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst,
|
|
1581
|
+
<a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/indentation/ExpressionHandler.html" title="class in com.puppycrawl.tools.checkstyle.checks.indentation">ExpressionHandler</a> aParent)</code>
|
|
1582
|
+
<div class="block">Construct an instance of this handler with the given indentation check,
|
|
1583
|
+
abstract syntax tree, and parent handler.</div>
|
|
1584
|
+
</td>
|
|
1585
|
+
</tr>
|
|
1586
|
+
</tbody>
|
|
1587
|
+
</table>
|
|
1588
|
+
</li>
|
|
1589
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.javadoc">
|
|
1590
|
+
<!-- -->
|
|
1591
|
+
</a>
|
|
1592
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/javadoc/package-summary.html">com.puppycrawl.tools.checkstyle.checks.javadoc</a></h3>
|
|
1593
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1594
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/javadoc/package-summary.html">com.puppycrawl.tools.checkstyle.checks.javadoc</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1595
|
+
<tr>
|
|
1596
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1597
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1598
|
+
</tr>
|
|
1599
|
+
<tbody>
|
|
1600
|
+
<tr class="altColor">
|
|
1601
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1602
|
+
<td class="colLast"><span class="strong">JavadocMethodCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocMethodCheck.html#isMissingJavadocAllowed(com.puppycrawl.tools.checkstyle.api.DetailAST)">isMissingJavadocAllowed</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
1603
|
+
<div class="block">The JavadocMethodCheck is about to report a missing Javadoc.</div>
|
|
1604
|
+
</td>
|
|
1605
|
+
</tr>
|
|
1606
|
+
<tr class="rowColor">
|
|
1607
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1608
|
+
<td class="colLast"><span class="strong">JavadocMethodCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocMethodCheck.html#processAST(com.puppycrawl.tools.checkstyle.api.DetailAST)">processAST</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1609
|
+
</tr>
|
|
1610
|
+
<tr class="altColor">
|
|
1611
|
+
<td class="colFirst"><code>void</code></td>
|
|
1612
|
+
<td class="colLast"><span class="strong">WriteTagCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/javadoc/WriteTagCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1613
|
+
</tr>
|
|
1614
|
+
<tr class="rowColor">
|
|
1615
|
+
<td class="colFirst"><code>void</code></td>
|
|
1616
|
+
<td class="colLast"><span class="strong">JavadocVariableCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocVariableCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1617
|
+
</tr>
|
|
1618
|
+
<tr class="altColor">
|
|
1619
|
+
<td class="colFirst"><code>void</code></td>
|
|
1620
|
+
<td class="colLast"><span class="strong">JavadocTypeCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocTypeCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1621
|
+
</tr>
|
|
1622
|
+
<tr class="rowColor">
|
|
1623
|
+
<td class="colFirst"><code>void</code></td>
|
|
1624
|
+
<td class="colLast"><span class="strong">JavadocStyleCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocStyleCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1625
|
+
</tr>
|
|
1626
|
+
</tbody>
|
|
1627
|
+
</table>
|
|
1628
|
+
</li>
|
|
1629
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.metrics">
|
|
1630
|
+
<!-- -->
|
|
1631
|
+
</a>
|
|
1632
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/package-summary.html">com.puppycrawl.tools.checkstyle.checks.metrics</a></h3>
|
|
1633
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1634
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/package-summary.html">com.puppycrawl.tools.checkstyle.checks.metrics</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1635
|
+
<tr>
|
|
1636
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1637
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1638
|
+
</tr>
|
|
1639
|
+
<tbody>
|
|
1640
|
+
<tr class="altColor">
|
|
1641
|
+
<td class="colFirst"><code>void</code></td>
|
|
1642
|
+
<td class="colLast"><span class="strong">JavaNCSSCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/JavaNCSSCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1643
|
+
</tr>
|
|
1644
|
+
<tr class="rowColor">
|
|
1645
|
+
<td class="colFirst"><code>void</code></td>
|
|
1646
|
+
<td class="colLast"><span class="strong">AbstractClassCouplingCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/AbstractClassCouplingCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1647
|
+
</tr>
|
|
1648
|
+
<tr class="altColor">
|
|
1649
|
+
<td class="colFirst"><code>void</code></td>
|
|
1650
|
+
<td class="colLast"><span class="strong">JavaNCSSCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/JavaNCSSCheck.html#finishTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">finishTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1651
|
+
</tr>
|
|
1652
|
+
<tr class="rowColor">
|
|
1653
|
+
<td class="colFirst"><code>void</code></td>
|
|
1654
|
+
<td class="colLast"><span class="strong">NPathComplexityCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/NPathComplexityCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1655
|
+
</tr>
|
|
1656
|
+
<tr class="altColor">
|
|
1657
|
+
<td class="colFirst"><code>void</code></td>
|
|
1658
|
+
<td class="colLast"><span class="strong">JavaNCSSCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/JavaNCSSCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1659
|
+
</tr>
|
|
1660
|
+
<tr class="rowColor">
|
|
1661
|
+
<td class="colFirst"><code>void</code></td>
|
|
1662
|
+
<td class="colLast"><span class="strong">BooleanExpressionComplexityCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/BooleanExpressionComplexityCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1663
|
+
</tr>
|
|
1664
|
+
<tr class="altColor">
|
|
1665
|
+
<td class="colFirst"><code>void</code></td>
|
|
1666
|
+
<td class="colLast"><span class="strong">AbstractComplexityCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/AbstractComplexityCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1667
|
+
</tr>
|
|
1668
|
+
<tr class="rowColor">
|
|
1669
|
+
<td class="colFirst"><code>void</code></td>
|
|
1670
|
+
<td class="colLast"><span class="strong">AbstractClassCouplingCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/AbstractClassCouplingCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1671
|
+
</tr>
|
|
1672
|
+
<tr class="altColor">
|
|
1673
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1674
|
+
<td class="colLast"><span class="strong">AbstractComplexityCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/AbstractComplexityCheck.html#leaveTokenHook(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveTokenHook</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
1675
|
+
<div class="block">Hook called when leaving a token.</div>
|
|
1676
|
+
</td>
|
|
1677
|
+
</tr>
|
|
1678
|
+
<tr class="rowColor">
|
|
1679
|
+
<td class="colFirst"><code>void</code></td>
|
|
1680
|
+
<td class="colLast"><span class="strong">NPathComplexityCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/NPathComplexityCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1681
|
+
</tr>
|
|
1682
|
+
<tr class="altColor">
|
|
1683
|
+
<td class="colFirst"><code>void</code></td>
|
|
1684
|
+
<td class="colLast"><span class="strong">JavaNCSSCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/JavaNCSSCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1685
|
+
</tr>
|
|
1686
|
+
<tr class="rowColor">
|
|
1687
|
+
<td class="colFirst"><code>void</code></td>
|
|
1688
|
+
<td class="colLast"><span class="strong">BooleanExpressionComplexityCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/BooleanExpressionComplexityCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1689
|
+
</tr>
|
|
1690
|
+
<tr class="altColor">
|
|
1691
|
+
<td class="colFirst"><code>void</code></td>
|
|
1692
|
+
<td class="colLast"><span class="strong">AbstractComplexityCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/AbstractComplexityCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1693
|
+
</tr>
|
|
1694
|
+
<tr class="rowColor">
|
|
1695
|
+
<td class="colFirst"><code>void</code></td>
|
|
1696
|
+
<td class="colLast"><span class="strong">AbstractClassCouplingCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/AbstractClassCouplingCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1697
|
+
</tr>
|
|
1698
|
+
<tr class="altColor">
|
|
1699
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1700
|
+
<td class="colLast"><span class="strong">CyclomaticComplexityCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/CyclomaticComplexityCheck.html#visitTokenHook(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitTokenHook</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1701
|
+
</tr>
|
|
1702
|
+
<tr class="rowColor">
|
|
1703
|
+
<td class="colFirst"><code>protected void</code></td>
|
|
1704
|
+
<td class="colLast"><span class="strong">AbstractComplexityCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/metrics/AbstractComplexityCheck.html#visitTokenHook(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitTokenHook</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
1705
|
+
<div class="block">Hook called when visiting a token.</div>
|
|
1706
|
+
</td>
|
|
1707
|
+
</tr>
|
|
1708
|
+
</tbody>
|
|
1709
|
+
</table>
|
|
1710
|
+
</li>
|
|
1711
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.modifier">
|
|
1712
|
+
<!-- -->
|
|
1713
|
+
</a>
|
|
1714
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/modifier/package-summary.html">com.puppycrawl.tools.checkstyle.checks.modifier</a></h3>
|
|
1715
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1716
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/modifier/package-summary.html">com.puppycrawl.tools.checkstyle.checks.modifier</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1717
|
+
<tr>
|
|
1718
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1719
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1720
|
+
</tr>
|
|
1721
|
+
<tbody>
|
|
1722
|
+
<tr class="altColor">
|
|
1723
|
+
<td class="colFirst"><code>void</code></td>
|
|
1724
|
+
<td class="colLast"><span class="strong">RedundantModifierCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/modifier/RedundantModifierCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1725
|
+
</tr>
|
|
1726
|
+
<tr class="rowColor">
|
|
1727
|
+
<td class="colFirst"><code>void</code></td>
|
|
1728
|
+
<td class="colLast"><span class="strong">ModifierOrderCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/modifier/ModifierOrderCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1729
|
+
</tr>
|
|
1730
|
+
</tbody>
|
|
1731
|
+
</table>
|
|
1732
|
+
</li>
|
|
1733
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.naming">
|
|
1734
|
+
<!-- -->
|
|
1735
|
+
</a>
|
|
1736
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/package-summary.html">com.puppycrawl.tools.checkstyle.checks.naming</a></h3>
|
|
1737
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1738
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/package-summary.html">com.puppycrawl.tools.checkstyle.checks.naming</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1739
|
+
<tr>
|
|
1740
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1741
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1742
|
+
</tr>
|
|
1743
|
+
<tbody>
|
|
1744
|
+
<tr class="altColor">
|
|
1745
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1746
|
+
<td class="colLast"><span class="strong">StaticVariableNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/StaticVariableNameCheck.html#mustCheckName(com.puppycrawl.tools.checkstyle.api.DetailAST)">mustCheckName</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1747
|
+
</tr>
|
|
1748
|
+
<tr class="rowColor">
|
|
1749
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1750
|
+
<td class="colLast"><span class="strong">ParameterNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/ParameterNameCheck.html#mustCheckName(com.puppycrawl.tools.checkstyle.api.DetailAST)">mustCheckName</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1751
|
+
</tr>
|
|
1752
|
+
<tr class="altColor">
|
|
1753
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1754
|
+
<td class="colLast"><span class="strong">MemberNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/MemberNameCheck.html#mustCheckName(com.puppycrawl.tools.checkstyle.api.DetailAST)">mustCheckName</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1755
|
+
</tr>
|
|
1756
|
+
<tr class="rowColor">
|
|
1757
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1758
|
+
<td class="colLast"><span class="strong">LocalVariableNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/LocalVariableNameCheck.html#mustCheckName(com.puppycrawl.tools.checkstyle.api.DetailAST)">mustCheckName</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1759
|
+
</tr>
|
|
1760
|
+
<tr class="altColor">
|
|
1761
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1762
|
+
<td class="colLast"><span class="strong">LocalFinalVariableNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/LocalFinalVariableNameCheck.html#mustCheckName(com.puppycrawl.tools.checkstyle.api.DetailAST)">mustCheckName</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1763
|
+
</tr>
|
|
1764
|
+
<tr class="rowColor">
|
|
1765
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1766
|
+
<td class="colLast"><span class="strong">ConstantNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/ConstantNameCheck.html#mustCheckName(com.puppycrawl.tools.checkstyle.api.DetailAST)">mustCheckName</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1767
|
+
</tr>
|
|
1768
|
+
<tr class="altColor">
|
|
1769
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1770
|
+
<td class="colLast"><span class="strong">AbstractTypeParameterNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/AbstractTypeParameterNameCheck.html#mustCheckName(com.puppycrawl.tools.checkstyle.api.DetailAST)">mustCheckName</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1771
|
+
</tr>
|
|
1772
|
+
<tr class="rowColor">
|
|
1773
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1774
|
+
<td class="colLast"><span class="strong">AbstractNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/AbstractNameCheck.html#mustCheckName(com.puppycrawl.tools.checkstyle.api.DetailAST)">mustCheckName</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code>
|
|
1775
|
+
<div class="block">Decides whether the name of an AST should be checked against
|
|
1776
|
+
the format regexp.</div>
|
|
1777
|
+
</td>
|
|
1778
|
+
</tr>
|
|
1779
|
+
<tr class="altColor">
|
|
1780
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1781
|
+
<td class="colLast"><span class="strong">AbstractAccessControlNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/AbstractAccessControlNameCheck.html#mustCheckName(com.puppycrawl.tools.checkstyle.api.DetailAST)">mustCheckName</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1782
|
+
</tr>
|
|
1783
|
+
<tr class="rowColor">
|
|
1784
|
+
<td class="colFirst"><code>protected boolean</code></td>
|
|
1785
|
+
<td class="colLast"><span class="strong">AbstractAccessControlNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/AbstractAccessControlNameCheck.html#shouldCheckInScope(com.puppycrawl.tools.checkstyle.api.DetailAST)">shouldCheckInScope</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aModifiers)</code>
|
|
1786
|
+
<div class="block">Should we check member with given modifiers.</div>
|
|
1787
|
+
</td>
|
|
1788
|
+
</tr>
|
|
1789
|
+
<tr class="altColor">
|
|
1790
|
+
<td class="colFirst"><code>void</code></td>
|
|
1791
|
+
<td class="colLast"><span class="strong">PackageNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/PackageNameCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1792
|
+
</tr>
|
|
1793
|
+
<tr class="rowColor">
|
|
1794
|
+
<td class="colFirst"><code>void</code></td>
|
|
1795
|
+
<td class="colLast"><span class="strong">MethodNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/MethodNameCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code> </td>
|
|
1796
|
+
</tr>
|
|
1797
|
+
<tr class="altColor">
|
|
1798
|
+
<td class="colFirst"><code>void</code></td>
|
|
1799
|
+
<td class="colLast"><span class="strong">AbstractNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/AbstractNameCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1800
|
+
</tr>
|
|
1801
|
+
<tr class="rowColor">
|
|
1802
|
+
<td class="colFirst"><code>void</code></td>
|
|
1803
|
+
<td class="colLast"><span class="strong">AbstractClassNameCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/naming/AbstractClassNameCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1804
|
+
</tr>
|
|
1805
|
+
</tbody>
|
|
1806
|
+
</table>
|
|
1807
|
+
</li>
|
|
1808
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.regexp">
|
|
1809
|
+
<!-- -->
|
|
1810
|
+
</a>
|
|
1811
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/regexp/package-summary.html">com.puppycrawl.tools.checkstyle.checks.regexp</a></h3>
|
|
1812
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1813
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/regexp/package-summary.html">com.puppycrawl.tools.checkstyle.checks.regexp</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1814
|
+
<tr>
|
|
1815
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1816
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1817
|
+
</tr>
|
|
1818
|
+
<tbody>
|
|
1819
|
+
<tr class="altColor">
|
|
1820
|
+
<td class="colFirst"><code>void</code></td>
|
|
1821
|
+
<td class="colLast"><span class="strong">RegexpSinglelineJavaCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/regexp/RegexpSinglelineJavaCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1822
|
+
</tr>
|
|
1823
|
+
</tbody>
|
|
1824
|
+
</table>
|
|
1825
|
+
</li>
|
|
1826
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.sizes">
|
|
1827
|
+
<!-- -->
|
|
1828
|
+
</a>
|
|
1829
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/package-summary.html">com.puppycrawl.tools.checkstyle.checks.sizes</a></h3>
|
|
1830
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1831
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/package-summary.html">com.puppycrawl.tools.checkstyle.checks.sizes</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1832
|
+
<tr>
|
|
1833
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1834
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1835
|
+
</tr>
|
|
1836
|
+
<tbody>
|
|
1837
|
+
<tr class="altColor">
|
|
1838
|
+
<td class="colFirst"><code>void</code></td>
|
|
1839
|
+
<td class="colLast"><span class="strong">OuterTypeNumberCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/OuterTypeNumberCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code> </td>
|
|
1840
|
+
</tr>
|
|
1841
|
+
<tr class="rowColor">
|
|
1842
|
+
<td class="colFirst"><code>void</code></td>
|
|
1843
|
+
<td class="colLast"><span class="strong">LineLengthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/LineLengthCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1844
|
+
</tr>
|
|
1845
|
+
<tr class="altColor">
|
|
1846
|
+
<td class="colFirst"><code>void</code></td>
|
|
1847
|
+
<td class="colLast"><span class="strong">ExecutableStatementCountCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/ExecutableStatementCountCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1848
|
+
</tr>
|
|
1849
|
+
<tr class="rowColor">
|
|
1850
|
+
<td class="colFirst"><code>void</code></td>
|
|
1851
|
+
<td class="colLast"><span class="strong">OuterTypeNumberCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/OuterTypeNumberCheck.html#finishTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">finishTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code> </td>
|
|
1852
|
+
</tr>
|
|
1853
|
+
<tr class="altColor">
|
|
1854
|
+
<td class="colFirst"><code>void</code></td>
|
|
1855
|
+
<td class="colLast"><span class="strong">OuterTypeNumberCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/OuterTypeNumberCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code> </td>
|
|
1856
|
+
</tr>
|
|
1857
|
+
<tr class="rowColor">
|
|
1858
|
+
<td class="colFirst"><code>void</code></td>
|
|
1859
|
+
<td class="colLast"><span class="strong">MethodCountCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/MethodCountCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1860
|
+
</tr>
|
|
1861
|
+
<tr class="altColor">
|
|
1862
|
+
<td class="colFirst"><code>void</code></td>
|
|
1863
|
+
<td class="colLast"><span class="strong">ExecutableStatementCountCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/ExecutableStatementCountCheck.html#leaveToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">leaveToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1864
|
+
</tr>
|
|
1865
|
+
<tr class="rowColor">
|
|
1866
|
+
<td class="colFirst"><code>void</code></td>
|
|
1867
|
+
<td class="colLast"><span class="strong">ParameterNumberCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/ParameterNumberCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1868
|
+
</tr>
|
|
1869
|
+
<tr class="altColor">
|
|
1870
|
+
<td class="colFirst"><code>void</code></td>
|
|
1871
|
+
<td class="colLast"><span class="strong">OuterTypeNumberCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/OuterTypeNumberCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAst)</code> </td>
|
|
1872
|
+
</tr>
|
|
1873
|
+
<tr class="rowColor">
|
|
1874
|
+
<td class="colFirst"><code>void</code></td>
|
|
1875
|
+
<td class="colLast"><span class="strong">MethodLengthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/MethodLengthCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1876
|
+
</tr>
|
|
1877
|
+
<tr class="altColor">
|
|
1878
|
+
<td class="colFirst"><code>void</code></td>
|
|
1879
|
+
<td class="colLast"><span class="strong">MethodCountCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/MethodCountCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1880
|
+
</tr>
|
|
1881
|
+
<tr class="rowColor">
|
|
1882
|
+
<td class="colFirst"><code>void</code></td>
|
|
1883
|
+
<td class="colLast"><span class="strong">ExecutableStatementCountCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/ExecutableStatementCountCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1884
|
+
</tr>
|
|
1885
|
+
<tr class="altColor">
|
|
1886
|
+
<td class="colFirst"><code>void</code></td>
|
|
1887
|
+
<td class="colLast"><span class="strong">AnonInnerLengthCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/sizes/AnonInnerLengthCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1888
|
+
</tr>
|
|
1889
|
+
</tbody>
|
|
1890
|
+
</table>
|
|
1891
|
+
</li>
|
|
1892
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.checks.whitespace">
|
|
1893
|
+
<!-- -->
|
|
1894
|
+
</a>
|
|
1895
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/package-summary.html">com.puppycrawl.tools.checkstyle.checks.whitespace</a></h3>
|
|
1896
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1897
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/package-summary.html">com.puppycrawl.tools.checkstyle.checks.whitespace</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1898
|
+
<tr>
|
|
1899
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1900
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1901
|
+
</tr>
|
|
1902
|
+
<tbody>
|
|
1903
|
+
<tr class="altColor">
|
|
1904
|
+
<td class="colFirst"><code>void</code></td>
|
|
1905
|
+
<td class="colLast"><span class="strong">GenericWhitespaceCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/GenericWhitespaceCheck.html#beginTree(com.puppycrawl.tools.checkstyle.api.DetailAST)">beginTree</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aRootAST)</code> </td>
|
|
1906
|
+
</tr>
|
|
1907
|
+
<tr class="rowColor">
|
|
1908
|
+
<td class="colFirst"><code>void</code></td>
|
|
1909
|
+
<td class="colLast"><span class="strong">WhitespaceAroundCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/WhitespaceAroundCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1910
|
+
</tr>
|
|
1911
|
+
<tr class="altColor">
|
|
1912
|
+
<td class="colFirst"><code>void</code></td>
|
|
1913
|
+
<td class="colLast"><span class="strong">WhitespaceAfterCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/WhitespaceAfterCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1914
|
+
</tr>
|
|
1915
|
+
<tr class="rowColor">
|
|
1916
|
+
<td class="colFirst"><code>void</code></td>
|
|
1917
|
+
<td class="colLast"><span class="strong">TypecastParenPadCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/TypecastParenPadCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1918
|
+
</tr>
|
|
1919
|
+
<tr class="altColor">
|
|
1920
|
+
<td class="colFirst"><code>void</code></td>
|
|
1921
|
+
<td class="colLast"><span class="strong">ParenPadCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/ParenPadCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1922
|
+
</tr>
|
|
1923
|
+
<tr class="rowColor">
|
|
1924
|
+
<td class="colFirst"><code>void</code></td>
|
|
1925
|
+
<td class="colLast"><span class="strong">OperatorWrapCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/OperatorWrapCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1926
|
+
</tr>
|
|
1927
|
+
<tr class="altColor">
|
|
1928
|
+
<td class="colFirst"><code>void</code></td>
|
|
1929
|
+
<td class="colLast"><span class="strong">NoWhitespaceBeforeCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/NoWhitespaceBeforeCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1930
|
+
</tr>
|
|
1931
|
+
<tr class="rowColor">
|
|
1932
|
+
<td class="colFirst"><code>void</code></td>
|
|
1933
|
+
<td class="colLast"><span class="strong">NoWhitespaceAfterCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/NoWhitespaceAfterCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1934
|
+
</tr>
|
|
1935
|
+
<tr class="altColor">
|
|
1936
|
+
<td class="colFirst"><code>void</code></td>
|
|
1937
|
+
<td class="colLast"><span class="strong">MethodParamPadCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/MethodParamPadCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1938
|
+
</tr>
|
|
1939
|
+
<tr class="rowColor">
|
|
1940
|
+
<td class="colFirst"><code>void</code></td>
|
|
1941
|
+
<td class="colLast"><span class="strong">GenericWhitespaceCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/GenericWhitespaceCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1942
|
+
</tr>
|
|
1943
|
+
<tr class="altColor">
|
|
1944
|
+
<td class="colFirst"><code>void</code></td>
|
|
1945
|
+
<td class="colLast"><span class="strong">EmptyForIteratorPadCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/EmptyForIteratorPadCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1946
|
+
</tr>
|
|
1947
|
+
<tr class="rowColor">
|
|
1948
|
+
<td class="colFirst"><code>void</code></td>
|
|
1949
|
+
<td class="colLast"><span class="strong">EmptyForInitializerPadCheck.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/checks/whitespace/EmptyForInitializerPadCheck.html#visitToken(com.puppycrawl.tools.checkstyle.api.DetailAST)">visitToken</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> aAST)</code> </td>
|
|
1950
|
+
</tr>
|
|
1951
|
+
</tbody>
|
|
1952
|
+
</table>
|
|
1953
|
+
</li>
|
|
1954
|
+
<li class="blockList"><a name="com.puppycrawl.tools.checkstyle.gui">
|
|
1955
|
+
<!-- -->
|
|
1956
|
+
</a>
|
|
1957
|
+
<h3>Uses of <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> in <a href="../../../../../../com/puppycrawl/tools/checkstyle/gui/package-summary.html">com.puppycrawl.tools.checkstyle.gui</a></h3>
|
|
1958
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
|
|
1959
|
+
<caption><span>Methods in <a href="../../../../../../com/puppycrawl/tools/checkstyle/gui/package-summary.html">com.puppycrawl.tools.checkstyle.gui</a> that return <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1960
|
+
<tr>
|
|
1961
|
+
<th class="colFirst" scope="col">Modifier and Type</th>
|
|
1962
|
+
<th class="colLast" scope="col">Method and Description</th>
|
|
1963
|
+
</tr>
|
|
1964
|
+
<tbody>
|
|
1965
|
+
<tr class="altColor">
|
|
1966
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1967
|
+
<td class="colLast"><span class="strong">ParseTreeInfoPanel.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/gui/ParseTreeInfoPanel.html#parseFile(com.puppycrawl.tools.checkstyle.api.FileText)">parseFile</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/FileText.html" title="class in com.puppycrawl.tools.checkstyle.api">FileText</a> aText)</code>
|
|
1968
|
+
<div class="block">Parses a file and returns the parse tree.</div>
|
|
1969
|
+
</td>
|
|
1970
|
+
</tr>
|
|
1971
|
+
<tr class="rowColor">
|
|
1972
|
+
<td class="colFirst"><code>static <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></code></td>
|
|
1973
|
+
<td class="colLast"><span class="strong">ParseTreeInfoPanel.</span><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/gui/ParseTreeInfoPanel.html#parseFile(java.lang.String)">parseFile</a></strong>(<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> aFileName)</code>
|
|
1974
|
+
<div class="block"><strong>Deprecated.</strong>
|
|
1975
|
+
<div class="block"><i>Use <a href="../../../../../../com/puppycrawl/tools/checkstyle/gui/ParseTreeInfoPanel.html#parseFile(com.puppycrawl.tools.checkstyle.api.FileText)"><code>ParseTreeInfoPanel.parseFile(FileText)</code></a> instead</i></div>
|
|
1976
|
+
</div>
|
|
1977
|
+
</td>
|
|
1978
|
+
</tr>
|
|
1979
|
+
</tbody>
|
|
1980
|
+
</table>
|
|
1981
|
+
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
|
|
1982
|
+
<caption><span>Constructors in <a href="../../../../../../com/puppycrawl/tools/checkstyle/gui/package-summary.html">com.puppycrawl.tools.checkstyle.gui</a> with parameters of type <a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a></span><span class="tabEnd"> </span></caption>
|
|
1983
|
+
<tr>
|
|
1984
|
+
<th class="colOne" scope="col">Constructor and Description</th>
|
|
1985
|
+
</tr>
|
|
1986
|
+
<tbody>
|
|
1987
|
+
<tr class="altColor">
|
|
1988
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/gui/CodeSelector.html#CodeSelector(com.puppycrawl.tools.checkstyle.api.DetailAST, javax.swing.JTextArea, java.util.List)">CodeSelector</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> ast,
|
|
1989
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/javax/swing/JTextArea.html?is-external=true" title="class or interface in javax.swing">JTextArea</a> editor,
|
|
1990
|
+
<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>> lines2position)</code> </td>
|
|
1991
|
+
</tr>
|
|
1992
|
+
<tr class="rowColor">
|
|
1993
|
+
<td class="colLast"><code><strong><a href="../../../../../../com/puppycrawl/tools/checkstyle/gui/ParseTreeModel.html#ParseTreeModel(com.puppycrawl.tools.checkstyle.api.DetailAST)">ParseTreeModel</a></strong>(<a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">DetailAST</a> parseTree)</code> </td>
|
|
1994
|
+
</tr>
|
|
1995
|
+
</tbody>
|
|
1996
|
+
</table>
|
|
1997
|
+
</li>
|
|
1998
|
+
</ul>
|
|
1999
|
+
</li>
|
|
2000
|
+
</ul>
|
|
2001
|
+
</div>
|
|
2002
|
+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
2003
|
+
<div class="bottomNav"><a name="navbar_bottom">
|
|
2004
|
+
<!-- -->
|
|
2005
|
+
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
|
|
2006
|
+
<!-- -->
|
|
2007
|
+
</a>
|
|
2008
|
+
<ul class="navList" title="Navigation">
|
|
2009
|
+
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
|
|
2010
|
+
<li><a href="../package-summary.html">Package</a></li>
|
|
2011
|
+
<li><a href="../../../../../../com/puppycrawl/tools/checkstyle/api/DetailAST.html" title="class in com.puppycrawl.tools.checkstyle.api">Class</a></li>
|
|
2012
|
+
<li class="navBarCell1Rev">Use</li>
|
|
2013
|
+
<li><a href="../package-tree.html">Tree</a></li>
|
|
2014
|
+
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
|
|
2015
|
+
<li><a href="../../../../../../index-all.html">Index</a></li>
|
|
2016
|
+
<li><a href="../../../../../../help-doc.html">Help</a></li>
|
|
2017
|
+
</ul>
|
|
2018
|
+
</div>
|
|
2019
|
+
<div class="subNav">
|
|
2020
|
+
<ul class="navList">
|
|
2021
|
+
<li>Prev</li>
|
|
2022
|
+
<li>Next</li>
|
|
2023
|
+
</ul>
|
|
2024
|
+
<ul class="navList">
|
|
2025
|
+
<li><a href="../../../../../../index.html?com/puppycrawl/tools/checkstyle/api/class-use/DetailAST.html" target="_top">Frames</a></li>
|
|
2026
|
+
<li><a href="DetailAST.html" target="_top">No Frames</a></li>
|
|
2027
|
+
</ul>
|
|
2028
|
+
<ul class="navList" id="allclasses_navbar_bottom">
|
|
2029
|
+
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
|
|
2030
|
+
</ul>
|
|
2031
|
+
<div>
|
|
2032
|
+
<script type="text/javascript"><!--
|
|
2033
|
+
allClassesLink = document.getElementById("allclasses_navbar_bottom");
|
|
2034
|
+
if(window==top) {
|
|
2035
|
+
allClassesLink.style.display = "block";
|
|
2036
|
+
}
|
|
2037
|
+
else {
|
|
2038
|
+
allClassesLink.style.display = "none";
|
|
2039
|
+
}
|
|
2040
|
+
//-->
|
|
2041
|
+
</script>
|
|
2042
|
+
</div>
|
|
2043
|
+
<a name="skip-navbar_bottom">
|
|
2044
|
+
<!-- -->
|
|
2045
|
+
</a></div>
|
|
2046
|
+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
2047
|
+
<p class="legalCopy"><small>Copyright © 2001-2012. All Rights Reserved.</small></p>
|
|
2048
|
+
</body>
|
|
2049
|
+
</html>
|