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,1607 @@
|
|
|
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
|
+
Miscellaneous</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="Checkstyle Development Team" />
|
|
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
|
+
<a href="config.html" title="Configuration">Configuration</a>
|
|
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
|
+
<strong>Miscellaneous</strong>
|
|
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
|
+
<div class="section"><h2>NewlineAtEndOfFile<a name="NewlineAtEndOfFile"></a></h2>
|
|
181
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
182
|
+
<p>
|
|
183
|
+
Checks whether files end with a new line.
|
|
184
|
+
</p>
|
|
185
|
+
|
|
186
|
+
<p>
|
|
187
|
+
Rationale: Any source files and text files in general should
|
|
188
|
+
end with a newline character, especially when using SCM
|
|
189
|
+
systems such as CVS. CVS will even print a warning when it
|
|
190
|
+
encounters a file that doesn't end with a newline.
|
|
191
|
+
</p>
|
|
192
|
+
</div>
|
|
193
|
+
|
|
194
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
195
|
+
<table border="0" class="bodyTable">
|
|
196
|
+
<tr class="a">
|
|
197
|
+
<th>name</th>
|
|
198
|
+
<th>description</th>
|
|
199
|
+
<th>type</th>
|
|
200
|
+
<th>default value</th>
|
|
201
|
+
</tr>
|
|
202
|
+
<tr class="b">
|
|
203
|
+
<td>lineSeparator</td>
|
|
204
|
+
<td>type of line separator</td>
|
|
205
|
+
<td>
|
|
206
|
+
One of "system" (system default),
|
|
207
|
+
"crlf" (Windows-style), "cr"
|
|
208
|
+
(Mac-style) and "lf" (Unix-style)
|
|
209
|
+
</td>
|
|
210
|
+
<td>system default</td>
|
|
211
|
+
</tr>
|
|
212
|
+
<tr class="a">
|
|
213
|
+
<td>fileExtensions</td>
|
|
214
|
+
<td>file type extension of the files to check.</td>
|
|
215
|
+
<td><a href="property_types.html#stringSet">String Set</a></td>
|
|
216
|
+
<td>all files</td>
|
|
217
|
+
</tr>
|
|
218
|
+
|
|
219
|
+
</table>
|
|
220
|
+
</div>
|
|
221
|
+
|
|
222
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
223
|
+
<p>
|
|
224
|
+
To configure the check:
|
|
225
|
+
</p>
|
|
226
|
+
<div class="source"><pre>
|
|
227
|
+
<module name="NewlineAtEndOfFile"/>
|
|
228
|
+
</pre></div>
|
|
229
|
+
|
|
230
|
+
<p>
|
|
231
|
+
To configure the check to always use Unix-style line separators:
|
|
232
|
+
</p>
|
|
233
|
+
<div class="source"><pre>
|
|
234
|
+
<module name="NewlineAtEndOfFile">
|
|
235
|
+
<property name="lineSeparator" value="lf"/>
|
|
236
|
+
</module>
|
|
237
|
+
</pre></div>
|
|
238
|
+
|
|
239
|
+
<p>
|
|
240
|
+
To configure the check to work only on java, xml and python files:
|
|
241
|
+
</p>
|
|
242
|
+
<div class="source"><pre>
|
|
243
|
+
<module name="NewlineAtEndOfFile">
|
|
244
|
+
<property name="fileExtensions" value="java, xml, py"/>
|
|
245
|
+
</module>
|
|
246
|
+
</pre></div>
|
|
247
|
+
</div>
|
|
248
|
+
|
|
249
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
250
|
+
<p>
|
|
251
|
+
com.puppycrawl.tools.checkstyle.checks
|
|
252
|
+
</p>
|
|
253
|
+
</div>
|
|
254
|
+
|
|
255
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
256
|
+
<p>
|
|
257
|
+
<a href="config.html#Checker">Checker</a>
|
|
258
|
+
</p>
|
|
259
|
+
</div>
|
|
260
|
+
</div>
|
|
261
|
+
|
|
262
|
+
<div class="section"><h2>TodoComment<a name="TodoComment"></a></h2>
|
|
263
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
264
|
+
<p>
|
|
265
|
+
A check for <tt>TODO:</tt> comments. Actually
|
|
266
|
+
it is a generic <a class="externalLink" href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html">regular
|
|
267
|
+
expression</a> matcher on Java comments. To check for other
|
|
268
|
+
patterns in Java comments, set property format.
|
|
269
|
+
</p>
|
|
270
|
+
</div>
|
|
271
|
+
|
|
272
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
273
|
+
<table border="0" class="bodyTable">
|
|
274
|
+
<tr class="a">
|
|
275
|
+
<th>name</th>
|
|
276
|
+
<th>description</th>
|
|
277
|
+
<th>type</th>
|
|
278
|
+
<th>default value</th>
|
|
279
|
+
</tr>
|
|
280
|
+
<tr class="b">
|
|
281
|
+
<td>format</td>
|
|
282
|
+
<td>pattern to check</td>
|
|
283
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
284
|
+
<td><tt>TODO:</tt></td>
|
|
285
|
+
</tr>
|
|
286
|
+
</table>
|
|
287
|
+
</div>
|
|
288
|
+
|
|
289
|
+
<div class="section"><h3>Notes<a name="Notes"></a></h3>
|
|
290
|
+
<p>
|
|
291
|
+
Using <tt>TODO:</tt> comments is a great way
|
|
292
|
+
to keep track of tasks that need to be done. Having them
|
|
293
|
+
reported by Checkstyle makes it very hard to forget about
|
|
294
|
+
them.
|
|
295
|
+
</p>
|
|
296
|
+
</div>
|
|
297
|
+
|
|
298
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
299
|
+
<p>
|
|
300
|
+
To configure the check:
|
|
301
|
+
</p>
|
|
302
|
+
<div class="source"><pre>
|
|
303
|
+
<module name="TodoComment"/>
|
|
304
|
+
</pre></div>
|
|
305
|
+
|
|
306
|
+
<p>
|
|
307
|
+
To configure the check for comments that contain <tt>WARNING</tt>:
|
|
308
|
+
</p>
|
|
309
|
+
<div class="source"><pre>
|
|
310
|
+
<module name="TodoComment">
|
|
311
|
+
<property name="format" value="WARNING"/>
|
|
312
|
+
</module>
|
|
313
|
+
</pre></div>
|
|
314
|
+
</div>
|
|
315
|
+
|
|
316
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
317
|
+
<p>
|
|
318
|
+
com.puppycrawl.tools.checkstyle.checks
|
|
319
|
+
</p>
|
|
320
|
+
</div>
|
|
321
|
+
|
|
322
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
323
|
+
<p>
|
|
324
|
+
<a href="config.html#TreeWalker">TreeWalker</a>
|
|
325
|
+
</p>
|
|
326
|
+
</div>
|
|
327
|
+
</div>
|
|
328
|
+
|
|
329
|
+
<div class="section"><h2>Translation<a name="Translation"></a></h2>
|
|
330
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
331
|
+
<p>
|
|
332
|
+
A <a href="config.html#Overview">FileSetCheck</a> that ensures
|
|
333
|
+
the correct translation of code by checking property files for
|
|
334
|
+
consistency regarding their keys. Two property files
|
|
335
|
+
describing one and the same context are consistent if they
|
|
336
|
+
contain the same keys.
|
|
337
|
+
</p>
|
|
338
|
+
|
|
339
|
+
<p>
|
|
340
|
+
Consider the following properties file in the same directory:
|
|
341
|
+
</p>
|
|
342
|
+
<div class="source"><pre>
|
|
343
|
+
#messages.properties
|
|
344
|
+
hello=Hello
|
|
345
|
+
cancel=Cancel
|
|
346
|
+
|
|
347
|
+
#messages_de.properties
|
|
348
|
+
hell=Hallo
|
|
349
|
+
ok=OK
|
|
350
|
+
</pre></div>
|
|
351
|
+
|
|
352
|
+
<p>
|
|
353
|
+
The Translation check will find the typo in the german hello
|
|
354
|
+
key, the missing ok key in the default resource file and the
|
|
355
|
+
missing cancel key in the german resource file:
|
|
356
|
+
</p>
|
|
357
|
+
<div class="source"><pre>
|
|
358
|
+
messages_de.properties: Key 'hello' missing.
|
|
359
|
+
messages_de.properties: Key 'cancel' missing.
|
|
360
|
+
messages.properties: Key 'hell' missing.
|
|
361
|
+
messages.properties: Key 'ok' missing.
|
|
362
|
+
</pre></div>
|
|
363
|
+
</div>
|
|
364
|
+
|
|
365
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
366
|
+
<table border="0" class="bodyTable">
|
|
367
|
+
<tr class="a">
|
|
368
|
+
<th>name</th>
|
|
369
|
+
<th>description</th>
|
|
370
|
+
<th>type</th>
|
|
371
|
+
<th>default value</th>
|
|
372
|
+
</tr>
|
|
373
|
+
<tr class="b">
|
|
374
|
+
<td>fileExtensions</td>
|
|
375
|
+
<td>
|
|
376
|
+
file type extension to identify translation files. Setting
|
|
377
|
+
this property is typically only required if your
|
|
378
|
+
translation files are preprocessed and the original files
|
|
379
|
+
do not have the extension <tt>.properties</tt>
|
|
380
|
+
</td>
|
|
381
|
+
<td><a href="property_types.html#stringSet">String Set</a></td>
|
|
382
|
+
<td><tt>properties</tt></td>
|
|
383
|
+
</tr>
|
|
384
|
+
</table>
|
|
385
|
+
</div>
|
|
386
|
+
|
|
387
|
+
<div class="section"><h3>Example<a name="Example"></a></h3>
|
|
388
|
+
<p>
|
|
389
|
+
To configure the check:
|
|
390
|
+
</p>
|
|
391
|
+
<div class="source"><pre>
|
|
392
|
+
<module name="Translation"/>
|
|
393
|
+
</pre></div>
|
|
394
|
+
</div>
|
|
395
|
+
|
|
396
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
397
|
+
<p>
|
|
398
|
+
com.puppycrawl.tools.checkstyle.checks
|
|
399
|
+
</p>
|
|
400
|
+
</div>
|
|
401
|
+
|
|
402
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
403
|
+
<p>
|
|
404
|
+
<a href="config.html#Checker">Checker</a>
|
|
405
|
+
</p>
|
|
406
|
+
</div>
|
|
407
|
+
</div>
|
|
408
|
+
|
|
409
|
+
<div class="section"><h2>UncommentedMain<a name="UncommentedMain"></a></h2>
|
|
410
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
411
|
+
<p>
|
|
412
|
+
Checks for uncommented main() methods (debugging leftovers).
|
|
413
|
+
</p>
|
|
414
|
+
|
|
415
|
+
<p>
|
|
416
|
+
Rationale: A main() method is often used for debug
|
|
417
|
+
puposes. When debugging is finished, developers often forget
|
|
418
|
+
to remove the method, which changes the API and increases the
|
|
419
|
+
size of the resulting class/jar file. With the exception of
|
|
420
|
+
the real program entry points, all main() methods should be
|
|
421
|
+
removed/commented out of the sources.
|
|
422
|
+
</p>
|
|
423
|
+
</div>
|
|
424
|
+
|
|
425
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
426
|
+
<table border="0" class="bodyTable">
|
|
427
|
+
<tr class="a">
|
|
428
|
+
<th>name</th>
|
|
429
|
+
<th>description</th>
|
|
430
|
+
<th>type</th>
|
|
431
|
+
<th>default value</th>
|
|
432
|
+
</tr>
|
|
433
|
+
<tr class="b">
|
|
434
|
+
<td>excludedClasses</td>
|
|
435
|
+
<td>pattern for qualified names of classes which are allowed
|
|
436
|
+
to have a main method.</td>
|
|
437
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
438
|
+
<td><tt>^$</tt></td>
|
|
439
|
+
</tr>
|
|
440
|
+
</table>
|
|
441
|
+
</div>
|
|
442
|
+
|
|
443
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
444
|
+
<p>
|
|
445
|
+
To configure the check:
|
|
446
|
+
</p>
|
|
447
|
+
<div class="source"><pre>
|
|
448
|
+
<module name="UncommentedMain"/>
|
|
449
|
+
</pre></div>
|
|
450
|
+
|
|
451
|
+
<p>
|
|
452
|
+
To configure the check to allow main method for all classes
|
|
453
|
+
with "Main" name:
|
|
454
|
+
</p>
|
|
455
|
+
<div class="source"><pre>
|
|
456
|
+
<module name="UncommentedMain">
|
|
457
|
+
<property name="excludedClasses" value="\.Main$"/>
|
|
458
|
+
</module>
|
|
459
|
+
</pre></div>
|
|
460
|
+
</div>
|
|
461
|
+
|
|
462
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
463
|
+
<p>
|
|
464
|
+
com.puppycrawl.tools.checkstyle.checks
|
|
465
|
+
</p>
|
|
466
|
+
</div>
|
|
467
|
+
|
|
468
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
469
|
+
<p>
|
|
470
|
+
<a href="config.html#TreeWalker">TreeWalker</a>
|
|
471
|
+
</p>
|
|
472
|
+
</div>
|
|
473
|
+
</div>
|
|
474
|
+
|
|
475
|
+
<div class="section"><h2>UpperEll<a name="UpperEll"></a></h2>
|
|
476
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
477
|
+
<p>
|
|
478
|
+
Checks that long constants are defined with an upper ell. That
|
|
479
|
+
is <tt>' L'</tt> and not <tt>'l'</tt>. This is in accordance to the Java
|
|
480
|
+
Language Specification, <a class="externalLink" href="http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html#48282">
|
|
481
|
+
Section 3.10.1</a>.
|
|
482
|
+
</p>
|
|
483
|
+
|
|
484
|
+
<p>
|
|
485
|
+
looks a lot like <tt>1</tt>.
|
|
486
|
+
</p>
|
|
487
|
+
</div>
|
|
488
|
+
|
|
489
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
490
|
+
<p>
|
|
491
|
+
To configure the check:
|
|
492
|
+
</p>
|
|
493
|
+
<div class="source"><pre>
|
|
494
|
+
<module name="UpperEll"/>
|
|
495
|
+
</pre></div>
|
|
496
|
+
</div>
|
|
497
|
+
|
|
498
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
499
|
+
<p>
|
|
500
|
+
com.puppycrawl.tools.checkstyle.checks
|
|
501
|
+
</p>
|
|
502
|
+
</div>
|
|
503
|
+
|
|
504
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
505
|
+
<p>
|
|
506
|
+
<a href="config.html#TreeWalker">TreeWalker</a>
|
|
507
|
+
</p>
|
|
508
|
+
</div>
|
|
509
|
+
</div>
|
|
510
|
+
|
|
511
|
+
<div class="section"><h2>ArrayTypeStyle<a name="ArrayTypeStyle"></a></h2>
|
|
512
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
513
|
+
<p>
|
|
514
|
+
Checks the style of array type definitions. Some like Java-style:
|
|
515
|
+
<tt>public static void main(String[] args)</tt> and some like
|
|
516
|
+
C-style: public static void main(String args[])
|
|
517
|
+
</p>
|
|
518
|
+
</div>
|
|
519
|
+
|
|
520
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
521
|
+
<table border="0" class="bodyTable">
|
|
522
|
+
<tr class="a">
|
|
523
|
+
<th>name</th>
|
|
524
|
+
<th>description</th>
|
|
525
|
+
<th>type</th>
|
|
526
|
+
<th>default value</th>
|
|
527
|
+
</tr>
|
|
528
|
+
<tr class="b">
|
|
529
|
+
<td>javaStyle</td>
|
|
530
|
+
<td>
|
|
531
|
+
Controls whether to enforce Java style (true) or C style (false).
|
|
532
|
+
</td>
|
|
533
|
+
<td><a href="property_types.html#boolean">Boolean</a></td>
|
|
534
|
+
<td><tt>true</tt></td>
|
|
535
|
+
</tr>
|
|
536
|
+
</table>
|
|
537
|
+
</div>
|
|
538
|
+
|
|
539
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
540
|
+
<p>
|
|
541
|
+
To configure the check to enforce Java style:
|
|
542
|
+
</p>
|
|
543
|
+
<div class="source"><pre>
|
|
544
|
+
<module name="ArrayTypeStyle"/>
|
|
545
|
+
</pre></div>
|
|
546
|
+
|
|
547
|
+
<p>
|
|
548
|
+
To configure the check to enforce C style:
|
|
549
|
+
</p>
|
|
550
|
+
<div class="source"><pre>
|
|
551
|
+
<module name="ArrayTypeStyle">
|
|
552
|
+
<property name="javaStyle" value="false"/>
|
|
553
|
+
</module>
|
|
554
|
+
</pre></div>
|
|
555
|
+
</div>
|
|
556
|
+
|
|
557
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
558
|
+
<p>
|
|
559
|
+
com.puppycrawl.tools.checkstyle.checks
|
|
560
|
+
</p>
|
|
561
|
+
</div>
|
|
562
|
+
|
|
563
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
564
|
+
<p>
|
|
565
|
+
<a href="config.html#TreeWalker">TreeWalker</a>
|
|
566
|
+
</p>
|
|
567
|
+
</div>
|
|
568
|
+
</div>
|
|
569
|
+
|
|
570
|
+
<div class="section"><h2>FinalParameters<a name="FinalParameters"></a></h2>
|
|
571
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
572
|
+
<p>
|
|
573
|
+
Check that method/constructor/catch block parameters are
|
|
574
|
+
final. Interface and abstract methods are not checked - the final
|
|
575
|
+
keyword does not make sense for interface and abstract method
|
|
576
|
+
parameters as there is no code that could modify the parameter.
|
|
577
|
+
</p>
|
|
578
|
+
|
|
579
|
+
<p>
|
|
580
|
+
Rationale: Changing the value of parameters during the execution of
|
|
581
|
+
the method's algorithm can be confusing and should be avoided. A
|
|
582
|
+
great way to let the Java compiler prevent this coding style is to
|
|
583
|
+
declare parameters final.
|
|
584
|
+
</p>
|
|
585
|
+
</div>
|
|
586
|
+
|
|
587
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
588
|
+
<table border="0" class="bodyTable">
|
|
589
|
+
<tr class="a">
|
|
590
|
+
<th>name</th>
|
|
591
|
+
<th>description</th>
|
|
592
|
+
<th>type</th>
|
|
593
|
+
<th>default value</th>
|
|
594
|
+
</tr>
|
|
595
|
+
<tr class="b">
|
|
596
|
+
<td>tokens</td>
|
|
597
|
+
<td>blocks to check</td>
|
|
598
|
+
|
|
599
|
+
<td>subset of tokens <a href="apidocs/com/puppycrawl/tools/checkstyle/api/TokenTypes.html#METHOD_DEF">METHOD_DEF</a>,
|
|
600
|
+
<a href="apidocs/com/puppycrawl/tools/checkstyle/api/TokenTypes.html#CTOR_DEF">CTOR_DEF</a>,
|
|
601
|
+
<a href="apidocs/com/puppycrawl/tools/checkstyle/api/TokenTypes.html#LITERAL_CATCH">LITERAL_CATCH</a></td>
|
|
602
|
+
|
|
603
|
+
<td><a href="apidocs/com/puppycrawl/tools/checkstyle/api/TokenTypes.html#METHOD_DEF">METHOD_DEF</a>,
|
|
604
|
+
<a href="apidocs/com/puppycrawl/tools/checkstyle/api/TokenTypes.html#CTOR_DEF">CTOR_DEF</a></td>
|
|
605
|
+
|
|
606
|
+
</tr>
|
|
607
|
+
</table>
|
|
608
|
+
</div>
|
|
609
|
+
|
|
610
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
611
|
+
<p>
|
|
612
|
+
To configure the check to enforce final parameters for methods and
|
|
613
|
+
constructors:
|
|
614
|
+
</p>
|
|
615
|
+
<div class="source"><pre>
|
|
616
|
+
<module name="FinalParameters"/>
|
|
617
|
+
</pre></div>
|
|
618
|
+
|
|
619
|
+
<p>
|
|
620
|
+
To configure the check to enforce final parameters only for
|
|
621
|
+
constructors:
|
|
622
|
+
</p>
|
|
623
|
+
<div class="source"><pre>
|
|
624
|
+
<module name="FinalParameters">
|
|
625
|
+
<property name="tokens" value="CTOR_DEF"/>
|
|
626
|
+
</module>
|
|
627
|
+
</pre></div>
|
|
628
|
+
</div>
|
|
629
|
+
|
|
630
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
631
|
+
<p>
|
|
632
|
+
com.puppycrawl.tools.checkstyle.checks
|
|
633
|
+
</p>
|
|
634
|
+
</div>
|
|
635
|
+
|
|
636
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
637
|
+
<p>
|
|
638
|
+
<a href="config.html#TreeWalker">TreeWalker</a>
|
|
639
|
+
</p>
|
|
640
|
+
</div>
|
|
641
|
+
</div>
|
|
642
|
+
|
|
643
|
+
<div class="section"><h2>DescendantToken<a name="DescendantToken"></a></h2>
|
|
644
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
645
|
+
<p>
|
|
646
|
+
Checks for restricted tokens beneath other tokens.
|
|
647
|
+
</p>
|
|
648
|
+
|
|
649
|
+
<p>
|
|
650
|
+
WARNING: This is a very powerful and flexible check, but, at the
|
|
651
|
+
same time, it is low level and very implementation dependent because
|
|
652
|
+
its results depend on the grammar we use to build abstract syntax
|
|
653
|
+
trees. Thus we recomend using other checks when they provide the
|
|
654
|
+
desired funcionality. All in all, this check just works on the level
|
|
655
|
+
of an abstract tree and knows nothing about language structures.
|
|
656
|
+
</p>
|
|
657
|
+
</div>
|
|
658
|
+
|
|
659
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
660
|
+
<table border="0" class="bodyTable">
|
|
661
|
+
<tr class="a">
|
|
662
|
+
<th>name</th>
|
|
663
|
+
<th>description</th>
|
|
664
|
+
<th>type</th>
|
|
665
|
+
<th>default value</th>
|
|
666
|
+
</tr>
|
|
667
|
+
<tr class="b">
|
|
668
|
+
<td>tokens</td>
|
|
669
|
+
<td>token types to check</td>
|
|
670
|
+
<td>subset of tokens declared in <a href="apidocs/com/puppycrawl/tools/checkstyle/api/TokenTypes.html">TokenTypes</a></td>
|
|
671
|
+
<td>empty set</td>
|
|
672
|
+
</tr>
|
|
673
|
+
<tr class="a">
|
|
674
|
+
<td>limitedTokens</td>
|
|
675
|
+
<td>set of tokens with limited occurances as descendants</td>
|
|
676
|
+
<td>subset of tokens declared in <a href="apidocs/com/puppycrawl/tools/checkstyle/api/TokenTypes.html">TokenTypes</a></td>
|
|
677
|
+
<td>empty set</td>
|
|
678
|
+
</tr>
|
|
679
|
+
<tr class="b">
|
|
680
|
+
<td>minimumDepth</td>
|
|
681
|
+
<td>the mimimum depth for descendant counts</td>
|
|
682
|
+
<td><a href="property_types.html#integer">Integer</a></td>
|
|
683
|
+
<td>0</td>
|
|
684
|
+
</tr>
|
|
685
|
+
<tr class="a">
|
|
686
|
+
<td>maximumDepth</td>
|
|
687
|
+
<td>the maximum depth for descendant counts</td>
|
|
688
|
+
<td><a href="property_types.html#integer">Integer</a></td>
|
|
689
|
+
<td>java.lang.Integer.MAX_VALUE</td>
|
|
690
|
+
</tr>
|
|
691
|
+
<tr class="b">
|
|
692
|
+
<td>minimumNumber</td>
|
|
693
|
+
<td>a minimum count for descendants</td>
|
|
694
|
+
<td><a href="property_types.html#integer">Integer</a></td>
|
|
695
|
+
<td>0</td>
|
|
696
|
+
</tr>
|
|
697
|
+
<tr class="a">
|
|
698
|
+
<td>maximumNumber</td>
|
|
699
|
+
<td>a maximum count for descendants</td>
|
|
700
|
+
<td><a href="property_types.html#integer">Integer</a></td>
|
|
701
|
+
<td>java.lang.Integer.MAX_VALUE</td>
|
|
702
|
+
</tr>
|
|
703
|
+
<tr class="b">
|
|
704
|
+
<td>sumTokenCounts</td>
|
|
705
|
+
<td>
|
|
706
|
+
whether the number of tokens found should be calculated
|
|
707
|
+
from the sum of the individual token counts
|
|
708
|
+
</td>
|
|
709
|
+
<td><a href="property_types.html#boolean">Boolean</a></td>
|
|
710
|
+
<td><tt>false</tt></td>
|
|
711
|
+
</tr>
|
|
712
|
+
<tr class="a">
|
|
713
|
+
<td>minimumMessage</td>
|
|
714
|
+
<td>error message when minimum count not reached</td>
|
|
715
|
+
<td><a href="property_types.html#string">String</a></td>
|
|
716
|
+
<td>"descendant.token.min"</td>
|
|
717
|
+
</tr>
|
|
718
|
+
<tr class="b">
|
|
719
|
+
<td>maximumMessage</td>
|
|
720
|
+
<td>error message when maximum count exceeded</td>
|
|
721
|
+
<td><a href="property_types.html#string">String</a></td>
|
|
722
|
+
<td>"descendant.token.max"</td>
|
|
723
|
+
</tr>
|
|
724
|
+
</table>
|
|
725
|
+
</div>
|
|
726
|
+
|
|
727
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
728
|
+
<p>
|
|
729
|
+
Comparing <tt>this</tt> with <tt>null</tt> (i.e. <tt>this ==
|
|
730
|
+
null</tt> and <tt>this != null</tt>):
|
|
731
|
+
</p>
|
|
732
|
+
<div class="source"><pre>
|
|
733
|
+
<module name="DescendantToken">
|
|
734
|
+
<property name="tokens" value="EQUAL,NOT_EQUAL"/>
|
|
735
|
+
<property name="limitedTokens" value="LITERAL_THIS,LITERAL_NULL"/>
|
|
736
|
+
<property name="maximumNumber" value="1"/>
|
|
737
|
+
<property name="maximumDepth" value="1"/>
|
|
738
|
+
<property name="sumTokenCounts" value="true"/>
|
|
739
|
+
</module>
|
|
740
|
+
</pre></div>
|
|
741
|
+
|
|
742
|
+
<p>String literal equality check:</p>
|
|
743
|
+
<div class="source"><pre>
|
|
744
|
+
<module name="DescendantToken">
|
|
745
|
+
<property name="tokens" value="EQUAL,NOT_EQUAL"/>
|
|
746
|
+
<property name="limitedTokens" value="STRING_LITERAL"/>
|
|
747
|
+
<property name="maximumNumber" value="0"/>
|
|
748
|
+
<property name="maximumDepth" value="1"/>
|
|
749
|
+
</module>
|
|
750
|
+
</pre></div>
|
|
751
|
+
|
|
752
|
+
<p>Switch with no default:</p>
|
|
753
|
+
<div class="source"><pre>
|
|
754
|
+
<module name="DescendantToken">
|
|
755
|
+
<property name="tokens" value="LITERAL_SWITCH"/>
|
|
756
|
+
<property name="maximumDepth" value="2"/>
|
|
757
|
+
<property name="limitedTokens" value="LITERAL_DEFAULT"/>
|
|
758
|
+
<property name="minimumNumber" value="1"/>
|
|
759
|
+
</module>
|
|
760
|
+
</pre></div>
|
|
761
|
+
|
|
762
|
+
<p>
|
|
763
|
+
Assert statement may have side effects (formatted for browser
|
|
764
|
+
display):
|
|
765
|
+
</p>
|
|
766
|
+
<div class="source"><pre>
|
|
767
|
+
<module name="DescendantToken">
|
|
768
|
+
<property name="tokens" value="LITERAL_ASSERT"/>
|
|
769
|
+
<property name="limitedTokens" value="ASSIGN,DEC,INC,POST_DEC,
|
|
770
|
+
POST_INC,PLUS_ASSIGN,MINUS_ASSIGN,STAR_ASSIGN,DIV_ASSIGN,MOD_ASSIGN,
|
|
771
|
+
BSR_ASSIGN,SR_ASSIGN,SL_ASSIGN,BAND_ASSIGN,BXOR_ASSIGN,BOR_ASSIGN,
|
|
772
|
+
METHOD_CALL"/>
|
|
773
|
+
<property name="maximumNumber" value="0"/>
|
|
774
|
+
</module>
|
|
775
|
+
</pre></div>
|
|
776
|
+
|
|
777
|
+
<p>
|
|
778
|
+
Initialiser in for performs no setup (use while instead?):
|
|
779
|
+
</p>
|
|
780
|
+
<div class="source"><pre>
|
|
781
|
+
<module name="DescendantToken">
|
|
782
|
+
<property name="tokens" value="FOR_INIT"/>
|
|
783
|
+
<property name="limitedTokens" value="EXPR"/>
|
|
784
|
+
<property name="minimumNumber" value="1"/>
|
|
785
|
+
</module>
|
|
786
|
+
</pre></div>
|
|
787
|
+
|
|
788
|
+
<p>
|
|
789
|
+
Condition in for performs no check:
|
|
790
|
+
</p>
|
|
791
|
+
<div class="source"><pre>
|
|
792
|
+
<module name="DescendantToken">
|
|
793
|
+
<property name="tokens" value="FOR_CONDITION"/>
|
|
794
|
+
<property name="limitedTokens" value="EXPR"/>
|
|
795
|
+
<property name="minimumNumber" value="1"/>
|
|
796
|
+
</module>
|
|
797
|
+
</pre></div>
|
|
798
|
+
|
|
799
|
+
<p>
|
|
800
|
+
Switch within switch:
|
|
801
|
+
</p>
|
|
802
|
+
<div class="source"><pre>
|
|
803
|
+
<module name="DescendantToken">
|
|
804
|
+
<property name="tokens" value="LITERAL_SWITCH"/>
|
|
805
|
+
<property name="limitedTokens" value="LITERAL_SWITCH"/>
|
|
806
|
+
<property name="maximumNumber" value="0"/>
|
|
807
|
+
<property name="minimumDepth" value="1"/>
|
|
808
|
+
</module>
|
|
809
|
+
</pre></div>
|
|
810
|
+
|
|
811
|
+
<p>Return from within a catch or finally block:</p>
|
|
812
|
+
<div class="source"><pre>
|
|
813
|
+
<module name="DescendantToken">
|
|
814
|
+
<property name="tokens" value="LITERAL_FINALLY,LITERAL_CATCH"/>
|
|
815
|
+
<property name="limitedTokens" value="LITERAL_RETURN"/>
|
|
816
|
+
<property name="maximumNumber" value="0"/>
|
|
817
|
+
</module>
|
|
818
|
+
</pre></div>
|
|
819
|
+
|
|
820
|
+
<p>Try within catch or finally block:</p>
|
|
821
|
+
<div class="source"><pre>
|
|
822
|
+
<module name="DescendantToken">
|
|
823
|
+
<property name="tokens" value="LITERAL_CATCH,LITERAL_FINALLY"/>
|
|
824
|
+
<property name="limitedTokens" value="LITERAL_TRY"/>
|
|
825
|
+
<property name="maximumNumber" value="0"/>
|
|
826
|
+
</module>
|
|
827
|
+
</pre></div>
|
|
828
|
+
|
|
829
|
+
<p>Too many cases within a switch:</p>
|
|
830
|
+
<div class="source"><pre>
|
|
831
|
+
<module name="DescendantToken">
|
|
832
|
+
<property name="tokens" value="LITERAL_SWITCH"/>
|
|
833
|
+
<property name="limitedTokens" value="LITERAL_CASE"/>
|
|
834
|
+
<property name="maximumDepth" value="2"/>
|
|
835
|
+
<property name="maximumNumber" value="10"/>
|
|
836
|
+
</module>
|
|
837
|
+
</pre></div>
|
|
838
|
+
|
|
839
|
+
<p>Too many local variables within a method:</p>
|
|
840
|
+
<div class="source"><pre>
|
|
841
|
+
<module name="DescendantToken">
|
|
842
|
+
<property name="tokens" value="METHOD_DEF"/>
|
|
843
|
+
<property name="limitedTokens" value="VARIABLE_DEF"/>
|
|
844
|
+
<property name="maximumDepth" value="2"/>
|
|
845
|
+
<property name="maximumNumber" value="10"/>
|
|
846
|
+
</module>
|
|
847
|
+
</pre></div>
|
|
848
|
+
|
|
849
|
+
<p>Too many returns from within a method:</p>
|
|
850
|
+
<div class="source"><pre>
|
|
851
|
+
<module name="DescendantToken">
|
|
852
|
+
<property name="tokens" value="METHOD_DEF"/>
|
|
853
|
+
<property name="limitedTokens" value="LITERAL_RETURN"/>
|
|
854
|
+
<property name="maximumNumber" value="3"/>
|
|
855
|
+
</module>
|
|
856
|
+
</pre></div>
|
|
857
|
+
|
|
858
|
+
<p>Too many fields within an interface:</p>
|
|
859
|
+
<div class="source"><pre>
|
|
860
|
+
<module name="DescendantToken">
|
|
861
|
+
<property name="tokens" value="INTERFACE_DEF"/>
|
|
862
|
+
<property name="limitedTokens" value="VARIABLE_DEF"/>
|
|
863
|
+
<property name="maximumDepth" value="2"/>
|
|
864
|
+
<property name="maximumNumber" value="0"/>
|
|
865
|
+
</module>
|
|
866
|
+
</pre></div>
|
|
867
|
+
|
|
868
|
+
<p>Limit the number of exceptions a method can throw:</p>
|
|
869
|
+
<div class="source"><pre>
|
|
870
|
+
<module name="DescendantToken">
|
|
871
|
+
<property name="tokens" value="LITERAL_THROWS"/>
|
|
872
|
+
<property name="limitedTokens" value="IDENT"/>
|
|
873
|
+
<property name="maximumNumber" value="1"/>
|
|
874
|
+
</module>
|
|
875
|
+
</pre></div>
|
|
876
|
+
|
|
877
|
+
<p>Limit the number of expressions in a method:</p>
|
|
878
|
+
<div class="source"><pre>
|
|
879
|
+
<module name="DescendantToken">
|
|
880
|
+
<property name="tokens" value="METHOD_DEF"/>
|
|
881
|
+
<property name="limitedTokens" value="EXPR"/>
|
|
882
|
+
<property name="maximumNumber" value="200"/>
|
|
883
|
+
</module>
|
|
884
|
+
</pre></div>
|
|
885
|
+
|
|
886
|
+
<p>Disallow empty statements:</p>
|
|
887
|
+
<div class="source"><pre>
|
|
888
|
+
<module name="DescendantToken">
|
|
889
|
+
<property name="tokens" value="EMPTY_STAT"/>
|
|
890
|
+
<property name="limitedTokens" value="EMPTY_STAT"/>
|
|
891
|
+
<property name="maximumNumber" value="0"/>
|
|
892
|
+
<property name="maximumDepth" value="0"/>
|
|
893
|
+
<property name="maximumMessage"
|
|
894
|
+
value="Empty statement is not allowed."/>
|
|
895
|
+
</module>
|
|
896
|
+
</pre></div>
|
|
897
|
+
|
|
898
|
+
<p>Too many fields within a class:</p>
|
|
899
|
+
<div class="source"><pre>
|
|
900
|
+
<module name="DescendantToken">
|
|
901
|
+
<property name="tokens" value="CLASS_DEF"/>
|
|
902
|
+
<property name="limitedTokens" value="VARIABLE_DEF"/>
|
|
903
|
+
<property name="maximumDepth" value="2"/>
|
|
904
|
+
<property name="maximumNumber" value="10"/>
|
|
905
|
+
</module>
|
|
906
|
+
</pre></div>
|
|
907
|
+
</div>
|
|
908
|
+
|
|
909
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
910
|
+
<p>
|
|
911
|
+
com.puppycrawl.tools.checkstyle.checks
|
|
912
|
+
</p>
|
|
913
|
+
</div>
|
|
914
|
+
|
|
915
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
916
|
+
<p>
|
|
917
|
+
<a href="config.html#TreeWalker">TreeWalker</a>
|
|
918
|
+
</p>
|
|
919
|
+
</div>
|
|
920
|
+
</div>
|
|
921
|
+
|
|
922
|
+
<div class="section"><h2>Indentation<a name="Indentation"></a></h2>
|
|
923
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
924
|
+
<p>
|
|
925
|
+
Checks correct indentation of Java Code.
|
|
926
|
+
</p>
|
|
927
|
+
|
|
928
|
+
<p>
|
|
929
|
+
The basic idea behind this is that while pretty printers are
|
|
930
|
+
sometimes convienent for bulk reformats of legacy code, they often
|
|
931
|
+
either aren't configurable enough or just can't anticipate how
|
|
932
|
+
format should be done. Sometimes this is personal preference, other
|
|
933
|
+
times it is practical experience. In any case, this check should
|
|
934
|
+
just ensure that a minimal set of indentation rules are followed.
|
|
935
|
+
</p>
|
|
936
|
+
</div>
|
|
937
|
+
|
|
938
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
939
|
+
<table border="0" class="bodyTable">
|
|
940
|
+
<tr class="a">
|
|
941
|
+
<th>name</th>
|
|
942
|
+
<th>description</th>
|
|
943
|
+
<th>type</th>
|
|
944
|
+
<th>default value</th>
|
|
945
|
+
</tr>
|
|
946
|
+
<tr class="b">
|
|
947
|
+
<td>basicOffset</td>
|
|
948
|
+
<td>how many spaces to use for new indentation level</td>
|
|
949
|
+
<td><a href="property_types.html#integer">Integer</a></td>
|
|
950
|
+
<td>4</td>
|
|
951
|
+
</tr>
|
|
952
|
+
<tr class="a">
|
|
953
|
+
<td>braceAdjustment</td>
|
|
954
|
+
<td>how far brace should be indented when on next line</td>
|
|
955
|
+
<td><a href="property_types.html#integer">Integer</a></td>
|
|
956
|
+
<td>0</td>
|
|
957
|
+
</tr>
|
|
958
|
+
<tr class="b">
|
|
959
|
+
<td>caseIndent</td>
|
|
960
|
+
<td>how much to indent a case label</td>
|
|
961
|
+
<td><a href="property_types.html#integer">Integer</a></td>
|
|
962
|
+
<td>4</td>
|
|
963
|
+
</tr>
|
|
964
|
+
</table>
|
|
965
|
+
</div>
|
|
966
|
+
|
|
967
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
968
|
+
<p>
|
|
969
|
+
To configure the check:
|
|
970
|
+
</p>
|
|
971
|
+
<div class="source"><pre>
|
|
972
|
+
<module name="Indentation"/>
|
|
973
|
+
</pre></div>
|
|
974
|
+
|
|
975
|
+
<p>
|
|
976
|
+
To configure the check to enforce indentation style recommended by
|
|
977
|
+
Sun:
|
|
978
|
+
</p>
|
|
979
|
+
|
|
980
|
+
<div class="source"><pre>
|
|
981
|
+
<module name="Indentation">
|
|
982
|
+
<property name="caseIndent" value="0"/>
|
|
983
|
+
</module>
|
|
984
|
+
</pre></div>
|
|
985
|
+
</div>
|
|
986
|
+
|
|
987
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
988
|
+
<p>
|
|
989
|
+
com.puppycrawl.tools.checkstyle.checks.indentation
|
|
990
|
+
</p>
|
|
991
|
+
</div>
|
|
992
|
+
|
|
993
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
994
|
+
<p>
|
|
995
|
+
<a href="config.html#TreeWalker">TreeWalker</a>
|
|
996
|
+
</p>
|
|
997
|
+
</div>
|
|
998
|
+
</div>
|
|
999
|
+
|
|
1000
|
+
<div class="section"><h2>TrailingComment<a name="TrailingComment"></a></h2>
|
|
1001
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
1002
|
+
<p>
|
|
1003
|
+
The check to ensure that requires that comments be the only thing on
|
|
1004
|
+
a line. For the case of // comments that means that the only thing
|
|
1005
|
+
that should precede it is whitespace. It doesn't check comments if
|
|
1006
|
+
they do not end line, i.e. it accept the following:
|
|
1007
|
+
<tt>Thread.sleep( 10 <some comment here> );</tt> Format
|
|
1008
|
+
property is intended to deal with the "} // while" example.
|
|
1009
|
+
</p>
|
|
1010
|
+
|
|
1011
|
+
<p>
|
|
1012
|
+
Rationale: Steve McConnel in "Code Complete" suggests that
|
|
1013
|
+
endline comments are a bad practice. An end line comment would be
|
|
1014
|
+
one that is on the same line as actual code. For example:
|
|
1015
|
+
</p>
|
|
1016
|
+
|
|
1017
|
+
<div class="source"><pre>
|
|
1018
|
+
a = b + c; // Some insightful comment
|
|
1019
|
+
d = e / f; // Another comment for this line
|
|
1020
|
+
</pre></div>
|
|
1021
|
+
|
|
1022
|
+
<p>
|
|
1023
|
+
Quoting "Code Complete" for the justfication:
|
|
1024
|
+
</p>
|
|
1025
|
+
|
|
1026
|
+
<ul>
|
|
1027
|
+
<li> "The comments have to be aligned so that they do not
|
|
1028
|
+
interfere with the visual structure of the code. If you don't align
|
|
1029
|
+
them neatly, they'll make your listing look like it's been through a
|
|
1030
|
+
washing machine."
|
|
1031
|
+
</li>
|
|
1032
|
+
<li> "Endline comments tend to be hard to format...It takes
|
|
1033
|
+
time to align them. Such time is not spent learning more about the
|
|
1034
|
+
code; it's dedicated solely to the tedious task of pressing the
|
|
1035
|
+
spacebar or tab key."
|
|
1036
|
+
</li>
|
|
1037
|
+
<li> "Endline comments are also hard to maintain. If the code
|
|
1038
|
+
on any line containing an endline comment grows, it bumps the
|
|
1039
|
+
comment farther out, and all the other endline comments will have to
|
|
1040
|
+
bumped out to match. Styles that are hard to maintain aren't
|
|
1041
|
+
maintained...."
|
|
1042
|
+
</li>
|
|
1043
|
+
<li> "Endline comments also tend to be cryptic. The right side
|
|
1044
|
+
of the line doesn't offer much room and the desire to keep the
|
|
1045
|
+
comment on one line means the comment must be short. Work then goes
|
|
1046
|
+
into making the line as short as possible instead of as clear as
|
|
1047
|
+
possible. The comment usually ends up as cryptic as
|
|
1048
|
+
possible...."
|
|
1049
|
+
</li>
|
|
1050
|
+
<li> "A systemic problem with endline comments is that it's
|
|
1051
|
+
hard to write a meaningful comment for one line of code. Most
|
|
1052
|
+
endline comments just repeat the line of code, which hurts more than
|
|
1053
|
+
it helps."
|
|
1054
|
+
</li>
|
|
1055
|
+
</ul>
|
|
1056
|
+
|
|
1057
|
+
<p>
|
|
1058
|
+
His comments on being hard to maintain when the size of the line
|
|
1059
|
+
changes are even more important in the age of automated
|
|
1060
|
+
refactorings.
|
|
1061
|
+
</p>
|
|
1062
|
+
</div>
|
|
1063
|
+
|
|
1064
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
1065
|
+
<table border="0" class="bodyTable">
|
|
1066
|
+
<tr class="a">
|
|
1067
|
+
<th>name</th>
|
|
1068
|
+
<th>description</th>
|
|
1069
|
+
<th>type</th>
|
|
1070
|
+
<th>default value</th>
|
|
1071
|
+
</tr>
|
|
1072
|
+
<tr class="b">
|
|
1073
|
+
<td>format</td>
|
|
1074
|
+
<td>pattern for string allowed before comment.</td>
|
|
1075
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
1076
|
+
<td><tt>^[\\s\\}\\);]*$</tt></td>
|
|
1077
|
+
</tr>
|
|
1078
|
+
<tr class="a">
|
|
1079
|
+
<td>legalComment</td>
|
|
1080
|
+
<td>pattern for text of trailing comment which is allowed. (this
|
|
1081
|
+
patter will not be applied to multiline comments and text of
|
|
1082
|
+
comment will be trimmed before matching)</td>
|
|
1083
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
1084
|
+
<td>(not set)</td>
|
|
1085
|
+
</tr>
|
|
1086
|
+
</table>
|
|
1087
|
+
</div>
|
|
1088
|
+
|
|
1089
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
1090
|
+
<p>
|
|
1091
|
+
To configure the check:
|
|
1092
|
+
</p>
|
|
1093
|
+
<div class="source"><pre>
|
|
1094
|
+
<module name="TrailingComment"/>
|
|
1095
|
+
</pre></div>
|
|
1096
|
+
|
|
1097
|
+
<p>
|
|
1098
|
+
To configure the check so it enforces only comment on a line:
|
|
1099
|
+
</p>
|
|
1100
|
+
<div class="source"><pre>
|
|
1101
|
+
<module name="TrailingComment">
|
|
1102
|
+
<property name="format" value="^\\s*$"/>
|
|
1103
|
+
</module>
|
|
1104
|
+
</pre></div>
|
|
1105
|
+
</div>
|
|
1106
|
+
|
|
1107
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
1108
|
+
<p>
|
|
1109
|
+
com.puppycrawl.tools.checkstyle.checks.indentation
|
|
1110
|
+
</p>
|
|
1111
|
+
</div>
|
|
1112
|
+
|
|
1113
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
1114
|
+
<p>
|
|
1115
|
+
<a href="config.html#TreeWalker">TreeWalker</a>
|
|
1116
|
+
</p>
|
|
1117
|
+
</div>
|
|
1118
|
+
</div>
|
|
1119
|
+
|
|
1120
|
+
<div class="section"><h2>Regexp<a name="Regexp"></a></h2>
|
|
1121
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
1122
|
+
<p>
|
|
1123
|
+
A check that makes sure that a specified pattern exists, exists less
|
|
1124
|
+
than a set number of times, or does not exist in the file.
|
|
1125
|
+
</p>
|
|
1126
|
+
<p>
|
|
1127
|
+
This check combines all the functionality provided by
|
|
1128
|
+
<a href="config_header.html#RegexpHeader">RegexpHeader</a>,
|
|
1129
|
+
<a href="config_misc.html#GenericIllegalRegexp">GenericIllegalRegexp</a>
|
|
1130
|
+
and <a href="config_misc.html#RequiredRegexp">RequiredRegexp</a>,
|
|
1131
|
+
except supplying the regular expression from a file.
|
|
1132
|
+
</p>
|
|
1133
|
+
<p>
|
|
1134
|
+
It differs from them in that it works in multiline mode.
|
|
1135
|
+
It's regular expression can span multiple lines and it checks this
|
|
1136
|
+
against the whole file at once.
|
|
1137
|
+
The others work in singleline mode.
|
|
1138
|
+
Their single or multiple regular expressions can only span one line.
|
|
1139
|
+
They check each of these against each line in the file in turn.
|
|
1140
|
+
</p>
|
|
1141
|
+
<p>
|
|
1142
|
+
<b>Note:</b> Because of the different mode of operation there may be
|
|
1143
|
+
some changes in the regular expressions used to achieve a particular end.
|
|
1144
|
+
</p>
|
|
1145
|
+
<p>In multiline mode...</p>
|
|
1146
|
+
<ul>
|
|
1147
|
+
<li> ^ means beginning of a line, as oposed to beginning of input.</li>
|
|
1148
|
+
<li> For beginning of input use \A.</li>
|
|
1149
|
+
<li> $ means end of a line, as oposed to end of input.</li>
|
|
1150
|
+
<li> For end of input use \Z.</li>
|
|
1151
|
+
<li> Each line in the file is terminated with a newline character.</li>
|
|
1152
|
+
</ul>
|
|
1153
|
+
<p>
|
|
1154
|
+
<b>Note:</b> Not all regexp engines are created equal. Some provide extra
|
|
1155
|
+
functions that others do not and some elements of the syntax may vary.
|
|
1156
|
+
This check makes use of the <a class="externalLink" href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/package-summary.html">
|
|
1157
|
+
java.util.regex package</a>, please check its documentation for
|
|
1158
|
+
details of how to construct a regular expression to achive a particular
|
|
1159
|
+
goal.
|
|
1160
|
+
</p>
|
|
1161
|
+
<p>
|
|
1162
|
+
<b>Note:</b> When entering a regular expression as a parameter in the
|
|
1163
|
+
xml config file you must also take into account the xml rules. e.g. if
|
|
1164
|
+
you want to match a < symbol you need to enter &lt;. The regular
|
|
1165
|
+
expression should be entered on one line.
|
|
1166
|
+
</p>
|
|
1167
|
+
</div>
|
|
1168
|
+
|
|
1169
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
1170
|
+
<table border="0" class="bodyTable">
|
|
1171
|
+
<tr class="a">
|
|
1172
|
+
<th>name</th>
|
|
1173
|
+
<th>description</th>
|
|
1174
|
+
<th>type</th>
|
|
1175
|
+
<th>default value</th>
|
|
1176
|
+
</tr>
|
|
1177
|
+
<tr class="b">
|
|
1178
|
+
<td>format</td>
|
|
1179
|
+
<td>pattern</td>
|
|
1180
|
+
<td><a href="property_types.html#regexp">regular expression</a></td>
|
|
1181
|
+
<td><tt>$^</tt> (empty)</td>
|
|
1182
|
+
</tr>
|
|
1183
|
+
<tr class="a">
|
|
1184
|
+
<td>message</td>
|
|
1185
|
+
<td>message which is used to notify about violations,
|
|
1186
|
+
if empty then default(hard-coded) message is used.</td>
|
|
1187
|
+
<td><a href="property_types.html#string">String</a></td>
|
|
1188
|
+
<td><tt>""</tt>(empty)</td>
|
|
1189
|
+
</tr>
|
|
1190
|
+
<tr class="b">
|
|
1191
|
+
<td>illegalPattern</td>
|
|
1192
|
+
<td>Controls whether the pattern is required or illegal.</td>
|
|
1193
|
+
<td><a href="property_types.html#boolean">Boolean</a></td>
|
|
1194
|
+
<td><tt>false</tt></td>
|
|
1195
|
+
</tr>
|
|
1196
|
+
<tr class="a">
|
|
1197
|
+
<td>duplicateLimit</td>
|
|
1198
|
+
<td>Controls whether to check for duplicates of a required pattern,
|
|
1199
|
+
any negative value means no checking for duplicates, any positive
|
|
1200
|
+
value is used as the maximum number of allowed duplicates, if the
|
|
1201
|
+
limit is exceeded errors will be logged.</td>
|
|
1202
|
+
<td><a href="property_types.html#integer">Integer</a></td>
|
|
1203
|
+
<td><tt>-1</tt></td>
|
|
1204
|
+
</tr>
|
|
1205
|
+
<tr class="b">
|
|
1206
|
+
<td>errorLimit</td>
|
|
1207
|
+
<td>Controls the maximum number of errors before the check will abort.</td>
|
|
1208
|
+
<td><a href="property_types.html#integer">Integer</a></td>
|
|
1209
|
+
<td><tt>100</tt></td>
|
|
1210
|
+
</tr>
|
|
1211
|
+
<tr class="a">
|
|
1212
|
+
<td>ignoreComments</td>
|
|
1213
|
+
<td>Controls whether to ignore matches found within comments.</td>
|
|
1214
|
+
<td><a href="property_types.html#boolean">Boolean</a></td>
|
|
1215
|
+
<td><tt>false</tt></td>
|
|
1216
|
+
</tr>
|
|
1217
|
+
</table>
|
|
1218
|
+
</div>
|
|
1219
|
+
|
|
1220
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
1221
|
+
<p>
|
|
1222
|
+
The following examples are mainly copied from the other 3 checks
|
|
1223
|
+
mentioned above, to show how the same results can be acheived using
|
|
1224
|
+
this check in place of them.
|
|
1225
|
+
</p>
|
|
1226
|
+
<p>
|
|
1227
|
+
<b>To use like <a href="config_misc.html#RequiredRegexp">RequiredRegexp
|
|
1228
|
+
</a>:</b>
|
|
1229
|
+
</p>
|
|
1230
|
+
<p>
|
|
1231
|
+
An example of how to configure the check to make sure a copyright
|
|
1232
|
+
statement is included in the file:
|
|
1233
|
+
</p>
|
|
1234
|
+
<p> The statement. </p>
|
|
1235
|
+
<div class="source"><pre>
|
|
1236
|
+
// This code is copyrighted
|
|
1237
|
+
</pre></div>
|
|
1238
|
+
<p> The check. </p>
|
|
1239
|
+
<div class="source"><pre>
|
|
1240
|
+
<module name="Regexp">
|
|
1241
|
+
<property name="format" value="// This code is copyrighted"/>
|
|
1242
|
+
</module>
|
|
1243
|
+
</pre></div>
|
|
1244
|
+
<p> Your statement may be multiline. </p>
|
|
1245
|
+
<div class="source"><pre>
|
|
1246
|
+
// This code is copyrighted
|
|
1247
|
+
// (c) MyCompany
|
|
1248
|
+
</pre></div>
|
|
1249
|
+
<p> Then the check would be. </p>
|
|
1250
|
+
<div class="source"><pre>
|
|
1251
|
+
<module name="Regexp">
|
|
1252
|
+
<property name="format" value="// This code is copyrighted\n// \(c\) MyCompany"/>
|
|
1253
|
+
</module>
|
|
1254
|
+
</pre></div>
|
|
1255
|
+
<p><b>Note:</b> To search for parentheses () in a regular expression
|
|
1256
|
+
you must escape them like \(\). This is required by the regexp engine,
|
|
1257
|
+
otherwise it will think they are special instruction characters.
|
|
1258
|
+
</p>
|
|
1259
|
+
<p>
|
|
1260
|
+
And to make sure it appears only once:
|
|
1261
|
+
</p>
|
|
1262
|
+
<div class="source"><pre>
|
|
1263
|
+
<module name="Regexp">
|
|
1264
|
+
<property name="format" value="// This code is copyrighted\n// \(c\) MyCompany"/>
|
|
1265
|
+
<property name="duplicateLimit" value="0"/>
|
|
1266
|
+
</module>
|
|
1267
|
+
</pre></div>
|
|
1268
|
+
<p>
|
|
1269
|
+
It can also be useful to attach a meaningful message to the check:
|
|
1270
|
+
</p>
|
|
1271
|
+
<div class="source"><pre>
|
|
1272
|
+
<module name="Regexp">
|
|
1273
|
+
<property name="format" value="// This code is copyrighted\n// \(c\) MyCompany"/>
|
|
1274
|
+
<property name="message" value="Copyright"/>
|
|
1275
|
+
</module>
|
|
1276
|
+
</pre></div>
|
|
1277
|
+
<p>
|
|
1278
|
+
<b>To use like <a href="config_misc.html#GenericIllegalRegexp">GenericIllegalRegexp
|
|
1279
|
+
</a>:</b>
|
|
1280
|
+
</p>
|
|
1281
|
+
<p>
|
|
1282
|
+
An example of how to configure the check to make sure there are no
|
|
1283
|
+
calls to <tt>System.out.println</tt>:
|
|
1284
|
+
</p>
|
|
1285
|
+
<div class="source"><pre>
|
|
1286
|
+
<module name="Regexp">
|
|
1287
|
+
<!-- . matches any character, so we need to escape it and use \. to match dots. -->
|
|
1288
|
+
<property name="format" value="System\.out\.println"/>
|
|
1289
|
+
<property name="illegalPattern" value="true"/>
|
|
1290
|
+
</module>
|
|
1291
|
+
</pre></div>
|
|
1292
|
+
<p>
|
|
1293
|
+
You may want to make the above check ignore comments, like this:
|
|
1294
|
+
</p>
|
|
1295
|
+
<div class="source"><pre>
|
|
1296
|
+
<module name="Regexp">
|
|
1297
|
+
<property name="format" value="System\.out\.println"/>
|
|
1298
|
+
<property name="illegalPattern" value="true"/>
|
|
1299
|
+
<property name="ignoreComments" value="true"/>
|
|
1300
|
+
</module>
|
|
1301
|
+
</pre></div>
|
|
1302
|
+
<p>
|
|
1303
|
+
An example of how to configure the check to find trailing whitespace
|
|
1304
|
+
at the end of a line:
|
|
1305
|
+
</p>
|
|
1306
|
+
<div class="source"><pre>
|
|
1307
|
+
<module name="Regexp">
|
|
1308
|
+
<property name="format" value="[ \t]+$"/>
|
|
1309
|
+
<property name="illegalPattern" value="true"/>
|
|
1310
|
+
<property name="message" value="Trailing whitespace"/>
|
|
1311
|
+
</module>
|
|
1312
|
+
</pre></div>
|
|
1313
|
+
<p>
|
|
1314
|
+
<b>Note:</b> The difference between this and the example given for
|
|
1315
|
+
<a href="config_misc.html#genericIllegalRegexp">GenericIllegalRegexp</a>
|
|
1316
|
+
is necessary because \s and $ both match the newline character ("\n").
|
|
1317
|
+
</p>
|
|
1318
|
+
<p>
|
|
1319
|
+
An example of how to configure the check to find case-insensitive
|
|
1320
|
+
occurrences of "debug":
|
|
1321
|
+
</p>
|
|
1322
|
+
<div class="source"><pre>
|
|
1323
|
+
<module name="Regexp">
|
|
1324
|
+
<property name="format" value="(?i)debug"/>
|
|
1325
|
+
<property name="illegalPattern" value="true"/>
|
|
1326
|
+
</module>
|
|
1327
|
+
</pre></div>
|
|
1328
|
+
<p>
|
|
1329
|
+
<b>Note:</b> The (?i) at the beginning of the regular expression
|
|
1330
|
+
tells the regexp engine to ignore the case.
|
|
1331
|
+
</p>
|
|
1332
|
+
<p>
|
|
1333
|
+
There is also a feature to limit the number of errors reported.
|
|
1334
|
+
When the limit is reached the check aborts with a message
|
|
1335
|
+
reporting that the limit has been reached.
|
|
1336
|
+
The default limit setting is 100, but this can be change as shown in
|
|
1337
|
+
the following example.
|
|
1338
|
+
</p>
|
|
1339
|
+
<div class="source"><pre>
|
|
1340
|
+
<module name="Regexp">
|
|
1341
|
+
<property name="format" value="(?i)debug"/>
|
|
1342
|
+
<property name="illegalPattern" value="true"/>
|
|
1343
|
+
<property name="errorLimit" value="1000"/>
|
|
1344
|
+
</module>
|
|
1345
|
+
</pre></div>
|
|
1346
|
+
<p>
|
|
1347
|
+
<b>To use like <a href="config_misc.html#RegexpHeader">RegexpHeader
|
|
1348
|
+
</a>:</b>
|
|
1349
|
+
</p>
|
|
1350
|
+
<p>
|
|
1351
|
+
To configure the check to verify that each file starts with the
|
|
1352
|
+
following multiline header.
|
|
1353
|
+
</p>
|
|
1354
|
+
<p>Note the following:</p>
|
|
1355
|
+
<ul>
|
|
1356
|
+
<li>\A means the start of the file.</li>
|
|
1357
|
+
<li>The date can be any 4 digit number.</li>
|
|
1358
|
+
</ul>
|
|
1359
|
+
|
|
1360
|
+
<div class="source"><pre>
|
|
1361
|
+
// Copyright (C) 2004 MyCompany
|
|
1362
|
+
// All rights reserved
|
|
1363
|
+
</pre></div>
|
|
1364
|
+
<div class="source"><pre>
|
|
1365
|
+
<module name="Regexp">
|
|
1366
|
+
<property
|
|
1367
|
+
name="format"
|
|
1368
|
+
value="\A// Copyright \(C\) \d\d\d\d MyCompany\n// All rights reserved"/>
|
|
1369
|
+
</module>
|
|
1370
|
+
</pre></div>
|
|
1371
|
+
<p>
|
|
1372
|
+
A more complex example. Note how the import and javadoc multilines are
|
|
1373
|
+
handled, there can be any number of them.
|
|
1374
|
+
</p>
|
|
1375
|
+
<div class="source"><pre>
|
|
1376
|
+
///////////////////////////////////////////////////////////////////////
|
|
1377
|
+
// checkstyle:
|
|
1378
|
+
// Checks Java source code for adherence to a set of rules.
|
|
1379
|
+
// Copyright (C) 2004 Oliver Burn
|
|
1380
|
+
// Last modification by $Author A.N.Other$
|
|
1381
|
+
///////////////////////////////////////////////////////////////////////
|
|
1382
|
+
|
|
1383
|
+
package com.puppycrawl.checkstyle;
|
|
1384
|
+
|
|
1385
|
+
import java.util.thing1;
|
|
1386
|
+
import java.util.thing2;
|
|
1387
|
+
import java.util.thing3;
|
|
1388
|
+
|
|
1389
|
+
/**
|
|
1390
|
+
* javadoc line 1
|
|
1391
|
+
* javadoc line 2
|
|
1392
|
+
* javadoc line 3
|
|
1393
|
+
*/
|
|
1394
|
+
</pre></div>
|
|
1395
|
+
<div class="source"><pre>
|
|
1396
|
+
<module name="Regexp">
|
|
1397
|
+
<property
|
|
1398
|
+
name="format"
|
|
1399
|
+
value="\A/{71}\n// checkstyle:\n// Checks Java source code for
|
|
1400
|
+
adherence to a set of rules\.\n// Copyright \(C\) \d\d\d\d Oliver Burn\n
|
|
1401
|
+
// Last modification by \$Author.*\$\n/{71}\n\npackage [\w\.]*;\n\n
|
|
1402
|
+
(import [\w\.]*;\n)*\n/\*\*\n( \*[^/]*\n)* \*/"/>
|
|
1403
|
+
</module>
|
|
1404
|
+
</pre></div>
|
|
1405
|
+
<p>
|
|
1406
|
+
<b>More examples:</b>
|
|
1407
|
+
</p>
|
|
1408
|
+
<p>
|
|
1409
|
+
The next 2 examples deal with the following example java source file:
|
|
1410
|
+
</p>
|
|
1411
|
+
<div class="source"><pre>
|
|
1412
|
+
/*
|
|
1413
|
+
* PID.java
|
|
1414
|
+
*
|
|
1415
|
+
* Copyright (c) 2001 ACME
|
|
1416
|
+
* 123 Some St.
|
|
1417
|
+
* Somewhere.
|
|
1418
|
+
*
|
|
1419
|
+
* This software is the confidential and proprietary information of ACME.
|
|
1420
|
+
* ("Confidential Information"). You shall not disclose such
|
|
1421
|
+
* Confidential Information and shall use it only in accordance with
|
|
1422
|
+
* the terms of the license agreement you entered into with ACME.
|
|
1423
|
+
*
|
|
1424
|
+
* $Log: config_misc.xml,v $
|
|
1425
|
+
* Revision 1.7 2007/01/16 12:16:35 oburn
|
|
1426
|
+
* Removing all reference to mailing lists
|
|
1427
|
+
*
|
|
1428
|
+
* Revision 1.6 2005/12/25 16:13:10 o_sukhodolsky
|
|
1429
|
+
* Fix for rfe 1248106 (TYPECAST is now accepted by NoWhitespaceAfter)
|
|
1430
|
+
*
|
|
1431
|
+
* Fix for rfe 953266 (thanks to Paul Guyot (pguyot) for submitting patch)
|
|
1432
|
+
* IllegalType can be configured to accept some abstract classes which
|
|
1433
|
+
* matches to regexp of illegal type names (property legalAbstractClassNames)
|
|
1434
|
+
*
|
|
1435
|
+
* TrailingComment now can be configured to accept some trailing comments
|
|
1436
|
+
* (such as NOI18N) (property legalComment, rfe 1385344).
|
|
1437
|
+
*
|
|
1438
|
+
* Revision 1.5 2005/11/06 11:54:12 oburn
|
|
1439
|
+
* Incorporate excellent patch [ 1344344 ] Consolidation of regexp checks.
|
|
1440
|
+
*
|
|
1441
|
+
* Revision 1.3.8.1 2005/10/11 14:26:32 someone
|
|
1442
|
+
* Fix for bug 251. The broken bit is fixed
|
|
1443
|
+
*/
|
|
1444
|
+
|
|
1445
|
+
package com.acme.tools;
|
|
1446
|
+
|
|
1447
|
+
import com.acme.thing1;
|
|
1448
|
+
import com.acme.thing2;
|
|
1449
|
+
import com.acme.thing3;
|
|
1450
|
+
|
|
1451
|
+
/**
|
|
1452
|
+
*
|
|
1453
|
+
* <P>
|
|
1454
|
+
* <I>This software is the confidential and proprietary information of
|
|
1455
|
+
* ACME (<B>"Confidential Information"</B>). You shall not
|
|
1456
|
+
* disclose such Confidential Information and shall use it only in
|
|
1457
|
+
* accordance with the terms of the license agreement you entered into
|
|
1458
|
+
* with ACME.</I>
|
|
1459
|
+
* </P>
|
|
1460
|
+
*
|
|
1461
|
+
* &#169; copyright 2002 ACME
|
|
1462
|
+
*
|
|
1463
|
+
* @author Some Body
|
|
1464
|
+
*/
|
|
1465
|
+
public class PID extends StateMachine implements WebObject.Constants {
|
|
1466
|
+
|
|
1467
|
+
/** javadoc. */
|
|
1468
|
+
public static final int A_SETPOINT = 1;
|
|
1469
|
+
.
|
|
1470
|
+
.
|
|
1471
|
+
.
|
|
1472
|
+
} // class PID
|
|
1473
|
+
</pre></div>
|
|
1474
|
+
<p>
|
|
1475
|
+
This checks for the presence of the header, the first 16 lines.
|
|
1476
|
+
</p>
|
|
1477
|
+
<p>Note the following:</p>
|
|
1478
|
+
<ul>
|
|
1479
|
+
<li>Line 2 and 13 contain the file name. These are checked to
|
|
1480
|
+
make sure they are the same, and that they match the class name.</li>
|
|
1481
|
+
<li>The date can be any 4 digit number.</li>
|
|
1482
|
+
</ul>
|
|
1483
|
+
|
|
1484
|
+
<div class="source"><pre>
|
|
1485
|
+
<module name="Regexp">
|
|
1486
|
+
<property
|
|
1487
|
+
name="format"
|
|
1488
|
+
value="\A/\*\n \* (\w*)\.java\n \*\n \* Copyright \(c\)
|
|
1489
|
+
\d\d\d\d ACME\n \* 123 Some St\.\n \* Somewhere\.\n \*\n
|
|
1490
|
+
\* This software is the confidential and proprietary information
|
|
1491
|
+
of ACME\.\n \* \("Confidential Information"\)\. You
|
|
1492
|
+
shall not disclose such\n \* Confidential Information and shall
|
|
1493
|
+
use it only in accordance with\n \* the terms of the license
|
|
1494
|
+
agreement you entered into with ACME\.\n \*\n
|
|
1495
|
+
\* \$Log: config_misc.xml,v $
|
|
1496
|
+
\* \Revision 1.7 2007/01/16 12:16:35 oburn
|
|
1497
|
+
\* \Removing all reference to mailing lists
|
|
1498
|
+
\* \
|
|
1499
|
+
\* \Revision 1.6 2005/12/25 16:13:10 o_sukhodolsky
|
|
1500
|
+
\* \Fix for rfe 1248106 (TYPECAST is now accepted by NoWhitespaceAfter)
|
|
1501
|
+
\* \
|
|
1502
|
+
\* \Fix for rfe 953266 (thanks to Paul Guyot (pguyot) for submitting patch)
|
|
1503
|
+
\* \IllegalType can be configured to accept some abstract classes which
|
|
1504
|
+
\* \matches to regexp of illegal type names (property legalAbstractClassNames)
|
|
1505
|
+
\* \
|
|
1506
|
+
\* \TrailingComment now can be configured to accept some trailing comments
|
|
1507
|
+
\* \(such as NOI18N) (property legalComment, rfe 1385344).
|
|
1508
|
+
\* \
|
|
1509
|
+
\* \Revision 1.5 2005/11/06 11:54:12 oburn
|
|
1510
|
+
\* \Incorporate excellent patch [ 1344344 ] Consolidation of regexp checks.
|
|
1511
|
+
\* \\n(.*\n)*([\w|\s]*( class | interface )\1)"/>
|
|
1512
|
+
<property name="message" value="Correct header not found"/>
|
|
1513
|
+
</module>
|
|
1514
|
+
</pre></div>
|
|
1515
|
+
<p>
|
|
1516
|
+
This checks for the presence of a copyright notice within the class
|
|
1517
|
+
javadoc, lines 24 to 37.
|
|
1518
|
+
</p>
|
|
1519
|
+
<div class="source"><pre>
|
|
1520
|
+
<module name="Regexp">
|
|
1521
|
+
<property
|
|
1522
|
+
name="format"
|
|
1523
|
+
value="(/\*\*\n)( \*.*\n)*( \* &lt;P&gt;\n \* &lt;I&gt;
|
|
1524
|
+
This software is the confidential and proprietary information of\n
|
|
1525
|
+
\* ACME \(&lt;B&gt;&quot;Confidential Information&quot;&lt;/B&gt;
|
|
1526
|
+
\)\. You shall not\n \* disclose such Confidential Information
|
|
1527
|
+
and shall use it only in\n \* accordance with the terms of the
|
|
1528
|
+
license agreement you entered into\n \* with ACME\.&lt;/I&gt;\n
|
|
1529
|
+
\* &lt;/P&gt;\n \*\n \* &#169; copyright \d\d\d\d ACME\n
|
|
1530
|
+
\*\n \* @author .*)(\n\s\*.*)*/\n[\w|\s]*( class | interface )"/>
|
|
1531
|
+
<property name="message" value="Copyright in class/interface Javadoc"/>
|
|
1532
|
+
<property name="duplicateLimit" value="0"/>
|
|
1533
|
+
</module>
|
|
1534
|
+
</pre></div>
|
|
1535
|
+
<p>
|
|
1536
|
+
<b>Note:</b> To search for things that mean something in xml, like
|
|
1537
|
+
< you need to escape them like &lt;. This is required so the
|
|
1538
|
+
xml parser does not act on them, but instead passes the correct
|
|
1539
|
+
character to the regexp engine.
|
|
1540
|
+
</p>
|
|
1541
|
+
</div>
|
|
1542
|
+
|
|
1543
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
1544
|
+
<p>
|
|
1545
|
+
com.puppycrawl.tools.checkstyle.checks
|
|
1546
|
+
</p>
|
|
1547
|
+
</div>
|
|
1548
|
+
|
|
1549
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
1550
|
+
<p>
|
|
1551
|
+
<a href="config.html#TreeWalker">TreeWalker</a>
|
|
1552
|
+
</p>
|
|
1553
|
+
</div>
|
|
1554
|
+
</div>
|
|
1555
|
+
|
|
1556
|
+
<div class="section"><h2>OuterTypeFilename<a name="OuterTypeFilename"></a></h2>
|
|
1557
|
+
<div class="section"><h3>Description<a name="Description"></a></h3>
|
|
1558
|
+
<p>
|
|
1559
|
+
Checks that the outer type name and the file name match. For example,
|
|
1560
|
+
the class <tt>Foo</tt> must be in a file named
|
|
1561
|
+
<tt>Foo.java</tt>.
|
|
1562
|
+
</p>
|
|
1563
|
+
</div>
|
|
1564
|
+
|
|
1565
|
+
<div class="section"><h3>Properties<a name="Properties"></a></h3>
|
|
1566
|
+
<p>None.</p>
|
|
1567
|
+
</div>
|
|
1568
|
+
|
|
1569
|
+
<div class="section"><h3>Examples<a name="Examples"></a></h3>
|
|
1570
|
+
<p>
|
|
1571
|
+
To configure the check:
|
|
1572
|
+
</p>
|
|
1573
|
+
<div class="source"><pre>
|
|
1574
|
+
<module name="OuterTypeFilename"/>
|
|
1575
|
+
</pre></div>
|
|
1576
|
+
</div>
|
|
1577
|
+
|
|
1578
|
+
<div class="section"><h3>Package<a name="Package"></a></h3>
|
|
1579
|
+
<p>
|
|
1580
|
+
com.puppycrawl.tools.checkstyle.checks
|
|
1581
|
+
</p>
|
|
1582
|
+
</div>
|
|
1583
|
+
|
|
1584
|
+
<div class="section"><h3>Parent Module<a name="Parent_Module"></a></h3>
|
|
1585
|
+
<p>
|
|
1586
|
+
<a href="config.html#TreeWalker">TreeWalker</a>
|
|
1587
|
+
</p>
|
|
1588
|
+
</div>
|
|
1589
|
+
</div>
|
|
1590
|
+
|
|
1591
|
+
|
|
1592
|
+
</div>
|
|
1593
|
+
</div>
|
|
1594
|
+
<div class="clear">
|
|
1595
|
+
<hr/>
|
|
1596
|
+
</div>
|
|
1597
|
+
<div id="footer">
|
|
1598
|
+
<div class="xright">Copyright © 2001-2012.
|
|
1599
|
+
All Rights Reserved.
|
|
1600
|
+
|
|
1601
|
+
</div>
|
|
1602
|
+
<div class="clear">
|
|
1603
|
+
<hr/>
|
|
1604
|
+
</div>
|
|
1605
|
+
</div>
|
|
1606
|
+
</body>
|
|
1607
|
+
</html>
|