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,1465 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<!-- Generated by Apache Maven Doxia at Sep 18, 2012 -->
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
6
|
+
<title>checkstyle -
|
|
7
|
+
Configuration</title>
|
|
8
|
+
<style type="text/css" media="all">
|
|
9
|
+
@import url("./css/maven-base.css");
|
|
10
|
+
@import url("./css/maven-theme.css");
|
|
11
|
+
@import url("./css/site.css");
|
|
12
|
+
</style>
|
|
13
|
+
<link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
|
|
14
|
+
<meta name="author" content="Lars Kühne" />
|
|
15
|
+
<meta name="Date-Revision-yyyymmdd" content="20120918" />
|
|
16
|
+
<meta http-equiv="Content-Language" content="en" />
|
|
17
|
+
|
|
18
|
+
</head>
|
|
19
|
+
<body class="composite">
|
|
20
|
+
<div id="banner">
|
|
21
|
+
<div id="bannerLeft">
|
|
22
|
+
Checkstyle 5.6
|
|
23
|
+
</div>
|
|
24
|
+
<a href="" id="bannerRight" title="Checkstyle">
|
|
25
|
+
<img src="images/logo.png" alt="Checkstyle" />
|
|
26
|
+
</a>
|
|
27
|
+
<div class="clear">
|
|
28
|
+
<hr/>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
<div id="breadcrumbs">
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
<div class="xleft">
|
|
35
|
+
<span id="publishDate">Last Published: 2012-09-18</span>
|
|
36
|
+
| <span id="projectVersion">Version: 5.6</span>
|
|
37
|
+
</div>
|
|
38
|
+
<div class="xright">
|
|
39
|
+
|
|
40
|
+
</div>
|
|
41
|
+
<div class="clear">
|
|
42
|
+
<hr/>
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
<div id="leftColumn">
|
|
46
|
+
<div id="navcolumn">
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
<h5>About</h5>
|
|
50
|
+
<ul>
|
|
51
|
+
<li class="none">
|
|
52
|
+
<a href="index.html" title="Checkstyle">Checkstyle</a>
|
|
53
|
+
</li>
|
|
54
|
+
<li class="none">
|
|
55
|
+
<a href="releasenotes.html" title="Release Notes">Release Notes</a>
|
|
56
|
+
</li>
|
|
57
|
+
</ul>
|
|
58
|
+
<h5>Documentation</h5>
|
|
59
|
+
<ul>
|
|
60
|
+
<li class="expanded">
|
|
61
|
+
<strong>Configuration</strong>
|
|
62
|
+
<ul>
|
|
63
|
+
<li class="none">
|
|
64
|
+
<a href="property_types.html" title="Property Types">Property Types</a>
|
|
65
|
+
</li>
|
|
66
|
+
</ul>
|
|
67
|
+
</li>
|
|
68
|
+
<li class="expanded">
|
|
69
|
+
<a href="running.html" title="Running">Running</a>
|
|
70
|
+
<ul>
|
|
71
|
+
<li class="none">
|
|
72
|
+
<a href="anttask.html" title="Ant Task">Ant Task</a>
|
|
73
|
+
</li>
|
|
74
|
+
<li class="none">
|
|
75
|
+
<a href="cmdline.html" title="Command Line">Command Line</a>
|
|
76
|
+
</li>
|
|
77
|
+
</ul>
|
|
78
|
+
</li>
|
|
79
|
+
<li class="none">
|
|
80
|
+
<a href="availablechecks.html" title="Available Checks">Available Checks</a>
|
|
81
|
+
</li>
|
|
82
|
+
<li class="expanded">
|
|
83
|
+
<a href="checks.html" title="Standard Checks">Standard Checks</a>
|
|
84
|
+
<ul>
|
|
85
|
+
<li class="none">
|
|
86
|
+
<a href="config_annotation.html" title="Annotations">Annotations</a>
|
|
87
|
+
</li>
|
|
88
|
+
<li class="none">
|
|
89
|
+
<a href="config_blocks.html" title="Block Checks">Block Checks</a>
|
|
90
|
+
</li>
|
|
91
|
+
<li class="none">
|
|
92
|
+
<a href="config_design.html" title="Class Design">Class Design</a>
|
|
93
|
+
</li>
|
|
94
|
+
<li class="none">
|
|
95
|
+
<a href="config_coding.html" title="Coding">Coding</a>
|
|
96
|
+
</li>
|
|
97
|
+
<li class="none">
|
|
98
|
+
<a href="config_duplicates.html" title="Duplicate Code">Duplicate Code</a>
|
|
99
|
+
</li>
|
|
100
|
+
<li class="none">
|
|
101
|
+
<a href="config_header.html" title="Headers">Headers</a>
|
|
102
|
+
</li>
|
|
103
|
+
<li class="none">
|
|
104
|
+
<a href="config_imports.html" title="Imports">Imports</a>
|
|
105
|
+
</li>
|
|
106
|
+
<li class="none">
|
|
107
|
+
<a href="config_javadoc.html" title="Javadoc Comments">Javadoc Comments</a>
|
|
108
|
+
</li>
|
|
109
|
+
<li class="none">
|
|
110
|
+
<a href="config_metrics.html" title="Metrics">Metrics</a>
|
|
111
|
+
</li>
|
|
112
|
+
<li class="none">
|
|
113
|
+
<a href="config_misc.html" title="Miscellaneous">Miscellaneous</a>
|
|
114
|
+
</li>
|
|
115
|
+
<li class="none">
|
|
116
|
+
<a href="config_modifier.html" title="Modifiers">Modifiers</a>
|
|
117
|
+
</li>
|
|
118
|
+
<li class="none">
|
|
119
|
+
<a href="config_naming.html" title="Naming Conventions">Naming Conventions</a>
|
|
120
|
+
</li>
|
|
121
|
+
<li class="none">
|
|
122
|
+
<a href="config_regexp.html" title="Regexp">Regexp</a>
|
|
123
|
+
</li>
|
|
124
|
+
<li class="none">
|
|
125
|
+
<a href="config_sizes.html" title="Size Violations">Size Violations</a>
|
|
126
|
+
</li>
|
|
127
|
+
<li class="none">
|
|
128
|
+
<a href="config_whitespace.html" title="Whitespace">Whitespace</a>
|
|
129
|
+
</li>
|
|
130
|
+
</ul>
|
|
131
|
+
</li>
|
|
132
|
+
<li class="expanded">
|
|
133
|
+
<a href="extending.html" title="Extending Checkstyle">Extending Checkstyle</a>
|
|
134
|
+
<ul>
|
|
135
|
+
<li class="none">
|
|
136
|
+
<a href="writingchecks.html" title="Writing checks">Writing checks</a>
|
|
137
|
+
</li>
|
|
138
|
+
<li class="none">
|
|
139
|
+
<a href="writingfilters.html" title="Writing filters">Writing filters</a>
|
|
140
|
+
</li>
|
|
141
|
+
<li class="none">
|
|
142
|
+
<a href="writinglisteners.html" title="Writing listeners">Writing listeners</a>
|
|
143
|
+
</li>
|
|
144
|
+
</ul>
|
|
145
|
+
</li>
|
|
146
|
+
</ul>
|
|
147
|
+
<h5>Developers</h5>
|
|
148
|
+
<ul>
|
|
149
|
+
<li class="none">
|
|
150
|
+
<a href="apidocs/index.html" title="Javadoc">Javadoc</a>
|
|
151
|
+
</li>
|
|
152
|
+
<li class="none">
|
|
153
|
+
<a href="http://sourceforge.net/projects/checkstyle" class="externalLink" title="Project Page">Project Page</a>
|
|
154
|
+
</li>
|
|
155
|
+
<li class="none">
|
|
156
|
+
<a href="contributing.html" title="Contributing">Contributing</a>
|
|
157
|
+
</li>
|
|
158
|
+
</ul>
|
|
159
|
+
<h5>Project Documentation</h5>
|
|
160
|
+
<ul>
|
|
161
|
+
<li class="collapsed">
|
|
162
|
+
<a href="project-info.html" title="Project Information">Project Information</a>
|
|
163
|
+
</li>
|
|
164
|
+
<li class="collapsed">
|
|
165
|
+
<a href="project-reports.html" title="Project Reports">Project Reports</a>
|
|
166
|
+
</li>
|
|
167
|
+
</ul>
|
|
168
|
+
<a href="http://sourceforge.net/projects/checkstyle" title="SourceForge" class="poweredBy">
|
|
169
|
+
<img class="poweredBy" alt="SourceForge" src="http://sflogo.sourceforge.net/sflogo.php?group_id=29721&type=11" />
|
|
170
|
+
</a>
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
</div>
|
|
174
|
+
</div>
|
|
175
|
+
<div id="bodyColumn">
|
|
176
|
+
<div id="contentBox">
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
<div class="section"><h2>Overview<a name="Overview"></a></h2>
|
|
182
|
+
<p>
|
|
183
|
+
A Checkstyle configuration specifies which <i>modules</i> to
|
|
184
|
+
plug in and apply to Java source files. Modules are structured
|
|
185
|
+
in a tree whose root is the <i>Checker</i> module. The next
|
|
186
|
+
level of modules contains:
|
|
187
|
+
</p>
|
|
188
|
+
|
|
189
|
+
<ul>
|
|
190
|
+
|
|
191
|
+
<li><i>FileSetChecks</i> - modules that take a set of input
|
|
192
|
+
files and fire error messages.</li>
|
|
193
|
+
|
|
194
|
+
<li><i>Filters</i>
|
|
195
|
+
|
|
196
|
+
- modules that filter audit events,
|
|
197
|
+
including error messages, for acceptance.</li>
|
|
198
|
+
|
|
199
|
+
<li><i>AuditListeners</i> - modules that report accepted events.</li>
|
|
200
|
+
|
|
201
|
+
</ul>
|
|
202
|
+
|
|
203
|
+
<p>
|
|
204
|
+
Many checks are submodules of the <i>TreeWalker</i>
|
|
205
|
+
FileSetCheck module. The TreeWalker operates by separately
|
|
206
|
+
transforming each of the Java source files into an abstract
|
|
207
|
+
syntax tree and then handing the result over to each of its
|
|
208
|
+
submodules which in turn have a look at certain aspects of the
|
|
209
|
+
tree.
|
|
210
|
+
</p>
|
|
211
|
+
|
|
212
|
+
<p>
|
|
213
|
+
Checkstyle obtains a configuration from an XML document whose
|
|
214
|
+
elements specify the configuration's hierarchy of modules and
|
|
215
|
+
their properties. You provide a file that contains the
|
|
216
|
+
configuration document when you invoke Checkstyle at the <a href="cmdline.html">command line</a>, and when you run a <a href="anttask.html">Checkstyle task</a> in ant. The
|
|
217
|
+
documentation directory of the Checkstyle distribution contains
|
|
218
|
+
a sample configuration file <i>sun_checks.xml</i> which
|
|
219
|
+
configures Checkstyle to check for the Sun coding conventions.
|
|
220
|
+
</p>
|
|
221
|
+
</div>
|
|
222
|
+
|
|
223
|
+
<div class="section"><h2>Modules<a name="Modules"></a></h2>
|
|
224
|
+
<p>
|
|
225
|
+
A <tt>module</tt> element in the configuration
|
|
226
|
+
XML document specifies a module identified by the element's
|
|
227
|
+
<tt>name</tt> attribute.
|
|
228
|
+
</p>
|
|
229
|
+
|
|
230
|
+
<p>
|
|
231
|
+
Here is a fragment of a typical configuration document:
|
|
232
|
+
</p>
|
|
233
|
+
|
|
234
|
+
<div class="source"><pre>
|
|
235
|
+
<module name="Checker">
|
|
236
|
+
<module name="JavadocPackage"/>
|
|
237
|
+
<module name="TreeWalker">
|
|
238
|
+
<module name="AvoidStarImport"/>
|
|
239
|
+
<module name="ConstantName"/>
|
|
240
|
+
<module name="EmptyBlock"/>
|
|
241
|
+
</module>
|
|
242
|
+
</module>
|
|
243
|
+
</pre></div>
|
|
244
|
+
|
|
245
|
+
<p>
|
|
246
|
+
In this configuration:
|
|
247
|
+
</p>
|
|
248
|
+
|
|
249
|
+
<ul>
|
|
250
|
+
<li>
|
|
251
|
+
Root module <tt>Checker</tt> has child
|
|
252
|
+
FileSetChecks <tt>JavadocPackage</tt> and <tt>TreeWalker</tt>. (Module <a href="config_javadoc.html"> <tt>JavadocPackage</tt></a> checks that all packages
|
|
253
|
+
have package documentation.)
|
|
254
|
+
</li>
|
|
255
|
+
<li>
|
|
256
|
+
Module <tt>TreeWalker</tt> has submodules
|
|
257
|
+
<tt>AvoidStarImport</tt>, <tt>ConstantName</tt>, and <tt>EmptyBlock</tt>. (Modules <a href="config_imports.html"><tt>AvoidStarImport</tt></a>, <a href="config_naming.html"><tt>ConstantName</tt></a>, and <a href="config_blocks.html"><tt>EmptyBlock</tt></a> check that a Java source
|
|
258
|
+
file has no star imports, has valid constant names, and has no
|
|
259
|
+
empty blocks, respectively.)
|
|
260
|
+
</li>
|
|
261
|
+
</ul>
|
|
262
|
+
|
|
263
|
+
<p>
|
|
264
|
+
For each configuration module, Checkstyle loads a class
|
|
265
|
+
identified by the <tt>name</tt> attribute of
|
|
266
|
+
the <tt>module</tt>. There are several rules
|
|
267
|
+
for loading a module's class:
|
|
268
|
+
</p>
|
|
269
|
+
|
|
270
|
+
<ol style="list-style-type: decimal">
|
|
271
|
+
<li>
|
|
272
|
+
Load a class directly according to a package-qualified <tt>name</tt>, such as loading class <tt>com.puppycrawl.tools.checkstyle.TreeWalker</tt>
|
|
273
|
+
for element:
|
|
274
|
+
|
|
275
|
+
<div class="source"><pre>
|
|
276
|
+
<module name="com.puppycrawl.tools.checkstyle.TreeWalker">
|
|
277
|
+
</pre></div>
|
|
278
|
+
|
|
279
|
+
This is useful for plugging third-party modules into a configuration.
|
|
280
|
+
</li>
|
|
281
|
+
|
|
282
|
+
<li>
|
|
283
|
+
Load a class of a pre-specified package, such as loading class
|
|
284
|
+
<tt>com.puppycrawl.tools.checkstyle.checks.AvoidStarImport</tt>
|
|
285
|
+
for element
|
|
286
|
+
<div class="source"><pre>
|
|
287
|
+
<module name="AvoidStarImport"/>
|
|
288
|
+
</pre></div>
|
|
289
|
+
|
|
290
|
+
Checkstyle applies packages <tt>
|
|
291
|
+
com.puppycrawl.tools.checkstyle</tt>, <tt>
|
|
292
|
+
com.puppycrawl.tools.checkstyle.filters</tt>, and <tt> com.puppycrawl.tools.checkstyle.checks</tt>
|
|
293
|
+
and its sub-packages (only those included in the Checkstyle
|
|
294
|
+
distribution). You can specify other packages in a <a href="#Packages"><i>package names XML document</i></a>
|
|
295
|
+
when you invoke Checkstyle at the <a href="cmdline.html">command line</a>, and when you run a <a href="anttask.html">Checkstyle task</a> in ant.
|
|
296
|
+
</li>
|
|
297
|
+
|
|
298
|
+
<li>
|
|
299
|
+
Apply the above rules to <tt>name</tt>
|
|
300
|
+
concatenated with <tt>"Check"</tt>,
|
|
301
|
+
such as loading class <tt>com.puppycrawl.tools.checkstyle.checks.ConstantNameCheck</tt>
|
|
302
|
+
for element
|
|
303
|
+
<div class="source"><pre>
|
|
304
|
+
<module name="ConstantName"/>
|
|
305
|
+
</pre></div>
|
|
306
|
+
</li>
|
|
307
|
+
</ol>
|
|
308
|
+
</div>
|
|
309
|
+
|
|
310
|
+
<div class="section"><h2>Properties<a name="Properties"></a></h2>
|
|
311
|
+
<p>
|
|
312
|
+
Properties of a module control how the module performs its task.
|
|
313
|
+
Each module property has a default value, and you are not
|
|
314
|
+
required to define a property in the configuration document if
|
|
315
|
+
the default value is satisfactory. To assign a non-default
|
|
316
|
+
value to a module's property, define a child <tt>property</tt> element of the <tt>module</tt> element in the configuration XML
|
|
317
|
+
document. Also provide appropriate <tt>name</tt> and <tt>value</tt>
|
|
318
|
+
attributes for the <tt>property</tt> element.
|
|
319
|
+
For example, property <tt>max</tt> of module
|
|
320
|
+
<tt>MethodLength</tt> specifies the maximum
|
|
321
|
+
allowable number of lines in a method or constructor, and has
|
|
322
|
+
default value <tt>150</tt>. Here is a
|
|
323
|
+
configuration of module <tt>MethodLength</tt>
|
|
324
|
+
so that the check reports methods and constructors with more
|
|
325
|
+
than <tt>60</tt> lines:
|
|
326
|
+
</p>
|
|
327
|
+
|
|
328
|
+
<div class="source"><pre>
|
|
329
|
+
<module name="MethodLength">
|
|
330
|
+
<property name="max" value="60"/>
|
|
331
|
+
</module>
|
|
332
|
+
</pre></div>
|
|
333
|
+
|
|
334
|
+
<p>
|
|
335
|
+
<a href="cmdline.html">Command line</a> properties and ant <a href="anttask.html">Checkstyle task</a> properties apply to the
|
|
336
|
+
root <tt>Checker</tt> module. Also, properties
|
|
337
|
+
are inherited in the module hierarchy. These features make it
|
|
338
|
+
easy to define one property value that applies to many
|
|
339
|
+
modules. For example, the following configuration fragment
|
|
340
|
+
specifies that a <tt>tabWidth</tt> of <tt>4</tt> applies to <tt>TreeWalker</tt> and its submodules:
|
|
341
|
+
</p>
|
|
342
|
+
|
|
343
|
+
<div class="source"><pre>
|
|
344
|
+
<module name="Checker">
|
|
345
|
+
<module name="JavadocPackage"/>
|
|
346
|
+
<module name="TreeWalker">
|
|
347
|
+
<property name="tabWidth" value="4"/>
|
|
348
|
+
<module name="AvoidStarImport"/>
|
|
349
|
+
<module name="ConstantName"/>
|
|
350
|
+
...
|
|
351
|
+
</module>
|
|
352
|
+
</module>
|
|
353
|
+
</pre></div>
|
|
354
|
+
|
|
355
|
+
<p>
|
|
356
|
+
The value of a module property can be specified through
|
|
357
|
+
<i>property expansion</i> with the <tt>${<i>property_name</i>}</tt> notation, where
|
|
358
|
+
<tt><i>property_name</i></tt> is a <a href="cmdline.html">command line</a> property or an ant <a href="anttask.html">Checkstyle task</a> property. For example,
|
|
359
|
+
the following configuration document element gives property
|
|
360
|
+
<tt>headerFile</tt> the value of command line
|
|
361
|
+
property <tt>checkstyle.header.file</tt>:
|
|
362
|
+
</p>
|
|
363
|
+
|
|
364
|
+
<div class="source"><pre>
|
|
365
|
+
<property name="headerFile" value="${checkstyle.header.file}"/>
|
|
366
|
+
</pre></div>
|
|
367
|
+
|
|
368
|
+
<p>
|
|
369
|
+
You can use property expansion to re-specify a module property
|
|
370
|
+
value without changing the configuration document.
|
|
371
|
+
</p>
|
|
372
|
+
|
|
373
|
+
<p>
|
|
374
|
+
The property element provides an optional <tt>default</tt> attribute which is used when a
|
|
375
|
+
property in the value cannot be resolved. For example this
|
|
376
|
+
configuration snippet from a central configuration file checks
|
|
377
|
+
that methods have javadoc, but allows individual projects to
|
|
378
|
+
override the severity by specifying their desired value in the
|
|
379
|
+
command line property <tt>checkstyle.javadoc.severity</tt>:
|
|
380
|
+
</p>
|
|
381
|
+
|
|
382
|
+
<div class="source"><pre>
|
|
383
|
+
<module name="JavaDocMethod">
|
|
384
|
+
<property name="severity"
|
|
385
|
+
value="${checkstyle.javadoc.severity}"
|
|
386
|
+
default="error"/>
|
|
387
|
+
</module>
|
|
388
|
+
</pre></div>
|
|
389
|
+
|
|
390
|
+
<p>
|
|
391
|
+
This feature is a great help when setting up a centralized
|
|
392
|
+
configuration file (e.g. one file for the whole company) to
|
|
393
|
+
lower configuration maintenance costs. Projects that are happy
|
|
394
|
+
with the default can simply use that configuration file as is,
|
|
395
|
+
but individual projects with special needs have the flexibility
|
|
396
|
+
to adjust a few settings to fit their needs without having to
|
|
397
|
+
copy and maintain the whole configuration.
|
|
398
|
+
</p>
|
|
399
|
+
|
|
400
|
+
</div>
|
|
401
|
+
|
|
402
|
+
<div class="section"><h2>Checker<a name="Checker"></a></h2>
|
|
403
|
+
|
|
404
|
+
<p>
|
|
405
|
+
All configurations have root module <tt>Checker</tt>. <tt>Checker</tt>
|
|
406
|
+
contains:
|
|
407
|
+
</p>
|
|
408
|
+
|
|
409
|
+
<ul>
|
|
410
|
+
<li><i>FileSetCheck</i> children: modules that check sets of
|
|
411
|
+
files.</li>
|
|
412
|
+
<li><i>Filter</i> children: modules that filter audit
|
|
413
|
+
events.</li>
|
|
414
|
+
<li><i>AuditListener</i> children: modules that report
|
|
415
|
+
filtered events.</li>
|
|
416
|
+
</ul>
|
|
417
|
+
|
|
418
|
+
<p>
|
|
419
|
+
<tt>Checker</tt> also defines properties that are
|
|
420
|
+
inherited by all other modules of a configuration.
|
|
421
|
+
</p>
|
|
422
|
+
|
|
423
|
+
<div class="section"><div class="section"><h4>Properties<a name="Properties"></a></h4>
|
|
424
|
+
<table border="0" class="bodyTable">
|
|
425
|
+
<tr class="a">
|
|
426
|
+
<th>name</th>
|
|
427
|
+
<th>description</th>
|
|
428
|
+
<th>type</th>
|
|
429
|
+
<th>default value</th>
|
|
430
|
+
</tr>
|
|
431
|
+
<tr class="b">
|
|
432
|
+
<td>basedir</td>
|
|
433
|
+
<td>base directory name; stripped off in messages about files</td>
|
|
434
|
+
<td><a href="property_types.html#string">string</a></td>
|
|
435
|
+
<td><tt>null</tt></td>
|
|
436
|
+
</tr>
|
|
437
|
+
<tr class="a">
|
|
438
|
+
<td>localeCountry</td>
|
|
439
|
+
<td>locale country for messages</td>
|
|
440
|
+
<td><a href="property_types.html#string">string</a>: either
|
|
441
|
+
the empty string or an uppercase ISO 3166 2-letter code</td>
|
|
442
|
+
<td>default locale country for the Java Virtual Machine</td>
|
|
443
|
+
</tr>
|
|
444
|
+
<tr class="b">
|
|
445
|
+
<td>localeLanguage</td>
|
|
446
|
+
<td>locale language for messages</td>
|
|
447
|
+
<td><a href="property_types.html#string">string</a>: either
|
|
448
|
+
the empty string or a lowercase ISO 639 code</td>
|
|
449
|
+
<td>default locale language for the Java Virtual Machine</td>
|
|
450
|
+
</tr>
|
|
451
|
+
<tr class="a">
|
|
452
|
+
<td>charset</td>
|
|
453
|
+
<td>name of the file charset</td>
|
|
454
|
+
<td><a href="property_types.html#string">String</a></td>
|
|
455
|
+
<td>System property "file.encoding"</td>
|
|
456
|
+
</tr>
|
|
457
|
+
</table>
|
|
458
|
+
|
|
459
|
+
<p>
|
|
460
|
+
For example, the following configuration fragment specifies base
|
|
461
|
+
directory <tt>src/checkstyle</tt> and German
|
|
462
|
+
locale for all modules:
|
|
463
|
+
</p>
|
|
464
|
+
|
|
465
|
+
<div class="source"><pre>
|
|
466
|
+
<module name="Checker">
|
|
467
|
+
<property name="basedir" value="src/checkstyle"/>
|
|
468
|
+
<property name="localeCountry" value="DE"/>
|
|
469
|
+
<property name="localeLanguage" value="de"/>
|
|
470
|
+
<module name="JavadocPackage"/>
|
|
471
|
+
<module name="TreeWalker">
|
|
472
|
+
...
|
|
473
|
+
</module>
|
|
474
|
+
</module>
|
|
475
|
+
</pre></div>
|
|
476
|
+
|
|
477
|
+
<p>
|
|
478
|
+
To configure a <tt>Checker</tt> so that it
|
|
479
|
+
handles files with the <tt>UTF-8</tt> charset:
|
|
480
|
+
</p>
|
|
481
|
+
|
|
482
|
+
<div class="source"><pre>
|
|
483
|
+
<module name="Checker">
|
|
484
|
+
<property name="charset" value="UTF-8"/>
|
|
485
|
+
...
|
|
486
|
+
</module>
|
|
487
|
+
</pre></div>
|
|
488
|
+
|
|
489
|
+
</div></div></div>
|
|
490
|
+
|
|
491
|
+
<div class="section"><h2>TreeWalker<a name="TreeWalker"></a></h2>
|
|
492
|
+
<p>
|
|
493
|
+
FileSetCheck <tt>TreeWalker</tt> checks
|
|
494
|
+
individual Java source files and defines properties that are
|
|
495
|
+
applicable to checking such files.
|
|
496
|
+
</p>
|
|
497
|
+
|
|
498
|
+
<div class="section"><div class="section"><h4>Properties<a name="Properties"></a></h4>
|
|
499
|
+
<table border="0" class="bodyTable">
|
|
500
|
+
<tr class="a">
|
|
501
|
+
<th>name</th>
|
|
502
|
+
<th>description</th>
|
|
503
|
+
<th>type</th>
|
|
504
|
+
<th>default value</th>
|
|
505
|
+
</tr>
|
|
506
|
+
<tr class="b">
|
|
507
|
+
<td>cacheFile</td>
|
|
508
|
+
<td>caches information about files that have checked ok; used
|
|
509
|
+
to avoid repeated checks of the same files</td>
|
|
510
|
+
<td><a href="property_types.html#string">string</a></td>
|
|
511
|
+
<td><tt>null</tt> (no cache file)</td>
|
|
512
|
+
</tr>
|
|
513
|
+
<tr class="a">
|
|
514
|
+
<td>tabWidth</td>
|
|
515
|
+
<td>number of expanded spaces for a tab character (<tt>'\t'</tt>); used in messages and Checks that
|
|
516
|
+
require a tab width, such as <a href="config_sizes.html#LineLength"><tt>LineLength</tt></a></td>
|
|
517
|
+
<td><a href="property_types.html#integer">integer</a></td>
|
|
518
|
+
<td><tt>8</tt></td>
|
|
519
|
+
</tr>
|
|
520
|
+
<tr class="b">
|
|
521
|
+
<td>fileExtensions</td>
|
|
522
|
+
<td>file type extension to identify java files. Setting this
|
|
523
|
+
property is typically only required if your java source code
|
|
524
|
+
is preprocessed before compilation and the original files do
|
|
525
|
+
not have the extension <tt>.java</tt></td>
|
|
526
|
+
<td><a href="property_types.html#stringSet">String Set</a></td>
|
|
527
|
+
<td><tt>java</tt></td>
|
|
528
|
+
</tr>
|
|
529
|
+
</table>
|
|
530
|
+
|
|
531
|
+
<p>
|
|
532
|
+
For example, the following configuration fragment specifies
|
|
533
|
+
<tt>TreeWalker</tt> cache file <tt>target/cachefile</tt>, and a <tt>tabWidth</tt> of <tt>4</tt>:
|
|
534
|
+
</p>
|
|
535
|
+
|
|
536
|
+
<div class="source"><pre>
|
|
537
|
+
<module name="Checker">
|
|
538
|
+
<module name="TreeWalker">
|
|
539
|
+
<property name="cacheFile" value="target/cachefile"/>
|
|
540
|
+
<property name="tabWidth" value="4"/>
|
|
541
|
+
...
|
|
542
|
+
</module>
|
|
543
|
+
</module>
|
|
544
|
+
</pre></div>
|
|
545
|
+
|
|
546
|
+
<p>
|
|
547
|
+
<!-- thanks to Paul King for this example, see
|
|
548
|
+
https://sourceforge.net/tracker/?func=detail&aid=865610&group_id=29721&atid=397078 -->
|
|
549
|
+
To integrate Checkstyle with BEA Weblogic Workshop 8.1:
|
|
550
|
+
</p>
|
|
551
|
+
|
|
552
|
+
<div class="source"><pre>
|
|
553
|
+
<module name="Checker">
|
|
554
|
+
<module name="TreeWalker">
|
|
555
|
+
<property name="fileExtensions" value="java,ejb,jpf"/>
|
|
556
|
+
...
|
|
557
|
+
</pre></div>
|
|
558
|
+
</div></div></div>
|
|
559
|
+
|
|
560
|
+
<div class="section"><h2>TreeWalker Checks<a name="TreeWalker_Checks"></a></h2>
|
|
561
|
+
|
|
562
|
+
<p>
|
|
563
|
+
The <tt>TreeWalker</tt> module creates a syntax
|
|
564
|
+
tree for a Java source file and invokes its submodules, called
|
|
565
|
+
<i>Checks</i>, during a walk, or traversal, of the nodes of
|
|
566
|
+
the tree. Every node of the syntax tree has a token. A visit to
|
|
567
|
+
a node during the traversal triggers all Checks that are
|
|
568
|
+
configured for its token. For example, if Check <tt>MethodLength</tt> has been configured as a
|
|
569
|
+
submodule of <tt>TreeWalker</tt>, then a visit
|
|
570
|
+
to a node with a method or a constructor definition token
|
|
571
|
+
triggers <tt>MethodLength</tt> to check the
|
|
572
|
+
number of lines of the node's code block.
|
|
573
|
+
</p>
|
|
574
|
+
|
|
575
|
+
<p>
|
|
576
|
+
Some Checks, such as <tt>FileLength</tt> and
|
|
577
|
+
<tt>LineLength</tt>, apply directly to the
|
|
578
|
+
source file and do not involve tokens of the syntax tree. Other
|
|
579
|
+
Checks are associated with configurable sets of tokens that
|
|
580
|
+
trigger the Checks. For example, this element configures Check
|
|
581
|
+
<tt>MethodLength</tt>:
|
|
582
|
+
</p>
|
|
583
|
+
|
|
584
|
+
<div class="source"><pre>
|
|
585
|
+
<module name="MethodLength"/>
|
|
586
|
+
</pre></div>
|
|
587
|
+
|
|
588
|
+
<p>
|
|
589
|
+
The default token set for <tt>MethodLength</tt>
|
|
590
|
+
is <tt>{METHOD_DEF, CTOR_DEF}</tt>, method
|
|
591
|
+
definition and constructor definition tokens, so <tt>TreeWalker</tt> invokes <tt>MethodLength</tt> whenever it visits a node with
|
|
592
|
+
a <tt>METHOD_DEF</tt> or a <tt>CTOR_DEF</tt> token.
|
|
593
|
+
</p>
|
|
594
|
+
|
|
595
|
+
<p>
|
|
596
|
+
You specify the trigger tokens for a Check with property <tt>tokens</tt>. The value of <tt>tokens</tt> is a list that denotes a subset of
|
|
597
|
+
the Check's tokens, as in the following element that configures
|
|
598
|
+
Check <tt>MethodLength</tt> to check the number
|
|
599
|
+
of lines of methods only:
|
|
600
|
+
</p>
|
|
601
|
+
|
|
602
|
+
<div class="source"><pre>
|
|
603
|
+
<module name="MethodLength">
|
|
604
|
+
<property name="tokens" value="METHOD_DEF"/>
|
|
605
|
+
</module>
|
|
606
|
+
</pre></div>
|
|
607
|
+
|
|
608
|
+
<p>
|
|
609
|
+
To apply particular properties to different subsets of tokens
|
|
610
|
+
for a Check, repeat the Check. For example, to check that the
|
|
611
|
+
length of each method is at most 150 lines (the default value of
|
|
612
|
+
<tt>MethodLength</tt> property <tt>max</tt>) and the length of each constructor is
|
|
613
|
+
at most 60 lines, include the following in the <tt>TreeWalker</tt> configuration:
|
|
614
|
+
</p>
|
|
615
|
+
|
|
616
|
+
<div class="source"><pre>
|
|
617
|
+
<module name="MethodLength">
|
|
618
|
+
<property name="tokens" value="METHOD_DEF"/>
|
|
619
|
+
</module>
|
|
620
|
+
<module name="MethodLength">
|
|
621
|
+
<property name="tokens" value="CTOR_DEF"/>
|
|
622
|
+
<property name="max" value="60"/>
|
|
623
|
+
</module>
|
|
624
|
+
</pre></div>
|
|
625
|
+
|
|
626
|
+
<p>
|
|
627
|
+
Configurations of the Checks are specified in the pages under <a href="checks.html">here</a>.
|
|
628
|
+
</p>
|
|
629
|
+
|
|
630
|
+
</div>
|
|
631
|
+
|
|
632
|
+
<div class="section"><h2>Severity<a name="Severity"></a></h2>
|
|
633
|
+
<p>
|
|
634
|
+
Each check has a <a href="property_types.html#severity">severity</a> property that a
|
|
635
|
+
Checkstyle audit assigns to all violations of the check. The
|
|
636
|
+
default severity level of a check is <tt>error</tt>.
|
|
637
|
+
</p>
|
|
638
|
+
|
|
639
|
+
<p>
|
|
640
|
+
You can use the severity property to control the output of the
|
|
641
|
+
plain formatter for the <a href="cmdline.html">command line
|
|
642
|
+
tool</a> and the <a href="anttask.html">ANT task</a>. The plain
|
|
643
|
+
formatter does not report violations with severity level <tt>ignore</tt>, and notes violations with
|
|
644
|
+
severity level <tt>warning</tt>. For
|
|
645
|
+
example, according to the following configuration fragment, the
|
|
646
|
+
plain formatter outputs warnings for translation violations:
|
|
647
|
+
</p>
|
|
648
|
+
|
|
649
|
+
<div class="source"><pre>
|
|
650
|
+
<module name="Translation">
|
|
651
|
+
<property name="severity" value="warning"/>
|
|
652
|
+
</module>
|
|
653
|
+
</pre></div>
|
|
654
|
+
|
|
655
|
+
<p>
|
|
656
|
+
The XML formatter reports the severity level of every violation
|
|
657
|
+
as an attribute of the violation's <tt>error</tt> element.
|
|
658
|
+
</p>
|
|
659
|
+
</div>
|
|
660
|
+
|
|
661
|
+
<div class="section"><h2>Custom messages<a name="Custom_messages"></a></h2>
|
|
662
|
+
<p>
|
|
663
|
+
As of Checkstyle 5 all checks can be configured to report
|
|
664
|
+
custom, configuration specific messages instead of the
|
|
665
|
+
Checkstyle default messages. This can be useful in cases where
|
|
666
|
+
the check message should reference corresponding sections in a
|
|
667
|
+
coding style document or the default is too generic for
|
|
668
|
+
developers to understand.
|
|
669
|
+
</p>
|
|
670
|
+
|
|
671
|
+
<p>An example usage is:</p>
|
|
672
|
+
|
|
673
|
+
<div class="source"><pre>
|
|
674
|
+
<module name="MemberName">
|
|
675
|
+
<property name="format" value="^m[a-zA-Z0-9]*$"/>
|
|
676
|
+
<message key="name.invalidPattern"
|
|
677
|
+
value="Member ''{0}'' must start with a lowercase ''m'' (checked pattern ''{1}'')."
|
|
678
|
+
/>
|
|
679
|
+
</module>
|
|
680
|
+
</pre></div>
|
|
681
|
+
|
|
682
|
+
<p>
|
|
683
|
+
Each check configuration element can zero or more <tt>message</tt> elements. Every check uses one or
|
|
684
|
+
more distinct message keys to log violations. If you want to
|
|
685
|
+
customize a certain message you need to specify the message key
|
|
686
|
+
in the <tt>key</tt> attribute of the <tt>message</tt> element.
|
|
687
|
+
</p>
|
|
688
|
+
|
|
689
|
+
<p>
|
|
690
|
+
The <tt>value</tt> attribute specifies the
|
|
691
|
+
custom message pattern, as shown in the example above.
|
|
692
|
+
Placeholders used in the default message can also be used in the
|
|
693
|
+
custom message. Note that the message pattern must be a valid
|
|
694
|
+
<tt>java.text.MessageFormat</tt> style pattern,
|
|
695
|
+
so be careful about curly braces outside a placeholder
|
|
696
|
+
definition.
|
|
697
|
+
</p>
|
|
698
|
+
|
|
699
|
+
<p>
|
|
700
|
+
The obvious question is how do you know which message keys a
|
|
701
|
+
Check uses, so that you can override them? Well, that is the
|
|
702
|
+
tricky part. To find out which keys a Check uses you currently
|
|
703
|
+
need to look into the Check's source code, in conjunction with
|
|
704
|
+
the Check's <tt>messages.properties</tt> file.
|
|
705
|
+
Tools/plugins might come to the rescue on this topic, so have a
|
|
706
|
+
look there.
|
|
707
|
+
</p>
|
|
708
|
+
</div>
|
|
709
|
+
|
|
710
|
+
<div class="section"><h2>Filters<a name="Filters"></a></h2>
|
|
711
|
+
|
|
712
|
+
<p>
|
|
713
|
+
A Checker module has a set of Filter submodules to filter audit
|
|
714
|
+
events, including the error messages fired by Checks. A Filter
|
|
715
|
+
can accept or reject an audit event. If all Filters accept an
|
|
716
|
+
audit event, then the Checker reports the event. If any Filter
|
|
717
|
+
rejects an event, then the Checker does not report the
|
|
718
|
+
event.
|
|
719
|
+
</p>
|
|
720
|
+
|
|
721
|
+
<div class="section"><h3>SeverityMatchFilter<a name="SeverityMatchFilter"></a></h3>
|
|
722
|
+
<p>
|
|
723
|
+
Filter <tt>SeverityMatchFilter</tt> decides
|
|
724
|
+
audit events according to the <a href="#Severity">severity
|
|
725
|
+
level</a> of the event.
|
|
726
|
+
</p>
|
|
727
|
+
|
|
728
|
+
<div class="section"><div class="section"><h5>SeverityMatchFilter Properties<a name="SeverityMatchFilter_Properties"></a></h5>
|
|
729
|
+
<table border="0" class="bodyTable">
|
|
730
|
+
<tr class="a">
|
|
731
|
+
<th>name</th>
|
|
732
|
+
<th>description</th>
|
|
733
|
+
<th>type</th>
|
|
734
|
+
<th>default value</th>
|
|
735
|
+
</tr>
|
|
736
|
+
<tr class="b">
|
|
737
|
+
<td>severity</td>
|
|
738
|
+
<td>the severity level of this filter</td>
|
|
739
|
+
<td><a href="property_types.html#severity">severity</a></td>
|
|
740
|
+
<td><tt>error</tt></td>
|
|
741
|
+
</tr>
|
|
742
|
+
<tr class="a">
|
|
743
|
+
<td>acceptOnMatch</td>
|
|
744
|
+
<td>
|
|
745
|
+
If acceptOnMatch is <tt>true</tt>, then
|
|
746
|
+
the filter accepts an audit event if and only if there is
|
|
747
|
+
a match between the event's severity level and property
|
|
748
|
+
severity. If acceptOnMatch
|
|
749
|
+
is <tt>false</tt>, then the filter
|
|
750
|
+
accepts an audit event if and only if there is not a match
|
|
751
|
+
between the event's severity level and property severity.
|
|
752
|
+
</td>
|
|
753
|
+
<td><a href="property_types.html#boolean">boolean</a></td>
|
|
754
|
+
<td><tt>true</tt></td>
|
|
755
|
+
</tr>
|
|
756
|
+
</table>
|
|
757
|
+
|
|
758
|
+
<p>
|
|
759
|
+
For example, the following configuration fragment directs the
|
|
760
|
+
Checker to not report audit events with severity
|
|
761
|
+
level <tt>info</tt>:
|
|
762
|
+
</p>
|
|
763
|
+
|
|
764
|
+
<div class="source"><pre>
|
|
765
|
+
<module name="SeverityMatchFilter">
|
|
766
|
+
<property name="severity" value="info"/>
|
|
767
|
+
<property name="acceptOnMatch" value="false"/>
|
|
768
|
+
</module>
|
|
769
|
+
</pre></div>
|
|
770
|
+
</div></div></div>
|
|
771
|
+
|
|
772
|
+
<div class="section"><h3>SuppressionFilter<a name="SuppressionFilter"></a></h3>
|
|
773
|
+
<p>
|
|
774
|
+
Filter <tt>SuppressionFilter</tt> rejects
|
|
775
|
+
audit events for Check errors according to
|
|
776
|
+
a <a href="#XML_Details"><i>suppressions XML
|
|
777
|
+
document</i></a> in a file. If there is no configured
|
|
778
|
+
suppressions file, the Filter accepts all audit events.
|
|
779
|
+
</p>
|
|
780
|
+
|
|
781
|
+
<div class="section"><div class="section"><h5>SuppressionFilter Properties<a name="SuppressionFilter_Properties"></a></h5>
|
|
782
|
+
<table border="0" class="bodyTable">
|
|
783
|
+
<tr class="a">
|
|
784
|
+
<th>name</th>
|
|
785
|
+
<th>description</th>
|
|
786
|
+
<th>type</th>
|
|
787
|
+
<th>default value</th>
|
|
788
|
+
</tr>
|
|
789
|
+
<tr class="b">
|
|
790
|
+
<td>file</td>
|
|
791
|
+
<td>
|
|
792
|
+
the location of the <i>suppressions XML document</i> file.
|
|
793
|
+
The order the location is checked is:
|
|
794
|
+
<ol style="list-style-type: decimal">
|
|
795
|
+
<li>as a filesystem location</li>
|
|
796
|
+
<li>
|
|
797
|
+
if no file found, and the location starts with either
|
|
798
|
+
<tt>http://</tt> or <tt>https://</tt>, then it
|
|
799
|
+
is interpreted as a URL
|
|
800
|
+
</li>
|
|
801
|
+
<li>
|
|
802
|
+
if no file found, then passed to the
|
|
803
|
+
<tt>ClassLoader.getResource()</tt> method.
|
|
804
|
+
</li>
|
|
805
|
+
</ol>
|
|
806
|
+
</td>
|
|
807
|
+
<td><a href="property_types.html#string">string</a></td>
|
|
808
|
+
<td><tt>none</tt></td>
|
|
809
|
+
</tr>
|
|
810
|
+
</table>
|
|
811
|
+
|
|
812
|
+
<p>
|
|
813
|
+
For example, the following configuration fragment directs the
|
|
814
|
+
Checker to use a <tt>SuppressionFilter</tt>
|
|
815
|
+
with suppressions
|
|
816
|
+
file <tt>docs/suppressions.xml</tt>:
|
|
817
|
+
</p>
|
|
818
|
+
|
|
819
|
+
<div class="source"><pre>
|
|
820
|
+
<module name="SuppressionFilter">
|
|
821
|
+
<property name="file" value="docs/suppressions.xml"/>
|
|
822
|
+
</module>
|
|
823
|
+
</pre></div>
|
|
824
|
+
|
|
825
|
+
<p>
|
|
826
|
+
A <a href="#XML_Details"><i>suppressions XML
|
|
827
|
+
document</i></a> contains a set
|
|
828
|
+
of <tt>suppress</tt> elements, where
|
|
829
|
+
each <tt>suppress</tt> element can have the
|
|
830
|
+
following attributes:
|
|
831
|
+
</p>
|
|
832
|
+
|
|
833
|
+
<ul>
|
|
834
|
+
<li>
|
|
835
|
+
<tt>files</tt> -
|
|
836
|
+
a <a href="property_types.html#regexp">regular expression</a>
|
|
837
|
+
matched against the file name associated with an audit
|
|
838
|
+
event. It is mandatory.
|
|
839
|
+
</li>
|
|
840
|
+
<li>
|
|
841
|
+
<tt>checks</tt> -
|
|
842
|
+
a <a href="property_types.html#regexp">regular expression</a>
|
|
843
|
+
matched against the name of the check associated with an audit
|
|
844
|
+
event. Optional if <tt>id</tt> is specified.
|
|
845
|
+
</li>
|
|
846
|
+
<li>
|
|
847
|
+
<tt>id</tt> -
|
|
848
|
+
a <a href="property_types.html#string">string</a>
|
|
849
|
+
matched against the id of the check associated with an audit
|
|
850
|
+
event. Optional if <tt>checks</tt> is specified.
|
|
851
|
+
</li>
|
|
852
|
+
<li>
|
|
853
|
+
<tt>lines</tt> - a comma-separated list of
|
|
854
|
+
values, where each value is
|
|
855
|
+
an <a href="property_types.html#integer">integer</a> or a
|
|
856
|
+
range of integers denoted by integer-integer. It is optional.
|
|
857
|
+
</li>
|
|
858
|
+
<li>
|
|
859
|
+
<tt>columns</tt> - a comma-separated list of
|
|
860
|
+
values, where each value is
|
|
861
|
+
an <a href="property_types.html#integer">integer</a> or a
|
|
862
|
+
range of integers denoted by integer-integer. It is optional.
|
|
863
|
+
</li>
|
|
864
|
+
</ul>
|
|
865
|
+
|
|
866
|
+
<p>
|
|
867
|
+
Each audit event is checked against
|
|
868
|
+
each <tt>suppress</tt> element. It is
|
|
869
|
+
suppressed if all specified attributes match against the audit
|
|
870
|
+
event.
|
|
871
|
+
</p>
|
|
872
|
+
|
|
873
|
+
</div><div class="section"><h5>Examples<a name="Examples"></a></h5>
|
|
874
|
+
<p>
|
|
875
|
+
For example, the following suppressions XML document directs
|
|
876
|
+
a <tt>SuppressionFilter</tt> to
|
|
877
|
+
reject <tt>JavadocStyleCheck</tt> errors for
|
|
878
|
+
lines 82 and 108 to 122 of
|
|
879
|
+
file <tt>AbstractComplexityCheck.java</tt>,
|
|
880
|
+
and <tt>MagicNumberCheck</tt> errors for line
|
|
881
|
+
221 of file <tt>JavadocStyleCheck.java</tt>:
|
|
882
|
+
</p>
|
|
883
|
+
|
|
884
|
+
<div class="source"><pre>
|
|
885
|
+
<?xml version="1.0"?>
|
|
886
|
+
|
|
887
|
+
<!DOCTYPE suppressions PUBLIC
|
|
888
|
+
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
|
|
889
|
+
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
|
|
890
|
+
|
|
891
|
+
<suppressions>
|
|
892
|
+
<suppress checks="JavadocStyleCheck"
|
|
893
|
+
files="AbstractComplexityCheck.java"
|
|
894
|
+
lines="82,108-122"/>
|
|
895
|
+
<suppress checks="MagicNumberCheck"
|
|
896
|
+
files="JavadocStyleCheck.java"
|
|
897
|
+
lines="221"/>
|
|
898
|
+
</suppressions>
|
|
899
|
+
</pre></div>
|
|
900
|
+
|
|
901
|
+
<p>
|
|
902
|
+
As another example, imagine that a configuration contains the
|
|
903
|
+
following:
|
|
904
|
+
</p>
|
|
905
|
+
|
|
906
|
+
<div class="source"><pre>
|
|
907
|
+
<module name="DescendantToken">
|
|
908
|
+
<property name="id" value="stringEqual"/>
|
|
909
|
+
<property name="tokens" value="EQUAL,NOT_EQUAL"/>
|
|
910
|
+
<property name="limitedTokens" value="STRING_LITERAL"/>
|
|
911
|
+
<property name="maximumNumber" value="0"/>
|
|
912
|
+
<property name="maximumDepth" value="1"/>
|
|
913
|
+
</module>
|
|
914
|
+
|
|
915
|
+
<module name="DescendantToken">
|
|
916
|
+
<property name="id" value="switchNoDefault"/>
|
|
917
|
+
<property name="tokens" value="LITERAL_SWITCH"/>
|
|
918
|
+
<property name="maximumDepth" value="2"/>
|
|
919
|
+
<property name="limitedTokens" value="LITERAL_DEFAULT"/>
|
|
920
|
+
<property name="minimumNumber" value="1"/>
|
|
921
|
+
</module>
|
|
922
|
+
</pre></div>
|
|
923
|
+
|
|
924
|
+
<p>
|
|
925
|
+
Then the following can be used to suppress only the first
|
|
926
|
+
check and not the second by using
|
|
927
|
+
the <tt>id</tt> attribute:
|
|
928
|
+
</p>
|
|
929
|
+
|
|
930
|
+
<div class="source"><pre>
|
|
931
|
+
<suppress id="stringEqual" files="SomeTestCode.java"/>
|
|
932
|
+
</pre></div>
|
|
933
|
+
|
|
934
|
+
</div></div></div>
|
|
935
|
+
|
|
936
|
+
<div class="section"><h3>SuppressionCommentFilter<a name="SuppressionCommentFilter"></a></h3>
|
|
937
|
+
<div class="section"><h4>SuppressionCommentFilter<a name="SuppressionCommentFilter"></a></h4>
|
|
938
|
+
|
|
939
|
+
<p>
|
|
940
|
+
Filter <tt>SuppressionCommentFilter</tt> uses
|
|
941
|
+
pairs of comments to suppress audit events.
|
|
942
|
+
</p>
|
|
943
|
+
|
|
944
|
+
<p>
|
|
945
|
+
Rationale: Sometimes there are legitimate reasons for violating
|
|
946
|
+
a check. When this is a matter of the code in question and not
|
|
947
|
+
personal preference, the best place to override the policy is in
|
|
948
|
+
the code itself. Semi-structured comments can be associated
|
|
949
|
+
with the check. This is sometimes superior to a separate
|
|
950
|
+
suppressions file, which must be kept up-to-date as the source
|
|
951
|
+
file is edited.
|
|
952
|
+
</p>
|
|
953
|
+
|
|
954
|
+
<p>
|
|
955
|
+
Usage: This filter only works in conjunction with a <tt>FileContentsHolder</tt>, since that check makes
|
|
956
|
+
the suppression comments in the .java files available <i>sub
|
|
957
|
+
rosa</i>. A configuration that includes this filter must
|
|
958
|
+
configure <tt>FileContentsHolder</tt> as a
|
|
959
|
+
child module of <tt>TreeWalker</tt>.
|
|
960
|
+
</p>
|
|
961
|
+
|
|
962
|
+
<div class="section"><h5>SuppressionCommentFilter Properties<a name="SuppressionCommentFilter_Properties"></a></h5>
|
|
963
|
+
<table border="0" class="bodyTable">
|
|
964
|
+
<tr class="a">
|
|
965
|
+
<th>name</th>
|
|
966
|
+
<th>description</th>
|
|
967
|
+
<th>type</th>
|
|
968
|
+
<th>default value</th>
|
|
969
|
+
</tr>
|
|
970
|
+
<tr class="b">
|
|
971
|
+
<td>offCommentFormat</td>
|
|
972
|
+
<td>comment pattern to trigger filter to begin suppression</td>
|
|
973
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
974
|
+
<td><tt>CHECKSTYLE\:OFF</tt></td>
|
|
975
|
+
</tr>
|
|
976
|
+
<tr class="a">
|
|
977
|
+
<td>onCommentFormat</td>
|
|
978
|
+
<td>comment pattern to trigger filter to end suppression</td>
|
|
979
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
980
|
+
<td><tt>CHECKSTYLE\:ON</tt></td>
|
|
981
|
+
</tr>
|
|
982
|
+
<tr class="b">
|
|
983
|
+
<td>checkFormat</td>
|
|
984
|
+
<td>check pattern to suppress</td>
|
|
985
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
986
|
+
<td><tt>.*</tt> (all checks)</td>
|
|
987
|
+
</tr>
|
|
988
|
+
<tr class="a">
|
|
989
|
+
<td>messageFormat</td>
|
|
990
|
+
<td>message pattern to suppress</td>
|
|
991
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
992
|
+
<td>none</td>
|
|
993
|
+
</tr>
|
|
994
|
+
<tr class="b">
|
|
995
|
+
<td>checkCPP</td>
|
|
996
|
+
<td>whether to check C++ style comments (<tt>//</tt>)</td>
|
|
997
|
+
<td><a href="property_types.html#boolean">boolean</a></td>
|
|
998
|
+
<td><tt>true</tt></td>
|
|
999
|
+
</tr>
|
|
1000
|
+
<tr class="a">
|
|
1001
|
+
<td>checkC</td>
|
|
1002
|
+
<td>whether to check C style comments (<tt>/* ... */</tt>)</td>
|
|
1003
|
+
<td><a href="property_types.html#boolean">boolean</a></td>
|
|
1004
|
+
<td><tt>true</tt></td>
|
|
1005
|
+
</tr>
|
|
1006
|
+
</table>
|
|
1007
|
+
|
|
1008
|
+
</div><div class="section"><h5>Restrictions<a name="Restrictions"></a></h5>
|
|
1009
|
+
<p>
|
|
1010
|
+
offCommentFormat and onCommentFormat must have equal <a class="externalLink" href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Matcher.html#groupCount()">paren counts</a>.
|
|
1011
|
+
</p>
|
|
1012
|
+
|
|
1013
|
+
</div><div class="section"><h5>Examples<a name="Examples"></a></h5>
|
|
1014
|
+
<p>
|
|
1015
|
+
To configure the check that makes comments available to the filter:
|
|
1016
|
+
</p>
|
|
1017
|
+
|
|
1018
|
+
<div class="source"><pre>
|
|
1019
|
+
<module name="TreeWalker">
|
|
1020
|
+
...
|
|
1021
|
+
<module name="FileContentsHolder"/>
|
|
1022
|
+
...
|
|
1023
|
+
</module>
|
|
1024
|
+
</pre></div>
|
|
1025
|
+
|
|
1026
|
+
<p>
|
|
1027
|
+
To configure a filter to suppress audit events between a comment
|
|
1028
|
+
containing <tt>CHECKSTYLE:OFF</tt> and a comment containing
|
|
1029
|
+
<tt>CHECKSTYLE:ON</tt>:
|
|
1030
|
+
</p>
|
|
1031
|
+
|
|
1032
|
+
<div class="source"><pre>
|
|
1033
|
+
<module name="SuppressionCommentFilter"/>
|
|
1034
|
+
</pre></div>
|
|
1035
|
+
|
|
1036
|
+
<p>
|
|
1037
|
+
To configure a filter to suppress audit events between a comment
|
|
1038
|
+
containing line <tt>BEGIN GENERATED CODE</tt> and a comment
|
|
1039
|
+
containing line <tt>END GENERATED CODE</tt>:
|
|
1040
|
+
</p>
|
|
1041
|
+
|
|
1042
|
+
<div class="source"><pre>
|
|
1043
|
+
<module name="SuppressionCommentFilter">
|
|
1044
|
+
<property name="offCommentFormat" value="BEGIN GENERATED CODE"/>
|
|
1045
|
+
<property name="onCommentFormat" value="END GENERATED CODE"/>
|
|
1046
|
+
</module>
|
|
1047
|
+
</pre></div>
|
|
1048
|
+
|
|
1049
|
+
<p>
|
|
1050
|
+
To configure a filter so that <tt>// stop constant
|
|
1051
|
+
check</tt> and <tt>// resume constant check</tt> marks
|
|
1052
|
+
legitimate constant names:
|
|
1053
|
+
</p>
|
|
1054
|
+
|
|
1055
|
+
<div class="source"><pre>
|
|
1056
|
+
<module name="SuppressionCommentFilter">
|
|
1057
|
+
<property name="offCommentFormat" value="stop constant check"/>
|
|
1058
|
+
<property name="onCommentFormat" value="resume constant check"/>
|
|
1059
|
+
<property name="checkFormat" value="ConstantNameCheck"/>
|
|
1060
|
+
</module>
|
|
1061
|
+
</pre></div>
|
|
1062
|
+
|
|
1063
|
+
<p>
|
|
1064
|
+
To configure a filter so that <tt>UNUSED OFF:
|
|
1065
|
+
<i>var</i></tt> and <tt>UNUSED ON: <i>var</i></tt> marks a
|
|
1066
|
+
variable or parameter known not to be used by the code by
|
|
1067
|
+
matching the variable name in the message:
|
|
1068
|
+
</p>
|
|
1069
|
+
|
|
1070
|
+
<div class="source"><pre>
|
|
1071
|
+
<module name="SuppressionCommentFilter">
|
|
1072
|
+
<property name="offCommentFormat" value="UNUSED OFF\: (\w+)"/>
|
|
1073
|
+
<property name="onCommentFormat" value="UNUSED ON\: (\w+)"/>
|
|
1074
|
+
<property name="checkFormat" value="Unused"/>
|
|
1075
|
+
<property name="messageFormat" value="^Unused \w+ '$1'.$"/>
|
|
1076
|
+
</module>
|
|
1077
|
+
</pre></div>
|
|
1078
|
+
|
|
1079
|
+
<p>
|
|
1080
|
+
To configure a filter so that <tt>CSOFF: <i>regexp</i></tt>
|
|
1081
|
+
and <tt>CSN: <i>regexp</i></tt> mark a matching check:
|
|
1082
|
+
</p>
|
|
1083
|
+
|
|
1084
|
+
<div class="source"><pre>
|
|
1085
|
+
<module name="SuppressionCommentFilter">
|
|
1086
|
+
<property name="offCommentFormat" value="CSOFF\: ([\w\|]+)"/>
|
|
1087
|
+
<property name="onCommentFormat" value="CSON\: ([\w\|]+)"/>
|
|
1088
|
+
<property name="checkFormat" value="$1"/>
|
|
1089
|
+
</module>
|
|
1090
|
+
</pre></div>
|
|
1091
|
+
|
|
1092
|
+
<p>
|
|
1093
|
+
To configure a filter to suppress all audit events between a comment
|
|
1094
|
+
containing <tt>CHECKSTYLE_OFF: ALL</tt> and a comment containing
|
|
1095
|
+
<tt>CHECKSTYLE_OFF: ALL</tt> except for the <i>EqualsHashCode</i> check:
|
|
1096
|
+
</p>
|
|
1097
|
+
|
|
1098
|
+
<div class="source"><pre>
|
|
1099
|
+
<module name="SuppressionCommentFilter">
|
|
1100
|
+
<property name="offCommentFormat" value="CHECKSTYLE_OFF: ALL"/>
|
|
1101
|
+
<property name="onCommentFormat" value="CHECKSTYLE_ON: ALL"/>
|
|
1102
|
+
<property name="checkFormat" value="^((?!(EqualsHashCode)).)*$"/>
|
|
1103
|
+
</module>
|
|
1104
|
+
</pre></div>
|
|
1105
|
+
</div></div></div>
|
|
1106
|
+
|
|
1107
|
+
<div class="section"><h3>SuppressWithNearbyCommentFilter<a name="SuppressWithNearbyCommentFilter"></a></h3>
|
|
1108
|
+
<div class="section"><h4>SuppressWithNearbyCommentFilter<a name="SuppressWithNearbyCommentFilter"></a></h4>
|
|
1109
|
+
|
|
1110
|
+
<p>
|
|
1111
|
+
Filter <tt>SuppressWithNearbyCommentFilter</tt> uses
|
|
1112
|
+
individual comments to suppress audit events.
|
|
1113
|
+
</p>
|
|
1114
|
+
|
|
1115
|
+
<p>
|
|
1116
|
+
Rationale: Same as <tt>SuppressionCommentFilter</tt>.
|
|
1117
|
+
Whereas the SuppressionCommentFilter uses matched pairs of
|
|
1118
|
+
filters to turn on/off comment matching,
|
|
1119
|
+
<tt>SuppressWithNearbyCommentFilter</tt> uses
|
|
1120
|
+
single comments. This requires fewer lines to mark a region, and
|
|
1121
|
+
may be aesthetically preferable in some contexts.
|
|
1122
|
+
</p>
|
|
1123
|
+
|
|
1124
|
+
<p>
|
|
1125
|
+
Usage: This filter only works in conjunction with a <tt>FileContentsHolder</tt>, since that check makes
|
|
1126
|
+
the suppression comments in the .java files available <i>sub
|
|
1127
|
+
rosa</i>. A configuration that includes this filter must
|
|
1128
|
+
configure <tt>FileContentsHolder</tt> as a
|
|
1129
|
+
child module of <tt>TreeWalker</tt>.
|
|
1130
|
+
</p>
|
|
1131
|
+
|
|
1132
|
+
<div class="section"><h5>SuppressWithNearbyCommentFilter Properties<a name="SuppressWithNearbyCommentFilter_Properties"></a></h5>
|
|
1133
|
+
<table border="0" class="bodyTable">
|
|
1134
|
+
<tr class="a">
|
|
1135
|
+
<th>name</th>
|
|
1136
|
+
<th>description</th>
|
|
1137
|
+
<th>type</th>
|
|
1138
|
+
<th>default value</th>
|
|
1139
|
+
</tr>
|
|
1140
|
+
<tr class="b">
|
|
1141
|
+
<td>commentFormat</td>
|
|
1142
|
+
<td>comment pattern to trigger filter to begin suppression</td>
|
|
1143
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
1144
|
+
<td><tt>SUPPRESS CHECKSTYLE (\w+)</tt></td>
|
|
1145
|
+
</tr>
|
|
1146
|
+
<tr class="a">
|
|
1147
|
+
<td>checkFormat</td>
|
|
1148
|
+
<td>check pattern to suppress</td>
|
|
1149
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
1150
|
+
<td><tt>.*</tt></td>
|
|
1151
|
+
</tr>
|
|
1152
|
+
<tr class="b">
|
|
1153
|
+
<td>messageFormat</td>
|
|
1154
|
+
<td>message pattern to suppress</td>
|
|
1155
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
1156
|
+
<td>none</td>
|
|
1157
|
+
</tr>
|
|
1158
|
+
<tr class="a">
|
|
1159
|
+
<td>influenceFormat</td>
|
|
1160
|
+
<td>a negative/zero/positive value that defines the number of
|
|
1161
|
+
lines preceding/at/following the suppression comment</td>
|
|
1162
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
1163
|
+
<td><tt>0</tt> (the line containing the comment)</td>
|
|
1164
|
+
</tr>
|
|
1165
|
+
<tr class="b">
|
|
1166
|
+
<td>checkCPP</td>
|
|
1167
|
+
<td>whether to check C++ style comments (<tt>//</tt>)</td>
|
|
1168
|
+
<td><a href="property_types.html#boolean">boolean</a></td>
|
|
1169
|
+
<td><tt>true</tt></td>
|
|
1170
|
+
</tr>
|
|
1171
|
+
<tr class="a">
|
|
1172
|
+
<td>checkC</td>
|
|
1173
|
+
<td>whether to check C style comments (<tt>/* ... */</tt>)</td>
|
|
1174
|
+
<td><a href="property_types.html#boolean">boolean</a></td>
|
|
1175
|
+
<td><tt>true</tt></td>
|
|
1176
|
+
</tr>
|
|
1177
|
+
</table>
|
|
1178
|
+
|
|
1179
|
+
</div><div class="section"><h5>Examples<a name="Examples"></a></h5>
|
|
1180
|
+
<p>
|
|
1181
|
+
To configure the check that makes comments available to the filter:
|
|
1182
|
+
</p>
|
|
1183
|
+
|
|
1184
|
+
<div class="source"><pre>
|
|
1185
|
+
<module name="TreeWalker">
|
|
1186
|
+
...
|
|
1187
|
+
<module name="FileContentsHolder"/>
|
|
1188
|
+
...
|
|
1189
|
+
</module>
|
|
1190
|
+
</pre></div>
|
|
1191
|
+
|
|
1192
|
+
<p>
|
|
1193
|
+
To configure a filter to suppress audit events for <i>check</i>
|
|
1194
|
+
on any line with a comment <tt>SUPPRESS CHECKSTYLE <i>check</i></tt>:
|
|
1195
|
+
</p>
|
|
1196
|
+
|
|
1197
|
+
<div class="source"><pre>
|
|
1198
|
+
<module name="SuppressWithNearbyCommentFilter"/>
|
|
1199
|
+
</pre></div>
|
|
1200
|
+
|
|
1201
|
+
<p>
|
|
1202
|
+
To configure a filter to suppress all audit events on any line
|
|
1203
|
+
containing the comment <tt>CHECKSTYLE IGNORE THIS LINE</tt>:
|
|
1204
|
+
</p>
|
|
1205
|
+
|
|
1206
|
+
<div class="source"><pre>
|
|
1207
|
+
<module name="SuppressWithNearbyCommentFilter">
|
|
1208
|
+
<property name="commentFormat" value="CHECKSTYLE IGNORE THIS LINE"/>
|
|
1209
|
+
<property name="checkFormat" value=".*"/>
|
|
1210
|
+
<property name="influenceFormat" value="0"/>
|
|
1211
|
+
</module>
|
|
1212
|
+
</pre></div>
|
|
1213
|
+
|
|
1214
|
+
<p>
|
|
1215
|
+
To configure a filter so that
|
|
1216
|
+
<tt>// Ok to catch (Throwable|Exception|RuntimeException) here</tt>
|
|
1217
|
+
permits the current and previous line to avoid generating an IllegalCatch
|
|
1218
|
+
audit event:
|
|
1219
|
+
</p>
|
|
1220
|
+
|
|
1221
|
+
<div class="source"><pre>
|
|
1222
|
+
<module name="SuppressWithNearbyCommentFilter">
|
|
1223
|
+
<property name="commentFormat" value="Ok to catch (\w+) here"/>
|
|
1224
|
+
<property name="checkFormat" value="IllegalCatchCheck"/>
|
|
1225
|
+
<property name="messageFormat" value="$1"/>
|
|
1226
|
+
<property name="influenceFormat" value="-1"/>
|
|
1227
|
+
</module>
|
|
1228
|
+
</pre></div>
|
|
1229
|
+
|
|
1230
|
+
<p>
|
|
1231
|
+
To configure a filter so that <tt>CHECKSTYLE IGNORE <i>check</i> FOR NEXT <i>var</i> LINES</tt>
|
|
1232
|
+
avoids triggering any audits for the given check for the current line and the next <i>var</i> lines
|
|
1233
|
+
(for a total of <i>var</i>+1 lines):
|
|
1234
|
+
</p>
|
|
1235
|
+
|
|
1236
|
+
<div class="source"><pre>
|
|
1237
|
+
<module name="SuppressWithNearbyCommentFilter">
|
|
1238
|
+
<property name="commentFormat" value="CHECKSTYLE IGNORE (\w+) FOR NEXT (\d+) LINES"/>
|
|
1239
|
+
<property name="checkFormat" value="$1"/>
|
|
1240
|
+
<property name="influenceFormat" value="$2"/>
|
|
1241
|
+
</module>
|
|
1242
|
+
</pre></div>
|
|
1243
|
+
|
|
1244
|
+
</div></div></div>
|
|
1245
|
+
</div>
|
|
1246
|
+
|
|
1247
|
+
<div class="section"><h2>AuditListeners<a name="AuditListeners"></a></h2>
|
|
1248
|
+
|
|
1249
|
+
<p>
|
|
1250
|
+
In addition to an audit reporter for text or XML output, a
|
|
1251
|
+
Checker can have <a href="writinglisteners.html">custom
|
|
1252
|
+
AuditListeners</a> that handle audit events. In order to use a
|
|
1253
|
+
custom listener, add a <tt>Checker</tt> submodule for the
|
|
1254
|
+
listener and its properties. For example, to configure a <tt>Checker</tt> so that it uses custom listener <a href="writinglisteners.html#Writing_Listeners">VerboseListener</a> to
|
|
1255
|
+
print audit messages to a file named "audit.txt",
|
|
1256
|
+
include the following module in the configuration file:
|
|
1257
|
+
</p>
|
|
1258
|
+
|
|
1259
|
+
<div class="source"><pre>
|
|
1260
|
+
<module name="com.mycompany.listeners.VerboseListener">
|
|
1261
|
+
<property name="file" value="audit.txt"/>
|
|
1262
|
+
</module>
|
|
1263
|
+
</pre></div>
|
|
1264
|
+
|
|
1265
|
+
</div>
|
|
1266
|
+
|
|
1267
|
+
<div class="section"><h2>Packages<a name="Packages"></a></h2>
|
|
1268
|
+
<p>
|
|
1269
|
+
Checkstyle loads a module class according to the <tt>name</tt> of a <tt>module</tt>
|
|
1270
|
+
element, and automatically appends pre-specified package
|
|
1271
|
+
prefixes to that <tt>name</tt> in its search
|
|
1272
|
+
for a loadable class. By default, Checkstyle applies packages
|
|
1273
|
+
<tt> com.puppycrawl.tools.checkstyle</tt>,
|
|
1274
|
+
<tt>
|
|
1275
|
+
com.puppycrawl.tools.checkstyle.filters</tt>, and <tt> com.puppycrawl.tools.checkstyle.checks</tt> as
|
|
1276
|
+
well as any sub-packages of <tt>com.puppycrawl.tools.checkstyle.checks</tt> that
|
|
1277
|
+
are distributed with Checkstyle.
|
|
1278
|
+
</p>
|
|
1279
|
+
<p>
|
|
1280
|
+
To specify other packages to apply,
|
|
1281
|
+
create a <i>package names XML document</i> in a file
|
|
1282
|
+
named <tt>checkstyle_packages.xml</tt>,
|
|
1283
|
+
and provide that file in the root of the .jar containing your
|
|
1284
|
+
custom checks.
|
|
1285
|
+
</p>
|
|
1286
|
+
<p>
|
|
1287
|
+
Note that the support for providing a <i>package names XML document</i>
|
|
1288
|
+
via <a href="cmdline.html">command line</a> option or as a attribute
|
|
1289
|
+
of an <a href="anttask.html">ant Checkstyle task</a> has been dropped
|
|
1290
|
+
with Checkstyle 5.0.
|
|
1291
|
+
</p>
|
|
1292
|
+
|
|
1293
|
+
<p>
|
|
1294
|
+
A <i>package names XML document</i> specifies a list of
|
|
1295
|
+
package names. Here is a sample package names XML document for
|
|
1296
|
+
packages <tt>
|
|
1297
|
+
com.puppycrawl.tools.checkstyle</tt> and <tt>
|
|
1298
|
+
com.puppycrawl.tools.checkstyle.checks</tt>:
|
|
1299
|
+
</p>
|
|
1300
|
+
|
|
1301
|
+
<div class="source"><pre>
|
|
1302
|
+
<checkstyle-packages>
|
|
1303
|
+
<package name="com.puppycrawl.tools.checkstyle">
|
|
1304
|
+
<package name="checks"/>
|
|
1305
|
+
</package>
|
|
1306
|
+
</checkstyle-packages>
|
|
1307
|
+
</pre></div>
|
|
1308
|
+
|
|
1309
|
+
<p>
|
|
1310
|
+
Notice that the packages are specified recursively - a child
|
|
1311
|
+
<tt>package</tt> element is a subpackage of its
|
|
1312
|
+
parent <tt>package</tt> element.
|
|
1313
|
+
</p>
|
|
1314
|
+
|
|
1315
|
+
<p>
|
|
1316
|
+
For example, to incorporate modules from package <tt>com.mycompany.checks</tt> with Checkstyle
|
|
1317
|
+
modules, create the XML file below and put this file into the
|
|
1318
|
+
<b>root of the jar</b> file which contains your custom check modules.
|
|
1319
|
+
The XML file must be named exactly <tt>checkstyle_packages.xml</tt>:
|
|
1320
|
+
</p>
|
|
1321
|
+
|
|
1322
|
+
<div class="source"><pre>
|
|
1323
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
1324
|
+
|
|
1325
|
+
<!DOCTYPE checkstyle-packages PUBLIC
|
|
1326
|
+
"-//Puppy Crawl//DTD Package Names 1.0//EN"
|
|
1327
|
+
"http://www.puppycrawl.com/dtds/packages_1_0.dtd">
|
|
1328
|
+
|
|
1329
|
+
<checkstyle-packages>
|
|
1330
|
+
<package name="com.mycompany.checks"/>
|
|
1331
|
+
</checkstyle-packages>
|
|
1332
|
+
</pre></div>
|
|
1333
|
+
|
|
1334
|
+
<p>
|
|
1335
|
+
Now you can configure a module of package <tt>com.mycompany.checks</tt>, say <tt>com.mycompany.checks.MethodLimitCheck</tt>, with
|
|
1336
|
+
a shortened <tt>module</tt> element in the
|
|
1337
|
+
configuration document:
|
|
1338
|
+
</p>
|
|
1339
|
+
|
|
1340
|
+
<div class="source"><pre>
|
|
1341
|
+
<module name="MethodLimit"/>
|
|
1342
|
+
</pre></div>
|
|
1343
|
+
|
|
1344
|
+
<div class="tip">
|
|
1345
|
+
<div class="section"><div class="section"><h4>Note<a name="Note"></a></h4>
|
|
1346
|
+
<p>
|
|
1347
|
+
As of Checkstyle 5.0 it is unnecessary to repeat the
|
|
1348
|
+
<tt>package</tt> elements for Checkstyle's packages in
|
|
1349
|
+
your custom <tt>checkstyle_packages.xml</tt> file.
|
|
1350
|
+
</p>
|
|
1351
|
+
</div>
|
|
1352
|
+
|
|
1353
|
+
</div></div></div>
|
|
1354
|
+
|
|
1355
|
+
<div class="section"><h2>XML Details<a name="XML_Details"></a></h2>
|
|
1356
|
+
|
|
1357
|
+
<div class="section"><div class="section"><h4>Configuration XML Document<a name="Configuration_XML_Document"></a></h4>
|
|
1358
|
+
<p>
|
|
1359
|
+
The following DTD for a configuration XML document specifies the
|
|
1360
|
+
hierarchy of modules and their properties:
|
|
1361
|
+
</p>
|
|
1362
|
+
|
|
1363
|
+
<div class="source"><pre>
|
|
1364
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
1365
|
+
|
|
1366
|
+
<!ELEMENT module (module|property)*>
|
|
1367
|
+
<!ATTLIST module name NMTOKEN #REQUIRED>
|
|
1368
|
+
|
|
1369
|
+
<!ELEMENT property EMPTY>
|
|
1370
|
+
<!ATTLIST property
|
|
1371
|
+
name NMTOKEN #REQUIRED
|
|
1372
|
+
value CDATA #REQUIRED
|
|
1373
|
+
>
|
|
1374
|
+
</pre></div>
|
|
1375
|
+
|
|
1376
|
+
<p>
|
|
1377
|
+
Checkstyle validates a configuration XML document when it loads
|
|
1378
|
+
the document. To validate against the above configuration DTD,
|
|
1379
|
+
include the following document type declaration in your
|
|
1380
|
+
configuration XML document:
|
|
1381
|
+
</p>
|
|
1382
|
+
|
|
1383
|
+
<div class="source"><pre>
|
|
1384
|
+
<!DOCTYPE module PUBLIC
|
|
1385
|
+
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
|
|
1386
|
+
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
|
|
1387
|
+
</pre></div>
|
|
1388
|
+
|
|
1389
|
+
<p>
|
|
1390
|
+
Checkstyle also strictly enforces the encoding attribute of an
|
|
1391
|
+
XML declaration. If Checkstyle rejects your configuration
|
|
1392
|
+
document's encoding, correct the value of the encoding
|
|
1393
|
+
attribute, or remove the encoding attribute entirely.
|
|
1394
|
+
</p>
|
|
1395
|
+
|
|
1396
|
+
<p>
|
|
1397
|
+
For a complete example of a configuration XML document, examine
|
|
1398
|
+
file <tt>docs/sun_checks.xml</tt> that checks the Sun coding
|
|
1399
|
+
conventions.
|
|
1400
|
+
</p>
|
|
1401
|
+
|
|
1402
|
+
</div><div class="section"><h4>Package Names XML Document<a name="Package_Names_XML_Document"></a></h4>
|
|
1403
|
+
<p>
|
|
1404
|
+
This is a DTD for a package names XML document:
|
|
1405
|
+
</p>
|
|
1406
|
+
|
|
1407
|
+
<div class="source"><pre>
|
|
1408
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
1409
|
+
|
|
1410
|
+
<!ELEMENT checkstyle-packages (package)*>
|
|
1411
|
+
|
|
1412
|
+
<!ELEMENT package (package)*>
|
|
1413
|
+
<!ATTLIST package name NMTOKEN #REQUIRED>
|
|
1414
|
+
</pre></div>
|
|
1415
|
+
|
|
1416
|
+
<p>
|
|
1417
|
+
Checkstyle also validates a package names XML document when it
|
|
1418
|
+
loads the document. To validate against the above package names
|
|
1419
|
+
DTD, include the following document type declaration in your
|
|
1420
|
+
package names XML document:
|
|
1421
|
+
</p>
|
|
1422
|
+
|
|
1423
|
+
<div class="source"><pre>
|
|
1424
|
+
<!DOCTYPE checkstyle-packages PUBLIC
|
|
1425
|
+
"-//Puppy Crawl//DTD Package Names 1.1//EN"
|
|
1426
|
+
"http://www.puppycrawl.com/dtds/packages_1_1.dtd">
|
|
1427
|
+
</pre></div>
|
|
1428
|
+
|
|
1429
|
+
</div><div class="section"><h4>Suppressions XML Document<a name="Suppressions_XML_Document"></a></h4>
|
|
1430
|
+
<p>
|
|
1431
|
+
This is a DTD for a suppressions XML document:
|
|
1432
|
+
</p>
|
|
1433
|
+
|
|
1434
|
+
<div class="source"><pre>
|
|
1435
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
1436
|
+
|
|
1437
|
+
<!ELEMENT suppressions (suppress*)>
|
|
1438
|
+
|
|
1439
|
+
<!ELEMENT suppress EMPTY>
|
|
1440
|
+
<!ATTLIST suppress files CDATA #REQUIRED
|
|
1441
|
+
checks CDATA #IMPLIED
|
|
1442
|
+
id CDATA #IMPLIED
|
|
1443
|
+
lines CDATA #IMPLIED
|
|
1444
|
+
columns CDATA #IMPLIED>
|
|
1445
|
+
</pre></div>
|
|
1446
|
+
|
|
1447
|
+
</div></div></div>
|
|
1448
|
+
|
|
1449
|
+
|
|
1450
|
+
</div>
|
|
1451
|
+
</div>
|
|
1452
|
+
<div class="clear">
|
|
1453
|
+
<hr/>
|
|
1454
|
+
</div>
|
|
1455
|
+
<div id="footer">
|
|
1456
|
+
<div class="xright">Copyright © 2001-2012.
|
|
1457
|
+
All Rights Reserved.
|
|
1458
|
+
|
|
1459
|
+
</div>
|
|
1460
|
+
<div class="clear">
|
|
1461
|
+
<hr/>
|
|
1462
|
+
</div>
|
|
1463
|
+
</div>
|
|
1464
|
+
</body>
|
|
1465
|
+
</html>
|