Snap for 5907899 from 1bdb1ca45bdc30c9b07af4c5c0df89a25075e59d to r-keystone-qcom-release

Change-Id: I632c35b2234755cfea15f8e3d4772de124681732
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 1eddcf3..0000000
--- a/Makefile
+++ /dev/null
@@ -1,223 +0,0 @@
-default: javadoc runtests findbugs
-
-help:
-	@echo "Usage: make [<target> ...]"
-	@echo ""
-	@echo "Targets include:"
-	@echo "  help      - Displays this message."
-	@echo "  ----------- QUICK"
-	@echo "  clean     - Delete all built files."
-	@echo "  default   - Build documentation&classes, and run checks."
-	@echo "              The output will be available under out/."
-	@echo "  ----------- DIAGNOSTIC"
-	@echo "  classes   - Put Java .class files under out/."
-	@echo "  tests     - Compile tests."
-	@echo "  runtests  - Runs tests.  Some require a network connection."
-	@echo "  coverage  - Runs tests and generates a code coverage report."
-	@echo "  findbugs  - Runs a code quality tool.  Slow."
-	@echo "  benchmark - Times the sanitizer against a tree builder."
-	@echo "  profile   - Profiles the benchmark."
-	@echo "  ----------- ARTIFACTS"
-	@echo "  distrib   - Build everything and package it into JARs."
-	@echo "              Requires an svn executable on PATH."
-	@echo "  release   - Additionally, cut a new Maven version."
-	@echo "              Should be run from client that has sibling"
-	@echo "              directories of trunk checked out."
-	@echo "  download  - Bundle docs, externally required jars, and"
-	@echo "              license files into a zip file suitable for"
-	@echo "              the code.google site downloads."
-	@echo ""
-	@echo "For more verbose test runner output, do"
-	@echo "  make VERBOSE=1 runtests"
-	@echo ""
-	@echo "To run tests with assertions on, do"
-	@echo "  make NOASSERTS=1 runtests"
-
-SHELL=/bin/bash
-CLASSPATH=lib/guava-libraries/guava.jar:lib/jsr305/jsr305.jar
-TEST_CLASSPATH=$(CLASSPATH):lib/htmlparser-1.3/htmlparser-1.3.jar:lib/junit/junit.jar:lib/commons-codec-1.4/commons-codec-1.4.jar:benchmark-data
-JAVAC_FLAGS=-source 1.5 -target 1.5 -Xlint -encoding UTF-8
-TEST_RUNNER=junit.textui.TestRunner
-JASSERTS=-ea
-# Run tests in the Turkish locale to trigger any extra-case-folding-rule bugs
-# http://www.moserware.com/2008/02/does-your-code-pass-turkey-test.html
-TURKEYTEST=-Duser.counter=TR -Duser.language-tr
-
-ifdef VERBOSE
-override TEST_RUNNER=org.owasp.html.VerboseTestRunner
-endif
-
-ifdef NOASSERTS
-override JASSERTS=
-endif
-
-out:
-	mkdir -p out
-
-out/classes: out
-	mkdir -p out/classes
-
-out/genfiles: out
-	mkdir -p out/genfiles
-
-clean:
-	rm -rf out
-
-classes: out/classes.tstamp
-out/classes.tstamp: out/classes src/main/org/owasp/html/*.java
-	javac -g ${JAVAC_FLAGS} -classpath ${CLASSPATH} -d out/classes \
-	  $$(echo $^ | tr ' ' '\n' | egrep '\.java$$')
-	touch out/classes.tstamp
-
-examples: out/examples.tstamp
-out/examples.tstamp: out/classes.tstamp src/main/org/owasp/html/examples/*.java
-	javac -g ${JAVAC_FLAGS} -classpath ${CLASSPATH}:out/classes \
-	  -d out/classes \
-	  $$(echo $^ | tr ' ' '\n' | egrep '\.java$$')
-	touch out/examples.tstamp
-
-# Depends on all java files under tests.
-tests: out/tests.tstamp
-out/tests.tstamp: out/classes.tstamp out/genfiles.tstamp out/examples.tstamp src/tests/org/owasp/html/*.java
-	javac -g ${JAVAC_FLAGS} \
-          -classpath out/classes:out/genfiles:${TEST_CLASSPATH} \
-	  -d out/classes \
-	  $$((echo $^; find out/genfiles -type f) | tr ' ' '\n' | \
-	     egrep '\.java$$')
-	touch out/tests.tstamp
-
-out/genfiles.tstamp: out/genfiles/org/owasp/html/AllExamples.java out/genfiles/org/owasp/html/AllTests.java
-	touch out/genfiles.tstamp
-out/genfiles/org/owasp/html/AllTests.java: src/tests/org/owasp/html/*Test.java
-	mkdir -p "$$(dirname $@)"
-	(echo 'package org.owasp.html;'; \
-         echo 'import junit.framework.Test;'; \
-         echo 'import junit.framework.TestSuite;'; \
-	 echo 'public class AllTests {'; \
-	 echo '  public static Test suite() {'; \
-	 echo '    TestSuite suite = new TestSuite();'; \
-	 echo $^ | tr ' ' '\n' | perl -pe \
-	   's#^src/tests/#      suite.addTestSuite(#; s#\.java$$#.class);#g; \
-	    s#/#.#g;'; \
-	 echo '    return suite;'; \
-	 echo '  }'; \
-	 echo '}'; \
-	) > $@
-
-out/genfiles/org/owasp/html/AllExamples.java: src/main/org/owasp/html/examples/*.java
-	mkdir -p "$$(dirname $@)"
-	(echo 'package org.owasp.html;'; \
-	 echo 'final class AllExamples {'; \
-	 echo '  static final Class<?>[] CLASSES = {'; \
-	 echo $^ | tr ' ' '\n' | perl -pe \
-	   's#^src/main/#      #; s#\.java$$#.class,#g; \
-	    s#/#.#g;'; \
-	 echo '  };'; \
-	 echo '}'; \
-	) > $@
-
-runtests: tests
-	java ${TURKEYTEST} ${JASSERTS} \
-	    -classpath out/classes:src/tests:${TEST_CLASSPATH} \
-	    ${TEST_RUNNER} org.owasp.html.AllTests
-
-coverage: tests
-	java ${JASSERTS} -cp tools/emma/lib/emma.jar:lib/guava-libraries/guava.jar:lib/jsr305/jsr305.jar:lib/htmlparser-1.3/htmlparser-1.3.jar:lib/commons-codec-1.4/commons-codec-1.4.jar:benchmark-data \
-	  -Demma.report.out.file=out/coverage/index.html \
-	  -Demma.report.out.encoding=UTF-8 \
-	  emmarun \
-	  -r html \
-	  -cp out/classes:src/tests:lib/junit/junit.jar \
-	  -sp src/main:src/tests:out/genfiles \
-	  -f \
-	  -ix '-junit.*' \
-	  -ix '-org.junit.*' \
-	  -ix '-org.hamcrest.*' \
-	  ${TEST_RUNNER} \
-	  org.owasp.html.AllTests
-
-# Runs findbugs to identify problems.
-findbugs: out/findbugs.txt
-	cat $^
-out/findbugs.txt: out/tests.tstamp
-	find out/classes/org -type d | \
-	  xargs tools/findbugs/bin/findbugs -textui -effort:max \
-	  -auxclasspath ${TEST_CLASSPATH} > $@
-
-# Runs a benchmark that compares performance.
-benchmark: out/tests.tstamp
-	java -cp ${TEST_CLASSPATH}:out/classes \
-	  org.owasp.html.Benchmark benchmark-data/Yahoo\!.html
-
-# Profiles the benchmark.
-profile: out/java.hprof.txt
-out/java.hprof.txt: out/tests.tstamp
-	java -cp ${TEST_CLASSPATH}:out/classes -agentlib:hprof=cpu=times,format=a,file=out/java.hprof.txt,lineno=y,doe=y org.owasp.html.Benchmark benchmark-data/Yahoo\!.html s
-
-# Builds the documentation.
-javadoc: out/javadoc.tstamp
-out/javadoc.tstamp: src/main/org/owasp/html/*.java src/main/org/owasp/html/examples/*.java
-	mkdir -p out/javadoc
-	javadoc -locale en -d out/javadoc \
-	  -notimestamp \
-	  -charset UTF-8 \
-	  -classpath ${CLASSPATH} \
-	  -use -splitIndex \
-	  -windowtitle 'OWASP Java HTML Sanitizer' \
-	  -doctitle 'OWASP Java HTML Sanitizer' \
-	  -header '<a href="http://code.google.com/p/owasp-java-html-sanitizer" target=_top>code.google.com home</a>' \
-	  -J-Xmx250m -nohelp -sourcetab 8 -docencoding UTF-8 -protected \
-	  -encoding UTF-8 -author -version $^ \
-	&& touch out/javadoc.tstamp
-
-# Packages the documentation, and libraries in the distrib directory,
-# and creates a script containing svn commands to commit those changes.
-distrib: out/run_me_before_committing_release.sh
-out/run_me_before_committing_release.sh: clean out/staging.tstamp
-	tools/update_tree_in_svn.py out/staging distrib > $@
-	chmod +x $@
-out/staging.tstamp: out/javadoc.tstamp out/classes.tstamp
-	mkdir -p out/staging
-	echo Copying Javadoc
-	rm -rf out/staging/javadoc
-	cp -r out/javadoc out/staging/javadoc
-	echo Suppressing spurious Javadoc diffs
-	for doc_html in $$(find out/staging/javadoc -name \*.html); do \
-	  perl -i -pe 's/<!-- Generated by javadoc .+?-->//; s/<META NAME="date" CONTENT="[^"]*">//' "$$doc_html"; \
-	done
-	echo Linking required jars
-	mkdir -p out/staging/lib
-	for jar in $$(echo ${CLASSPATH} | tr : ' '); do \
-	  cp "$$jar" out/staging/lib/; \
-	  cp "$$(dirname $$jar)"/COPYING out/staging/lib/"$$(basename $$jar .jar)"-COPYING; \
-	done
-	echo Bundling compiled classes
-	jar cf out/staging/lib/owasp-java-html-sanitizer.jar -C out/classes org
-	echo Bundling sources and docs
-	for f in $$(find src/main -name \*.java); do \
-	  mkdir -p out/staging/"$$(dirname $$f)"; \
-	  cp "$$f" out/staging/"$$f"; \
-	done
-	jar cf out/staging/lib/owasp-java-html-sanitizer-sources.jar -C out/staging/src/main org
-	jar cf out/staging/lib/owasp-java-html-sanitizer-javadoc.jar -C out javadoc
-	rm -rf out/staging/src
-	cp COPYING out/staging/lib/owasp-java-html-sanitizer-COPYING
-	touch $@
-
-# Packages the distrib jars into the maven directory which is a sibling of
-# trunk.
-release: out/run_me_before_committing_maven.sh
-out/run_me_before_committing_maven.sh: distrib
-	tools/cut_release.py > $@
-	chmod +x $@
-
-download: out/owasp-java-html-sanitizer.zip
-out/zip.tstamp: out/staging.tstamp
-	rm -f out/zip/owasp-java-html-sanitizer
-	mkdir -p out/zip/owasp-java-html-sanitizer
-	cp -r out/staging/lib out/staging/javadoc \
-	    out/zip/owasp-java-html-sanitizer/
-	touch $@
-out/owasp-java-html-sanitizer.zip: out/zip.tstamp
-	jar cMf out/owasp-java-html-sanitizer.zip \
-	    -C out/zip owasp-java-html-sanitizer
diff --git a/OWNERS b/OWNERS
index b2a767b..9caba91 100644
--- a/OWNERS
+++ b/OWNERS
@@ -1,3 +1,3 @@
-# Default code reviewers picked from top 3 or more developers.
-# Please update this list if you find better candidates.
-jplemieux@google.com
+# Owasp sanitizer library used only in AOSP CTS email activity
+include platform/packages/apps/Email:/OWNERS
+include platform/packages/apps/UnifiedEmail:/OWNERS
diff --git a/tools/cut_release.py b/tools/cut_release.py
deleted file mode 100755
index c0a6377..0000000
--- a/tools/cut_release.py
+++ /dev/null
@@ -1,179 +0,0 @@
-#!/usr/bin/python
-
-"""
-Packages a new maven release.
-"""
-
-import os
-import re
-import shutil
-import subprocess
-import sys
-import xml.dom.minidom
-
-def mime_type_from_path(path):
-  if path.endswith(".pom"):
-    return "text/xml;charset=UTF-8"
-  elif path.endswith(".jar"):
-    return "application/java-archive"
-  return None
-
-if "__main__" == __name__:
-  # Compute directories relative to tools.
-  trunk_directory_path = os.path.realpath(os.path.join(
-    os.path.dirname(sys.argv[0]),
-    ".."))
-  maven_directory_path = os.path.realpath(os.path.join(
-    os.path.dirname(sys.argv[0]),
-    "..",
-    "..",
-    "maven",
-    "owasp-java-html-sanitizer",
-    "owasp-java-html-sanitizer"))
-  maven_metadata_path = os.path.join(
-    maven_directory_path,
-    "maven-metadata.xml")
-  version_template_directory_path = os.path.join(
-    maven_directory_path,
-    "+++version+++")
-  jar_path = os.path.join(
-    trunk_directory_path,
-    "distrib",
-    "lib",
-    "owasp-java-html-sanitizer.jar")
-  src_jar_path = os.path.join(
-    trunk_directory_path,
-    "distrib",
-    "lib",
-    "owasp-java-html-sanitizer-sources.jar")
-  doc_jar_path = os.path.join(
-    trunk_directory_path,
-    "distrib",
-    "lib",
-    "owasp-java-html-sanitizer-javadoc.jar")
-
-  # Make sure the directory_structures we expect exist.
-  assert os.path.isdir(maven_directory_path), maven_directory_path
-  assert os.path.isdir(trunk_directory_path), trunk_directory_path
-  assert os.path.isfile(maven_metadata_path), maven_metadata_path
-  assert os.path.isdir(version_template_directory_path), (
-         version_template_directory_path)
-  assert os.path.isfile(jar_path), jar_path
-  assert os.path.isfile(src_jar_path), src_jar_path
-  assert os.path.isfile(doc_jar_path), doc_jar_path
-
-  # Get svn info of the trunk directory.
-  svn_info_xml = (
-     subprocess.Popen(["svn", "info", "--xml", trunk_directory_path],
-                      stdout=subprocess.PIPE)
-    .communicate()[0])
-  svn_info = xml.dom.minidom.parseString(svn_info_xml)
-
-  # Process SVN output XML to find fields.
-  date_element = svn_info.getElementsByTagName("date")[0]
-  entry_element = svn_info.getElementsByTagName("entry")[0]
-  def inner_text(node):
-    if node.nodeType == 3: return node.nodeValue
-    if node.nodeType == 1:
-      return "".join([inner_text(child) for child in node.childNodes])
-    return ""
-
-  # Create a list of fields to use in substitution.
-  fields = {
-    "version": "r%s" % entry_element.getAttribute("revision"),
-    "timestamp": re.sub(r"[^.\d]|\.\d+", "", inner_text(date_element))
-  }
-
-  def replace_fields(s):
-    return re.sub(r"\+\+\+(\w+)\+\+\+", lambda m: fields[m.group(1)], s)
-
-  # List of files that need to have ##DUPE## and ##REPLACE## sections expanded
-  # NOTE(12 February 2013): We no longer rewrite maven_metadata_path since this
-  # project is now hosted in Maven Central, and maven_metadata used a
-  # groupId/artifactId pair that is incompatible with the convention used by
-  # Maven Central.
-  # All maven versions after 12 February are undiscoverable by looking at
-  # maven_metadata.
-  files_to_rewrite = []
-  new_file_paths = []
-
-  def copy_directory_structure_template(src_path, container_path):
-    dest_path = os.path.join(
-      container_path,
-      replace_fields(os.path.basename(src_path)))
-    if os.path.isdir(src_path):
-      os.mkdir(dest_path)
-      for child in os.listdir(src_path):
-        # Skip .svn directories.
-        if "." == child[0:1]: continue
-        copy_directory_structure_template(
-          os.path.join(src_path, child), dest_path)
-    else:
-      shutil.copyfile(src_path, dest_path)
-      mime_type = mime_type_from_path(dest_path)
-      if mime_type is None or mime_type.startswith("text/"):
-        files_to_rewrite.append(dest_path)
-      new_file_paths.append(dest_path)
-    return dest_path
-
-  def rewrite_file(path):
-    lines = []
-    in_file = open(path, "r")
-    try:
-      file_content = in_file.read()
-    finally:
-      in_file.close()
-    for line in file_content.split("\n"):
-      indentation = re.match(r"^\s*", line).group()
-      matches = re.findall(r"(<!--##REPLACE##(.*)##END##-->)", line)
-      if len(matches) >= 2: raise Error("%s: %s" % (path, line))
-      if len(matches):
-        match = matches[0]
-        line = "%s%s %s" % (indentation, replace_fields(match[1]), match[0])
-      else:
-        matches = re.findall("##DUPE##(.*)##END##", line)
-        if len(matches) >= 2: raise Error("%s: %s" % (path, line))
-        if len(matches):
-          match = matches[0]
-          lines.append("%s%s" % (indentation, replace_fields(match)))
-      lines.append(line)
-    out_file = open(path, "w")
-    try:
-      out_file.write("\n".join(lines))
-    finally:
-      out_file.close()
-
-  versioned_jar_path = os.path.join(
-    version_template_directory_path,
-    "owasp-java-html-sanitizer-+++version+++.jar")
-  versioned_src_jar_path = os.path.join(
-    version_template_directory_path,
-    "owasp-java-html-sanitizer-+++version+++-sources.jar")
-  versioned_doc_jar_path = os.path.join(
-    version_template_directory_path,
-    "owasp-java-html-sanitizer-+++version+++-javadoc.jar")
-
-  shutil.copyfile(jar_path, versioned_jar_path)
-  shutil.copyfile(src_jar_path, versioned_src_jar_path)
-  shutil.copyfile(doc_jar_path, versioned_doc_jar_path)
-  ok = False
-  version_directory_path = None
-  try:
-    version_directory_path = copy_directory_structure_template(
-      version_template_directory_path, maven_directory_path)
-    for file_to_rewrite in files_to_rewrite:
-      rewrite_file(file_to_rewrite)
-    ok = True
-  finally:
-    os.unlink(versioned_jar_path)
-    os.unlink(versioned_src_jar_path)
-    os.unlink(versioned_doc_jar_path)
-    if not ok and version_directory_path is not None:
-      shutil.rmtree(version_directory_path)
-
-  print "svn add '%s'" % version_directory_path
-
-  for new_file_path in new_file_paths:
-    mime_type = mime_type_from_path(new_file_path)
-    if mime_type is not None:
-      print "svn propset svn:mime-type '%s' '%s'" % (mime_type, new_file_path)
diff --git a/tools/emma/README.txt b/tools/emma/README.txt
deleted file mode 100644
index 58c6f36..0000000
--- a/tools/emma/README.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-

-EMMA is a Java code coverage tool. For more information on EMMA, please

-look at the HTML and PDF documentation included in docs/ directory. More

-information is available at EMMA's home site:

-

-  http://emma.sourceforge.net

-

-The top level directories in this distribution are:

-

-lib/          EMMA implementation jars

-docs/         EMMA user guide and reference manual

-examples/     ANT build.xml examples (referenced by the user guide)

-

-

-REQUIREMENTS

-~~~~~~~~~~~~

-

-EMMA is a self-contained toolkit (with no external library dependencies)

-supported on any Java 2 runtime.

-

-

-EXAMPLES

-~~~~~~~~

-

-To try the examples please read the user guide or follow instructions in

-docs/README.txt.

-

-

-BUILDING EMMA

-~~~~~~~~~~~~~

-

-To limit the download size, this distribution does not include the source

-code. You can obtain it and the build instructions as

-emma-<build label>-src.zip download from EMMA's project summary site: 

-

-   http://sourceforge.net/projects/emma

-

- __________________________________________________________________________

-       Copyright (C) 2003-2005 Vladimir Roubtsov. All rights reserved.

-

- This program and the accompanying materials are made available under

- the terms of the Common Public License v1.0 which accompanies this

- distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html

diff --git a/tools/emma/lib/emma.jar b/tools/emma/lib/emma.jar
deleted file mode 100644
index 27629de..0000000
--- a/tools/emma/lib/emma.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/README.txt b/tools/findbugs/README.txt
deleted file mode 100644
index 4ddbe73..0000000
--- a/tools/findbugs/README.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-To get started, see doc/index.html and doc/manual/index.html
-
-The FindBugs source license is in the file LICENSE.txt
-
-Both the name FindBugs and the FindBugs bug mark are
-trademarked by the University of Maryland.
-
-The Apache BCEL license is in the file LICENSE-bcel.txt
-
-The ASM license is in the file LICENSE-ASM.txt
-
-The dom4j license is in the file LICENSE-dom4j.txt
-
-The AppleJavaExtensions license is in the file LICENSE-AppleJavaExtensions.txt
-
-The Docbook 4.2 XML DTD license is in the file LICENSE-docbook.txt
-
-The JSR-305 reference implementation license is in LICENSE-jsr305.txt
-
-The Jaxen license is in LICENSE-jaxen.txt
diff --git a/tools/findbugs/bin/addMessages b/tools/findbugs/bin/addMessages
deleted file mode 100755
index 5b9e5be..0000000
--- a/tools/findbugs/bin/addMessages
+++ /dev/null
@@ -1,73 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.AddMessages
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
diff --git a/tools/findbugs/bin/computeBugHistory b/tools/findbugs/bin/computeBugHistory
deleted file mode 100755
index 24ce26c..0000000
--- a/tools/findbugs/bin/computeBugHistory
+++ /dev/null
@@ -1,78 +0,0 @@
-#! /bin/sh
-
-# Merge a historical bug collection and a bug collection, producing an updated
-# historical bug collection
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.Update
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/convertXmlToText b/tools/findbugs/bin/convertXmlToText
deleted file mode 100755
index e8493d6..0000000
--- a/tools/findbugs/bin/convertXmlToText
+++ /dev/null
@@ -1,73 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.PrintingBugReporter
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
diff --git a/tools/findbugs/bin/copyBuggySource b/tools/findbugs/bin/copyBuggySource
deleted file mode 100755
index 355819b..0000000
--- a/tools/findbugs/bin/copyBuggySource
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.CopyBuggySource
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/defectDensity b/tools/findbugs/bin/defectDensity
deleted file mode 100755
index a297a03..0000000
--- a/tools/findbugs/bin/defectDensity
+++ /dev/null
@@ -1,77 +0,0 @@
-#! /bin/sh
-
-# Generate a defect density table from a bug collection
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.DefectDensity
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/deprecated/bugHistory b/tools/findbugs/bin/deprecated/bugHistory
deleted file mode 100755
index 5f5599b..0000000
--- a/tools/findbugs/bin/deprecated/bugHistory
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.BugHistory
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/deprecated/unionBugs b/tools/findbugs/bin/deprecated/unionBugs
deleted file mode 100755
index 9da0b84..0000000
--- a/tools/findbugs/bin/deprecated/unionBugs
+++ /dev/null
@@ -1,78 +0,0 @@
-#! /bin/sh
-
-# Create the union of two results files, preserving
-# annotations in both files in the result.
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.UnionResults
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/deprecated/unionResults b/tools/findbugs/bin/deprecated/unionResults
deleted file mode 100755
index 01d2126..0000000
--- a/tools/findbugs/bin/deprecated/unionResults
+++ /dev/null
@@ -1,80 +0,0 @@
-#! /bin/sh
-
-# Deprecated
-
-# Create the union of two results files, preserving
-# annotations in both files in the result.
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.UnionResults
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/deprecated/updateBugs b/tools/findbugs/bin/deprecated/updateBugs
deleted file mode 100755
index 24ce26c..0000000
--- a/tools/findbugs/bin/deprecated/updateBugs
+++ /dev/null
@@ -1,78 +0,0 @@
-#! /bin/sh
-
-# Merge a historical bug collection and a bug collection, producing an updated
-# historical bug collection
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.Update
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/experimental/backdateHistoryUsingSource b/tools/findbugs/bin/experimental/backdateHistoryUsingSource
deleted file mode 100755
index 55030fa..0000000
--- a/tools/findbugs/bin/experimental/backdateHistoryUsingSource
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.BackdateHistoryUsingSource
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/experimental/churn b/tools/findbugs/bin/experimental/churn
deleted file mode 100755
index 998de6a..0000000
--- a/tools/findbugs/bin/experimental/churn
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.Churn
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/experimental/obfuscate b/tools/findbugs/bin/experimental/obfuscate
deleted file mode 100755
index ead5619..0000000
--- a/tools/findbugs/bin/experimental/obfuscate
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.ObfuscateBugs
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/experimental/treemapVisualization b/tools/findbugs/bin/experimental/treemapVisualization
deleted file mode 100755
index 9795ff8..0000000
--- a/tools/findbugs/bin/experimental/treemapVisualization
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.TreemapVisualization
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/fb b/tools/findbugs/bin/fb
deleted file mode 100755
index 4b96508..0000000
--- a/tools/findbugs/bin/fb
+++ /dev/null
@@ -1,192 +0,0 @@
-#! /bin/sh
-
-# Launch FindBugs from the command line.
-
-escape_arg() {
-	echo "$1" | sed -e "s,\\([\\\"' 	]\\),\\\\\\1,g"
-}
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-
-fb_appjar="$findbugs_home/lib/findbugs.jar"
-
-ShowHelpAndExit() {
-	fb_mainclass="edu.umd.cs.findbugs.ShowHelp"
-	fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-	exit 0
-}
-
-# Set defaults
-fb_mainclass="edu.umd.cs.findbugs.workflow.FB"
-user_jvmargs=''
-ea_arg=''
-debug_arg=''
-conservespace_arg=''
-workhard_arg=''
-user_props=''
-
-# Handle command line arguments.
-while [ $# -gt 0 ]; do
-	case $1 in
-	-textui)
-		fb_mainclass="edu.umd.cs.findbugs.FindBugs2"
-		;;
-
-	-jvmArgs)
-		shift
-		user_jvmargs="$1"
-		;;
-		
-	-ea)
-		ea_arg='-ea'
-		;;
-
-	-maxHeap)
-		shift
-		fb_maxheap="-Xmx$1m"
-		;;
-
-	-javahome)
-		shift
-		fb_javacmd="$1/bin/java"
-		;;
-
-	-debug)
-		debug_arg="-Dfindbugs.debug=true"
-		;;
-
-	-conserveSpace)
-		conservespace_arg="-Dfindbugs.conserveSpace=true"
-		;;
-
-	-property)
-		shift
-		user_props="-D$1 $user_props"
-		;;
-	
-	-D*=*)
-		user_props="$1 $user_props"
-		;;
-
-	-version)
-		fb_mainclass=edu.umd.cs.findbugs.Version
-		fb_appargs="-release"
-		while [ $# -gt 0 ]; do
-			shift
-		done
-		fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-		exit 0
-		;;
-
-	-help)
-		ShowHelpAndExit
-		;;
-
-	# All unrecognized arguments will be accumulated and
-	# passed to the application.
-	*)
-		fb_appargs="$fb_appargs `escape_arg "$1"`"
-		;;
-	esac
-
-	shift
-done
-
-fb_jvmargs="$user_jvmargs $debug_arg $conservespace_arg $workhard_arg $user_props $ea_arg"
-if [ $maxheap ]; then
-  fb_maxheap="-Xmx${maxheap}m"
-fi
-
-# Extra JVM args for MacOSX.
-if [ $fb_osname = "Darwin" ]; then
-	fb_jvmargs="$fb_jvmargs \
-		-Xdock:name=FindBugs -Xdock:icon=${findbugs_home}/lib/buggy.icns \
-		-Dapple.laf.useScreenMenuBar=true"
-fi
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/fbwrap b/tools/findbugs/bin/fbwrap
deleted file mode 100755
index 85aba91..0000000
--- a/tools/findbugs/bin/fbwrap
+++ /dev/null
@@ -1,84 +0,0 @@
-#! /bin/sh
-
-# A convenient way to call the main() method of a class
-# in findbugs.jar.
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-if [ $# -eq 0 ]; then
-	echo "Usage: fbwrap <main class name> <args...>"
-	exit 1
-fi
-
-fb_mainclass="$1"
-shift
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/filterBugs b/tools/findbugs/bin/filterBugs
deleted file mode 100755
index 9116229..0000000
--- a/tools/findbugs/bin/filterBugs
+++ /dev/null
@@ -1,78 +0,0 @@
-#! /bin/sh
-
-# General purpose utility for filtering/transforming
-# bug collection and/or historical bug collections
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.Filter
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/findbugs b/tools/findbugs/bin/findbugs
deleted file mode 100755
index 471cf31..0000000
--- a/tools/findbugs/bin/findbugs
+++ /dev/null
@@ -1,199 +0,0 @@
-#! /bin/sh
-
-# Launch FindBugs from the command line.
-
-escape_arg() {
-	echo "$1" | sed -e "s,\\([\\\"' 	]\\),\\\\\\1,g"
-}
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_appjar="$findbugs_home/lib/findbugs.jar"
-
-ShowHelpAndExit() {
-	fb_mainclass="edu.umd.cs.findbugs.ShowHelp"
-	fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-	exit 0
-}
-
-# Set defaults
-fb_mainclass="edu.umd.cs.findbugs.LaunchAppropriateUI"
-user_jvmargs=''
-ea_arg=''
-debug_arg=''
-conservespace_arg=''
-workhard_arg=''
-user_props=''
-
-# Handle command line arguments.
-while [ $# -gt 0 ]; do
-	case $1 in
-	-gui)
-		# this is the default
-		;;
-
-	-gui1)
-		user_props="-Dfindbugs.launchUI=1 $user_props"
-		;;
-
-	-textui)
-		fb_mainclass="edu.umd.cs.findbugs.FindBugs2"
-		;;
-
-	-jvmArgs)
-		shift
-		user_jvmargs="$1"
-		;;
-		
-	-ea)
-		ea_arg='-ea'
-		;;
-
-	-maxHeap)
-		shift
-		fb_maxheap="-Xmx$1m"
-		;;
-
-	-javahome)
-		shift
-		fb_javacmd="$1/bin/java"
-		;;
-
-	-debug)
-		debug_arg="-Dfindbugs.debug=true"
-		;;
-
-	-conserveSpace)
-		conservespace_arg="-Dfindbugs.conserveSpace=true"
-		;;
-
-	-property)
-		shift
-		user_props="-D$1 $user_props"
-		;;
-	
-	-D*=*)
-		user_props="$1 $user_props"
-		;;
-
-	-version)
-		fb_mainclass=edu.umd.cs.findbugs.Version
-		fb_appargs="-release"
-		while [ $# -gt 0 ]; do
-			shift
-		done
-		fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-		exit 0
-		;;
-
-	-help)
-		ShowHelpAndExit
-		;;
-
-	# All unrecognized arguments will be accumulated and
-	# passed to the application.
-	*)
-		fb_appargs="$fb_appargs `escape_arg "$1"`"
-		;;
-	esac
-
-	shift
-done
-
-fb_jvmargs="$user_jvmargs $debug_arg $conservespace_arg $workhard_arg $user_props $ea_arg"
-if [ $maxheap ]; then
-  fb_maxheap="-Xmx${maxheap}m"
-fi
-
-# Extra JVM args for MacOSX.
-if [ $fb_osname = "Darwin" ]; then
-	fb_jvmargs="$fb_jvmargs \
-		-Xdock:name=FindBugs -Xdock:icon=${findbugs_home}/lib/buggy.icns \
-		-Dapple.laf.useScreenMenuBar=true"
-fi
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/findbugs-csr b/tools/findbugs/bin/findbugs-csr
deleted file mode 100755
index 374d602..0000000
--- a/tools/findbugs/bin/findbugs-csr
+++ /dev/null
@@ -1,76 +0,0 @@
-#! /bin/sh
-
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.CloudSyncAndReport
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/findbugs-dbStats b/tools/findbugs/bin/findbugs-dbStats
deleted file mode 100755
index 1ada8ee..0000000
--- a/tools/findbugs/bin/findbugs-dbStats
+++ /dev/null
@@ -1,76 +0,0 @@
-#! /bin/sh
-
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.cloud.db.DBStats
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/findbugs-msv b/tools/findbugs/bin/findbugs-msv
deleted file mode 100755
index ab00dd2..0000000
--- a/tools/findbugs/bin/findbugs-msv
+++ /dev/null
@@ -1,76 +0,0 @@
-#! /bin/sh
-
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.MergeSummarizeAndView
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/findbugs.bat b/tools/findbugs/bin/findbugs.bat
deleted file mode 100644
index 0cc4621..0000000
--- a/tools/findbugs/bin/findbugs.bat
+++ /dev/null
@@ -1,240 +0,0 @@
-@echo off

-:: Launch FindBugs on a Windows system.

-:: Adapted from scripts found at http://www.ericphelps.com/batch/

-:: This will only work on Windows NT or later!

-

-:: Don't affect environment outside of this invocation

-setlocal

-

-:: ----------------------------------------------------------------------

-:: Set up default values

-:: ----------------------------------------------------------------------

-set appjar=findbugs.jar

-set javahome=

-set launcher=java.exe

-set start=start "FindBugs"

-set jvmargs=

-set debugArg=

-set conserveSpaceArg=

-set workHardArg=

-set args=

-set javaProps=

-set maxheap=768

-

-REM default UI is gui2

-set launchUI=2

-

-:: Try finding the default FINDBUGS_HOME directory

-:: from the directory path of this script

-set default_findbugs_home=%~dp0..

-

-:: Honor JAVA_HOME environment variable if it is set

-if "%JAVA_HOME%"=="" goto nojavahome

-if not exist "%JAVA_HOME%\bin\javaw.exe" goto nojavahome

-set javahome=%JAVA_HOME%\bin\

-:nojavahome

-

-goto loop

-

-:: ----------------------------------------------------------------------

-:: Process command-line arguments

-:: ----------------------------------------------------------------------

-

-:shift2

-shift

-:shift1

-shift

-

-:loop

-

-:: Remove surrounding quotes from %1 and %2

-set firstArg=%~1

-set secondArg=%~2

-

-if "%firstArg%"=="" goto launch

-

-:: AddMessages

-if not "%firstArg%"=="-addMessages" goto notAddMessages

-set fb_mainclass=edu.umd.cs.findbugs.AddMessages

-goto shift1

-:notAddMessages

-

-:: computeBugHistory

-if not "%firstArg%"=="-computeBugHistory" goto notUpdate

-set fb_mainclass=edu.umd.cs.findbugs.workflow.Update

-goto shift1

-:notUpdate

-

-:: convertXmlToText

-if not "%firstArg%"=="-xmltotext" goto notXmlToText

-set fb_mainclass=edu.umd.cs.findbugs.PrintingBugReporter

-goto shift1

-:notXmlToText

-

-:: copyBuggySource

-if not "%firstArg%"=="-copyBS" goto notCopyBS

-set fb_mainclass=edu.umd.cs.findbugs.workflow.CopyBuggySource

-goto shift1

-:notCopyBS

-

-:: defectDensity

-if not "%firstArg%"=="-defectDensity" goto notDefectDensity

-set fb_mainclass=edu.umd.cs.findbugs.workflow.DefectDensity

-goto shift1

-:notDefectDensity

-

-:: filterBugs

-if not "%firstArg%"=="-filterBugs" goto notFilterBugs

-set fb_mainclass=edu.umd.cs.findbugs.workflow.Filter

-goto shift1

-:notFilterBugs

-

-:: listBugDatabaseInfo

-if not "%firstArg%"=="-listBugDatabaseInfo" goto notListBugDatabaseInfo

-set fb_mainclass=edu.umd.cs.findbugs.workflow.ListBugDatabaseInfo

-goto shift1

-:notListBugDatabaseInfo

-

-:: mineBugHistory

-if not "%firstArg%"=="-mineBugHistory" goto notMineBugHistory

-set fb_mainclass=edu.umd.cs.findbugs.workflow.MineBugHistory

-goto shift1

-:notMineBugHistory

-

-:: printAppVersion

-if not "%firstArg%"=="-printAppVersion" goto notPrintAppVersion

-set fb_mainclass=edu.umd.cs.findbugs.workflow.PrintAppVersion

-goto shift1

-:notPrintAppVersion

-

-:: printClass

-if not "%firstArg%"=="-printClass" goto notPrintClass

-set fb_mainclass=edu.umd.cs.findbugs.workflow.PrintClass

-goto shift1

-:notPrintClass

-

-:: rejarForAnalysis

-if not "%firstArg%"=="-rejar" goto notRejar

-set fb_mainclass=edu.umd.cs.findbugs.workflow.RejarClassesForAnalysis

-goto shift1

-:notRejar

-

-:: setBugDatabaseInfo

-if not "%firstArg%"=="-setInfo" goto notSetBugDatabaseInfo

-set fb_mainclass=edu.umd.cs.findbugs.workflow.SetBugDatabaseInfo

-goto shift1

-:notSetBugDatabaseInfo

-

-:: unionBugs

-if not "%firstArg%"=="-unionBugs" goto notUnionBugs

-set fb_mainclass=edu.umd.cs.findbugs.workflow.UnionResults

-goto shift1

-:notUnionBugs

-

-:: xpathFind

-if not "%firstArg%"=="-xpathFind" goto notXPathFind

-set fb_mainclass=edu.umd.cs.findbugs.workflow.XPathFind

-goto shift1

-:notXPathFind

-

-if not "%firstArg%"=="-gui" goto notGui

-set launchUI=2

-set launcher=javaw.exe

-goto shift1

-:notGui

-

-if not "%firstArg%"=="-gui1" goto notGui1

-set launchUI=1

-set javaProps=-Dfindbugs.launchUI=1 %javaProps%

-set launcher=javaw.exe

-goto shift1

-:notGui1

-

-if not "%firstArg%"=="-textui" goto notTextui

-set launchUI=0

-set launcher=java.exe

-set start=

-goto shift1

-:notTextui

-

-if not "%firstArg%"=="-debug" goto notDebug

-set launcher=java.exe

-set start=

-set debugArg=-Dfindbugs.debug=true

-goto shift1

-:notDebug

-

-if not "%firstArg%"=="-help" goto notHelp

-set launchUI=help

-set launcher=java.exe

-set start=

-goto shift1

-:notHelp

-

-if not "%firstArg%"=="-version" goto notVersion

-set launchUI=version

-set launcher=java.exe

-set start=

-goto shift1

-:notVersion

-

-if "%firstArg%"=="-home" set FINDBUGS_HOME=%secondArg%

-if "%firstArg%"=="-home" goto shift2

-

-if "%firstArg%"=="-jvmArgs" set jvmargs=%secondArg%

-if "%firstArg%"=="-jvmArgs" goto shift2

-

-if "%firstArg%"=="-maxHeap" set maxheap=%secondArg%

-if "%firstArg%"=="-maxHeap" goto shift2

-

-if "%firstArg%"=="-conserveSpace" set conserveSpaceArg=-Dfindbugs.conserveSpace=true

-if "%firstArg%"=="-conserveSpace" goto shift1

-

-if "%firstArg%"=="-workHard" set workHardArg=-Dfindbugs.workHard=true

-if "%firstArg%"=="-workHard" goto shift1

-

-if "%firstArg%"=="-javahome" set javahome=%secondArg%\bin\

-if "%firstArg%"=="-javahome" goto shift2

-

-if "%firstArg%"=="-property" set javaProps=-D%secondArg% %javaProps%

-if "%firstArg%"=="-property" goto shift2

-

-if "%firstArg%"=="" goto launch

-

-set args=%args% "%firstArg%"

-goto shift1

-

-:: ----------------------------------------------------------------------

-:: Launch FindBugs

-:: ----------------------------------------------------------------------

-:launch

-:: Make sure FINDBUGS_HOME is set.

-:: If it isn't, try using the default value based on the

-:: directory path of the invoked script.

-:: Note that this will fail miserably if the value of FINDBUGS_HOME

-:: has quote characters in it.

-if not "%FINDBUGS_HOME%"=="" goto checkHomeValid

-set FINDBUGS_HOME=%default_findbugs_home%

-

-:checkHomeValid

-if not exist "%FINDBUGS_HOME%\lib\%appjar%" goto homeNotSet

-

-:found_home

-:: Launch FindBugs!

-if "%fb_mainclass%"=="" goto runJar

-"%javahome%%launcher%" %debugArg% %conserveSpaceArg% %workHardArg% %javaProps% "-Dfindbugs.home=%FINDBUGS_HOME%" -Xmx%maxheap%m %jvmargs% "-Dfindbugs.launchUI=%launchUI%" -cp "%FINDBUGS_HOME%\lib\%appjar%" %fb_mainclass% %args%

-goto end

-:runjar

-%start% "%javahome%%launcher%" %debugArg% %conserveSpaceArg% %workHardArg% %javaProps% "-Dfindbugs.home=%FINDBUGS_HOME%" -Xmx%maxheap%m %jvmargs% "-Dfindbugs.launchUI=%launchUI%" -jar "%FINDBUGS_HOME%\lib\%appjar%" %args%

-goto end

-

-:: ----------------------------------------------------------------------

-:: Report that FINDBUGS_HOME is not set (and was not specified)

-:: ----------------------------------------------------------------------

-:homeNotSet

-echo Could not find FindBugs home directory.  There may be a problem

-echo with the FindBugs installation.  Try setting FINDBUGS_HOME, or

-echo re-installing.

-goto end

-

-:end

diff --git a/tools/findbugs/bin/findbugs.ico b/tools/findbugs/bin/findbugs.ico
deleted file mode 100755
index 834ff37..0000000
--- a/tools/findbugs/bin/findbugs.ico
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/bin/findbugs2 b/tools/findbugs/bin/findbugs2
deleted file mode 100755
index 1367e3d..0000000
--- a/tools/findbugs/bin/findbugs2
+++ /dev/null
@@ -1,177 +0,0 @@
-#! /bin/sh
-
-#
-# Simplified findbugs startup script.
-# This is an experiment.
-#
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-# Default UI is GUI2
-fb_launchui="2"
-
-#
-# Stuff we're going to pass to the JVM as JVM arguments.
-#
-jvm_debug=""
-jvm_maxheap="-Xmx768m"
-jvm_ea=""
-jvm_conservespace=""
-jvm_user_props=""
-
-#
-# Process command line args until we hit one we don't recognize.
-#
-finishedArgs=false
-while [ $# -gt 0 ] && [ "$finishedArgs" = "false" ]; do
-
-	arg=$1
-
-	case $arg in
-		-textui)
-			shift
-			fb_launchui="0"
-			;;
-
-		-gui)
-			shift
-			fb_launchui="2"
-			;;
-
-		-gui1)
-			shift
-			fb_launchui="1"
-			;;
-
-		-maxHeap)
-			shift
-			jvm_maxheap="-Xmx$1m"
-			shift
-			;;
-
-		-ea)
-			shift
-			jvm_ea="-ea"
-			;;
-
-		-javahome)
-			shift
-			fb_javacmd="$1/bin/java"
-			shift
-			;;
-
-		-debug)
-			shift
-			jvm_debug="-Dfindbugs.debug=true"
-			;;
-
-		-conserveSpace)
-			shift
-			jvm_conservespace="-Dfindbugs.conserveSpace=true"
-			;;
-
-		-property)
-			shift
-			jvm_user_props="-D$1 $jvm_user_props"
-			shift
-			;;
-	
-		-D*=*)
-			jvm_user_props="$1 $user_props"
-			shift
-			;;
-
-		-version)
-			shift
-			fb_launchui="version"
-			;;
-
-		-help)
-			shift
-			fb_launchui="help"
-			;;
-
-		# All arguments starting from the first unrecognized arguments
-		# are passed on to the Java app.
-		*)
-			finishedArgs=true
-			;;
-	esac
-
-done
-
-# Extra JVM args for MacOSX.
-if [ $fb_osname = "Darwin" ]; then
-	fb_jvmargs="$fb_jvmargs \
-		-Xdock:name=FindBugs -Xdock:icon=${findbugs_home}/lib/buggy.icns \
-		-Dapple.laf.useScreenMenuBar=true"
-fi
-
-#
-# Launch JVM
-#
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home" \
-	$jvm_debug $jvm_maxheap $jvm_ea $jvm_conservespace $jvm_user_props \
-	-Dfindbugs.launchUI=$fb_launchui \
-	-jar $findbugs_home/lib/findbugs.jar \
-	${@:+"$@"}
diff --git a/tools/findbugs/bin/listBugDatabaseInfo b/tools/findbugs/bin/listBugDatabaseInfo
deleted file mode 100755
index 891f455..0000000
--- a/tools/findbugs/bin/listBugDatabaseInfo
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.ListBugDatabaseInfo
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/mineBugHistory b/tools/findbugs/bin/mineBugHistory
deleted file mode 100755
index 520aa83..0000000
--- a/tools/findbugs/bin/mineBugHistory
+++ /dev/null
@@ -1,73 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.MineBugHistory
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
diff --git a/tools/findbugs/bin/printAppVersion b/tools/findbugs/bin/printAppVersion
deleted file mode 100755
index 7994b8c..0000000
--- a/tools/findbugs/bin/printAppVersion
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.PrintAppVersion
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/printClass b/tools/findbugs/bin/printClass
deleted file mode 100755
index 0b76853..0000000
--- a/tools/findbugs/bin/printClass
+++ /dev/null
@@ -1,73 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.visitclass.PrintClass
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
diff --git a/tools/findbugs/bin/rejarForAnalysis b/tools/findbugs/bin/rejarForAnalysis
deleted file mode 100755
index 20877ee..0000000
--- a/tools/findbugs/bin/rejarForAnalysis
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.RejarClassesForAnalysis
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/setBugDatabaseInfo b/tools/findbugs/bin/setBugDatabaseInfo
deleted file mode 100755
index b1e8ec7..0000000
--- a/tools/findbugs/bin/setBugDatabaseInfo
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.SetBugDatabaseInfo
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/unionBugs b/tools/findbugs/bin/unionBugs
deleted file mode 100755
index 01d2126..0000000
--- a/tools/findbugs/bin/unionBugs
+++ /dev/null
@@ -1,80 +0,0 @@
-#! /bin/sh
-
-# Deprecated
-
-# Create the union of two results files, preserving
-# annotations in both files in the result.
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.workflow.UnionResults
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/bin/xpathFind b/tools/findbugs/bin/xpathFind
deleted file mode 100755
index c0bd5e9..0000000
--- a/tools/findbugs/bin/xpathFind
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-
-program="$0"
-
-# Follow symlinks until we get to the actual file.
-while [ -h "$program" ]; do
-	link=`ls -ld "$program"`
-	link=`expr "$link" : '.*-> \(.*\)'`
-	if [ "`expr "$link" : '/.*'`" = 0 ]; then
-		# Relative
-		dir=`dirname "$program"`
-		program="$dir/$link"
-	else
-		# Absolute
-		program="$link"
-	fi
-done
-
-# Assume findbugs home directory is the parent
-# of the directory containing the script (which should
-# normally be "$findbugs_home/bin").
-dir=`dirname "$program"`
-findbugs_home="$dir/.."
-
-# Handle FHS-compliant installations (e.g., Fink)
-if [ -d "$findbugs_home/share/findbugs" ]; then
-	findbugs_home="$findbugs_home/share/findbugs"
-fi
-
-# Make absolute
-findbugs_home=`cd "$findbugs_home" && pwd`
-
-fb_pathsep=':'
-
-# Handle cygwin, courtesy of Peter D. Stout
-fb_osname=`uname`
-if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-	findbugs_home=`cygpath --mixed "$findbugs_home"`
-	fb_pathsep=';'
-fi
-# Handle MKS, courtesy of Kelly O'Hair
-if [ "${fb_osname}" = "Windows_NT" ]; then
-	fb_pathsep=';'
-fi
-
-if [ ! -d "$findbugs_home" ]; then
-	echo "The path $findbugs_home,"
-	echo "which is where I think FindBugs is located,"
-	echo "does not seem to be a directory."
-	exit 1
-fi
-
-# Choose default java binary
-fb_javacmd=java
-if [ ! -z "$JAVA_HOME" ] && [ -x "$JAVA_HOME/bin/java" ]; then
-	if [ `expr "$fb_osname" : CYGWIN` -ne 0 ]; then
-		fb_javacmd=`cygpath --mixed "$JAVA_HOME"`/bin/java
-	else
-		fb_javacmd="$JAVA_HOME/bin/java"
-	fi
-fi
-
-fb_mainclass=edu.umd.cs.findbugs.xml.XPathFind
-
-fb_javacmd=${fb_javacmd:-"java"}
-fb_maxheap=${fb_maxheap:-"-Xmx768m"}
-fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"}
-set -f
-#echo command: \
-exec "$fb_javacmd" \
-	-classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
-	-Dfindbugs.home="$findbugs_home"\
-	$fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs
-
-# vim:ts=3
diff --git a/tools/findbugs/doc/AddingDetectors.txt b/tools/findbugs/doc/AddingDetectors.txt
deleted file mode 100644
index 131e690..0000000
--- a/tools/findbugs/doc/AddingDetectors.txt
+++ /dev/null
@@ -1,237 +0,0 @@
-Adding Detectors to FindBugs
-May 12, 2003
-Updated June 6, 2003 (detector meta-information, cleanups)
-
-===============
-1. Introduction
-===============
-
-FindBugs uses a plugin-based approach to adding detectors.
-This makes it easy for users to add their own detectors alongside
-the ones that come built in.
-
-Basic idea: FindBugs has some Jar files in a "plugins" directory.
-At startup, each of those jar files is checked for a "findbugs.xml"
-file.  That XML file registers instances of Detectors, as well
-as particular "bug patterns" that the detector reports.
-
-Additionally to the findbugs.xml, bugrank.txt and messages.xml files are
-required for each FindBugs detector plugin.
-
-At startup, FindBugs loads all plugin Jar files.  At analysis time,
-all detectors named in the findbugs.xml files from those plugins
-are instantiated and applied to analyzed class files.
-
-In order to format reported BugInstances as text for display,
-a messages file is loaded from the plugin.  In order to support multiple
-language translations, a locale search is performed in a manner
-similar to the handling of resource bundles.  For example, if the
-locale is "pt_BR", then the files
-
-  messages_pt_BR.xml
-  messages_pt.xml
-  messages.xml
-
-are tried, in that order.
-
-The "findbugs.xml" and "messages.xml" files used by the standard FindBugs
-bug pattern detectors (coreplugin.jar) can be found in the "etc" directory
-of the findbugs source distribution. Both files must be UTF-8 encoded.
-
-
-============================
-2. Example findbugs.xml file
-============================
-
-<DetectorPlugin>
-
-  <Detector class="org.foobar.findbugs.FindUnreleasedLocks" speed="slow" />
-  <Detector class="org.foobar.findbugs.ExperimentalDetector" speed="fast" disabled="true" />
-
-  <!-- More Detector elements would go here... -->
-
-  <BugPattern type="UBL_UNRELEASED_LOCK" abbrev="UL" category="MT_CORRECTNESS" />
-
-  <!-- More BugPattern elements would go here... -->
-
-</DetectorPlugin>
-
-
-======================================
-3. Meaning of elements in findbugs.xml
-======================================
-
-  <DetectorPlugin> a collection of <Detector> and <BugPattern> elements.
-  Each plugin Jar file can (and usually will) provide multiple detectors
-  and define multiple bug patterns.
-
-  <Detector> specifies a class which implements the edu.umd.cs.findbugs.Detector
-  interface and has a constructor that takes a single parameter of type
-  edu.umd.cs.findbugs.BugReporter.  This element has three possible attributes:
-
-    1. The required "class" attribute specifies the Detector class.
-
-    2. The optional "disabled" attribute, if set to "true", means
-       that by default, the detector will be disabled at runtime.
-       This is useful for detectors that aren't quite ready for prime time.
-
-    3. The required "speed" attribute supplies a value to be shown in the
-       "Settings->Configure Detectors" dialog.  It gives the user an idea of
-       how expensive the analysis will be to perform.  The value of this
-       attribute should be one of "fast", "moderate", or "slow".
-
-  <BugPattern> specifies a kind of bug that will be reported.
-  It has three required attributes:
-
-    1. "type" is a unique code identifying the bug.  Only one BugPattern
-       can have a a particular type.
-
-    2. "abbrev" is a short alphanumeric code for the bug.
-       Note that multiple BugPatterns can use the same abbreviation
-       if they are related.  (See the BugCode element in messages.xml).
-
-    3. "category" can be one of categories defined in the core plugin's messages.xml:
-
-       CORRECTNESS - code that was probably not what the developer intended
-       BAD_PRACTICE - violations of recommended and essential coding practice
-       STYLE - code that is confusing, anomalous, or written in a way that that leads itself to errors
-       MT_CORRECTNESS - multithreaded correctness issues
-       MALICIOUS_CODE - a potential vulnerability if exposed to malicious code
-       PERFORMANCE - a performance issue
-       I18N - internationalization and locale
-
-       or you may create your own category, in which case you should define
-       it in a <BugCategory> element in _your_ messages.xml file.
-
-============================
-4. Example messages.xml file
-============================
-
-<MessageCollection>
-
-  <Detector class="org.foobar.findbugs.FindUnreleasedLocks" >
-    <Details>
-      <![CDATA[
-        <p> This detector looks for JSR-166 locks that are not released on all paths
-        out of a method.  Because it performs dataflow analysis, it is fairly slow.
-      ]]>
-    </Details>
-  </Detector>
-
-  <!-- More Detector nodes would go here... -->
-
-  <BugPattern type="UBL_UNRELEASED_LOCK">
-    <ShortDescription>Lock not released on all paths out of method</ShortDescription>
-
-    <LongDescription>{1} does not release lock on all paths out of method</LongDescription>
-
-    <Details>
-      <![CDATA[
-        <p> A JSR-166 lock acquired in this method is not released on all paths
-        out of the method. This could result in a deadlock if another thread
-        tries to acquire the lock.  Generally, you should use a finally
-        block to ensure that acquired locks are always released.
-      ]]>
-    </Details>
-  </BugPattern>
-
-  <!-- More BugPattern nodes would go here... -->
-
-  <BugCode abbrev="UL">Unreleased locks</BugCode>
-
-  <!-- More BugCode nodes would go here... -->
-
-</MessageCollection>
-
-
-======================================
-5. Meaning of elements in messages.xml
-======================================
-
-  <MessageCollection> is the top level element
-
-  <BugCategory> elements optionally describe any categories you
-  may have created for your bug patterns. You can skip these if
-  you are using only the categories defined by the core plugin.
-
-    The <Description> child element has a brief (a word or three)
-    description of the category. The <Abbreviation> child element
-    is typically a single capital latter. The optional <Details>
-    child element may describe it in more detail (but no markup).
-
-  <Detector> holds meta-information about a Detector in the plugin.
-  The required "class" attribute specifies the Detector class.
-  Detector elements much have the following child elements:
-
-    The <Details> child element has a brief HTML description of the Detector.
-    It should have HTML markup that would be valid in a BODY element.
-    It should be specified in a CDATA section so that the HTML
-    tags are not misinterpreted as XML.
-
-  <BugPattern> holds all of the human-readable messages for the bug pattern
-  identified by the "type" attribute.  The type corresponds to the
-  type attribute of the BugPattern elements described in findbugs.xml.
-  BugPattern elements must have the following child elements:
-
-    <ShortDescription> this is used for when "View->Full Descriptions"
-    is turned off in the GUI, and it's also used as the title for
-    descriptions in the Details window.
-
-    <LongDescription> this is used for when "View->Full Descriptions"
-    is turned on in the GUI, and for output using the command line UI.
-    The placeholders in the long description ({0}, {1}, etc.)
-    refer to BugAnnotations attached to the BugInstances reported by
-    the detector for this bug pattern. You may also use constructs
-    like {1.name} or {1.returnType}.
-
-    <Details> this is the descriptive text to be used in the Details
-    window.  It consists of HTML markup to appear in the BODY element of an HTML
-    document.  It should be specified in a CDATA section so that the HTML
-    tags are not misinterpreted as XML.
-
-    <BugCode> is the text which describes the common characteristic of all
-    of the BugPatterns which share an abbreviation.  In the example above,
-    the abbreviation "UL" is for bugs in which a lock is not released.
-    The text of a BugCode element is shown for tree nodes in the GUI
-    which group bug instances by "bug type".
-
-======================================
-6. Meaning of elements in bugrank.txt
-======================================
-
-For the detailed and up to date information, please read the javadoc of the
-edu.umd.cs.findbugs.BugRanker class.
-
-============================================
-7. Using 3rd party libraries in the detector
-============================================
-
-FindBugs plugins may extend the default FindBugs classpath and use custom 3rd party
-libraries during the analysis. This libraries must be part of standard jar class path
-specified via "ClassPath" attribute in the META-INF/MANIFEST.MF file.
-
-======================================
-8. Adding detectors to Eclipse plugin
-======================================
-
-Since version 2.0.0 Eclipse plugin allows to configure or contribute custom detectors.
-
-7.1. It is possible to contribute custom detectors via standard Eclipse extensions mechanism.
-Please check the documentation of the "findBugsEclipsePlugin/schema/detectorPlugins.exsd"
-extension point how to update the plugin.xml. Existing FindBugs detector plugins can
-be easily "extended" to be full featured FindBugs & Eclipse detector plugins.
-Usually you only need to add META-INF/MANIFEST.MF and plugin.xml to the jar and
-update your build scripts to not to override the MANIFEST.MF during the build.
-
-7.2 It is possible to configure custom detectors via Eclipse workspace preferences.
-Go to "Window->Preferences->Java->FindBugs->Misc. Settings->Custom Detectors"
-and specify there locations of any additional plugin libraries.
-
-7.3 Plugins contributed via standard Eclipse extensions mechanism (see 7.1)
-may extend the default FindBugs classpath and use custom libraries during the analysis.
-This libraries must be part of standard Eclipse plugin dependencies specified via
-either "Require-Bundle" or "Bundle-ClassPath" attributes in the MANIFEST.MF file.
-In case custom detectors need access to this custom libraries at runtime, an
-extra line must be added to the MANIFEST.MF (without quotation marks):
-"Eclipse-RegisterBuddy: edu.umd.cs.findbugs.plugin.eclipse".
-
diff --git a/tools/findbugs/doc/Changes.html b/tools/findbugs/doc/Changes.html
deleted file mode 100644
index 21b4551..0000000
--- a/tools/findbugs/doc/Changes.html
+++ /dev/null
@@ -1,2810 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<title>FindBugs Change Log</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-
-<body>
-
-	<table width="100%">
-		<tr>
-
-			
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-			<td align="left" valign="top">
-
-
-				<h1>FindBugs Change Log, Version 2.0.3</h1>
-				<ul>
-					<li>New Bug patterns: <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#DM_BOXED_PRIMITIVE_FOR_PARSING">DM_BOXED_PRIMITIVE_FOR_PARSING</a>,
-						<a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_METHOD_RETURN_RELAXING_ANNOTATION">NP_METHOD_RETURN_RELAXING_ANNOTATION</a>,
-						and 
-						<a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION">NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION</a>
-					</li>
-					<li>Add the ability in the GUI to save the currently viewable/filtered bugs to HTML output.
-					<li>When dataflow does't terminate, make sure we continue with
-						analysis.
-					
-					<li>Fix some problems that resulting in dataflow analysis not
-						terminating
-					
-					<li>Get parameter annotations from default parameters
-						annotations applied to the method.
-					<li>Add subversion change number to eclipse plugin qualifier.
-					
-					<li>Disabled detector for <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#AM_CREATES_EMPTY_JAR_FILE_ENTRY">AM_CREATES_EMPTY_JAR_FILE_ENTRY</a>;
-						it complaints inappropriately about code that creates directory
-						entries.
-					
-					<li>Add warnings about incompatible types passed to
-						org.testng.Assert.assertEquals</li>
-					<li>Add logic that understands more of the Google Guava APIs.
-					<li>Disable type qualifier validator execution within Eclipse plugin; 
-						too many problems with class loading and security manager (see #1154 Random obscure Eclipse failures)
-					<li>Consistently check both access flags and attributes to see if something is synthetic. Compiler is 
-					inconsistent about where synthetic elements are marked. 
-					
-				<li>Fixed false positives for the following bug patterns (17
-						occurrences in findbugsTestCases):
-						<ul>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#BC">BC</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#BC_IMPOSSIBLE_INSTANCEOF">BC_IMPOSSIBLE_INSTANCEOF</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#BC_UNCONFIRMED_CAST">BC_UNCONFIRMED_CAST</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#EC_UNRELATED_TYPES">EC_UNRELATED_TYPES</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#INT_BAD_COMPARISON_WITH_NONNEGATIVE_VALUE">INT_BAD_COMPARISON_WITH_NONNEGATIVE_VALUE</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#IS2_INCONSISTENT_SYNC">IS2_INCONSISTENT_SYNC</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS">NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#OBL_UNSATISFIED_OBLIGATION">OBL_UNSATISFIED_OBLIGATION</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE">RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#SA_FIELD_SELF_COMPARISON">SA_FIELD_SELF_COMPARISON</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED">TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED</a>
-							</li>
-						</ul>
-					<li>Fixed false negatives for the following bug patterns (45
-						occurrences in findbugsTestCases):
-						<ul>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#BC_UNCONFIRMED_CAST">BC_UNCONFIRMED_CAST</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#DM_NUMBER_CTOR">DM_NUMBER_CTOR</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#EC_ARRAY_AND_NONARRAY">EC_ARRAY_AND_NONARRAY</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#EC_INCOMPATIBLE_ARRAY_COMPARE">EC_INCOMPATIBLE_ARRAY_COMPARE</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#EC_UNRELATED_TYPES">EC_UNRELATED_TYPES</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#GC_UNRELATED_TYPES">GC_UNRELATED_TYPES</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#IS_FIELD_NOT_GUARDED">IS_FIELD_NOT_GUARDED</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#IT_NO_SUCH_ELEMENT">IT_NO_SUCH_ELEMENT</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#JCIP_FIELD_ISNT_FINAL_IN_IMMUTABLE_CLASS">JCIP_FIELD_ISNT_FINAL_IN_IMMUTABLE_CLASS</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_NULL_ON_SOME_PATH">NP_NULL_ON_SOME_PATH</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_NONNULL_PARAM_VIOLATION">NP_NONNULL_PARAM_VIOLATION</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE">NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE">NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_STORE_INTO_NONNULL_FIELD">NP_STORE_INTO_NONNULL_FIELD</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#RE_POSSIBLE_UNINTENDED_PATTERN">RE_POSSIBLE_UNINTENDED_PATTERN</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#SA_FIELD_SELF_COMPARISON">SA_FIELD_SELF_COMPARISON</a>
-						</ul>
-				</ul>
-				<h1>FindBugs Change Log, Version 2.0.2</h1>
-				
-				<ul>
-					<li>Fix false positions for <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR">NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR</a>
-						- fixing <a
-						href="https://sourceforge.net/tracker/?func=detail&aid=3547559&group_id=96405&atid=614693">Bug3547559</a>,
-						<a
-						href="https://sourceforge.net/tracker/?func=detail&aid=3555408&group_id=96405&atid=614693">Bug3555408</a>,
-						<a
-						href="https://sourceforge.net/tracker/?func=detail&aid=3580266&group_id=96405&atid=614693">Bug3580266</a>
-						and <a
-						href="https://sourceforge.net/tracker/?func=detail&aid=3587164&group_id=96405&atid=614693">Bug3587164</a>.
-
-
-					</li>
-					<li>Fix false positives for <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#SF_SWITCH_NO_DEFAULT">SF_SWITCH_NO_DEFAULT</a>
-					<li>Inline access methods for private fields,
-                    fixing false positive in  <a
-                        href="https://sourceforge.net/tracker/?func=detail&aid=3484713&group_id=96405&atid=614693">Bug3484713</a>.
-            
-                    <li>Type qualifier annotations, including nullness
-						annotations, are now ignored on vararg parameters (including
-						default and inherited annotations), awaiting JSR308.
-					<li>Defined new bug pattern to give better explanations of
-						issues involving strict type qualifiers <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED">TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED</a>
-					<li>Adjusted analysis of type qualifiers, now giving warnings
-						where a computed value is used in a place where a value with a
-						strict type qualifier is required.
-					<li>Complain about missing classes only if they are
-						encountered while analyzing application classes; ignore missing
-						classes that are encounted while analyzing classes loaded from the
-						auxclasspath. Fix for <a
-						href="https://sourceforge.net/tracker/?func=detail&aid=3588379&group_id=96405&atid=614693">Bug3588379</a>
-					<li>Fixed false positive null pointer warning coming from
-						synthetic bridge methods, fixing <a
-						href="https://sourceforge.net/tracker/?func=detail&aid=3589328&group_id=96405&atid=614693">Bug3589328</a>
-					<li>In general, suppress warnings in synthetic methods.
-					<li>Fix some false positives involving <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#GC_UNRELATED_TYPES">GC_UNRELATED_TYPES</a>
-						on classes that extend generic collection classes.
-                       
-					</li>
-                    <li>Combine multiple identical warnings about 
-                     <a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#DM_DEFAULT_ENCODING">DM_DEFAULT_ENCODING</a>
-                         that occur in the same method,
-                    simplifying issue triage.
-                    
-					<li>Changes by Andrey Loskutov
-						<ul>
-							<li>fixed job scheduling errors in 3.8/4.2 Eclipse <a
-								href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=393748">bug
-									report</a>
-							<li>more realistic progress bar updates for jobs
-							<li>added nullness annotations for some common Eclipse API
-								methods known to usually return null values
-							<li>Added support for org.eclipse.jdt.annotation.Nullable,
-								NonNull and NonNullByDefault annotations (introduced with
-								Eclipse 3.8/4.2)</li>
-						</ul>
-					<li>Documentation improvements
-					<li><a href="http://code.google.com/p/findbugs/source/list">lots
-							of other small changes</a>
-				</ul>
-				<h1>FindBugs Change Log, Version 2.0.1</h1>
-
-				<ul>
-					<li>New bug patterns; in some cases, bugs previous reported as
-						other bug patterns are reported as instances of these new bug
-						patterns in order to make it easier for developers to understand
-						the bug reports
-						<ul>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#PT_ABSOLUTE_PATH_TRAVERSAL">PT_ABSOLUTE_PATH_TRAVERSAL</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#PT_RELATIVE_PATH_TRAVERSAL">PT_RELATIVE_PATH_TRAVERSAL</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR">NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#MS_SHOULD_BE_REFACTORED_TO_BE_FINAL">MS_SHOULD_BE_REFACTORED_TO_BE_FINAL</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#BC_UNCONFIRMED_CAST_OF_RETURN_VALUE">BC_UNCONFIRMED_CAST_OF_RETURN_VALUE</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#PT_ABSOLUTE_PATH_TRAVERSAL">PT_ABSOLUTE_PATH_TRAVERSAL</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#TQ_COMPARING_VALUES_WITH_INCOMPATIBLE_TYPE_QUALIFIERS">TQ_COMPARING_VALUES_WITH_INCOMPATIBLE_TYPE_QUALIFIERS</a></li>
-						</ul>
-					</li>
-
-					<li>Changes to fix false negatives for the following bug
-						patterns: <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#BC_UNCONFIRMED_CAST">BC_UNCONFIRMED_CAST</a>,
-						<a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#EC_BAD_ARRAY_COMPARE">EC_BAD_ARRAY_COMPARE</a>,
-						<a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#EQ_UNUSUAL">EQ_UNUSUAL</a>,
-						<a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#GC_UNRELATED_TYPES">GC_UNRELATED_TYPES</a>,
-						and <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE">NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE</a>.
-					</li>
-
-					<li>Changes to fix false positions for the following bug
-						patterns: <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#DMI_DOH">DMI_DOH</a>,
-						<a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#EC_UNRELATED_TYPES">EC_UNRELATED_TYPES</a>,
-						and <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#SE_BAD_FIELD">SE_BAD_FIELD</a>.
-					</li>
-				</ul>
-
-				<h1>FindBugs Change Log, Version 2.0.0</h1>
-
-				<h2>Changes since version 1.3.8</h2>
-				<ul>
-					<li>New bug patterns; in some cases, bugs previous reported as
-						other bug patterns are reported as instances of these new bug
-						patterns in order to make it easier for developers to understand
-						the bug reports
-						<ul>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#BC_IMPOSSIBLE_DOWNCAST ">BC_IMPOSSIBLE_DOWNCAST
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY ">BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#EC_INCOMPATIBLE_ARRAY_COMPARE ">EC_INCOMPATIBLE_ARRAY_COMPARE
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#JLM_JSR166_UTILCONCURRENT_MONITORENTER ">JLM_JSR166_UTILCONCURRENT_MONITORENTER
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE ">LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_CLOSING_NULL ">NP_CLOSING_NULL
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#RC_REF_COMPARISON_BAD_PRACTICE ">RC_REF_COMPARISON_BAD_PRACTICE
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN ">RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED ">RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#SIC_THREADLOCAL_DEADLY_EMBRACE ">SIC_THREADLOCAL_DEADLY_EMBRACE
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR ">UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR
-							</a></li>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED ">VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED
-							</a></li>
-						</ul>
-					</li>
-					<li>Providing a bug rank (1-20), and the ability to filter by
-						bug rank. Eventually, it will be possible to specify your own
-						rules for ranking bugs, but the procedure for doing so hasn't been
-						specified yet.</li>
-					<li>Fixed about <a
-						href="https://sourceforge.net/search/index.php?group_id=96405&search_summary=1&search_details=1&type_of_search=artifact&group_artifact_id%5B%5D=614693&open_date_start=2009-03-16&open_date_end=2009-08-20&form_submit=Search">45
-							bugs filed</a> through SourceForge
-					</li>
-					<li>Various reclassifications and priority tweaks</li>
-					<li>Added more bug annotations to a variety of bug reports.
-						This provides more context for understanding bug reports (e.g., if
-						the value in question was is the return value of a method, the
-						method is described as the source of the value in a bug
-						annotation). This also provide more accurate tracking of issues
-						across versions of the code being analyzed, but has the downside
-						that when comparing results from FindBugs 1.3.8 and FindBugs 1.3.9
-						on the same version of code being analyzed, FindBugs may think
-						that mistakenly believe that the issue reported by 1.3.8 was fixed
-						and a new issue was introduced that was reported by FindBugs
-						1.3.9. While annoying, it would be unusual for more than a dozen
-						issues per million lines of codes to be mistracked.</li>
-					<li>Lots of internal changes moving towards FindBugs 2.0, but
-						these features are undocumented, not yet officially supported, and
-						subject to radical changes before FindBugs 2.0 is released.</li>
-				</ul>
-
-				<p>Changes since version 1.3.8</p>
-				<ul>
-					<li>New bug patterns; in some cases, bugs previous reported as
-						other bug patterns are reported as instances of these new bug
-						patterns in order to make it easier for developers to understand
-						the bug reports
-						<ul>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#BC_IMPOSSIBLE_DOWNCAST ">BC_IMPOSSIBLE_DOWNCAST
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY ">BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#EC_INCOMPATIBLE_ARRAY_COMPARE ">EC_INCOMPATIBLE_ARRAY_COMPARE
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#JLM_JSR166_UTILCONCURRENT_MONITORENTER ">JLM_JSR166_UTILCONCURRENT_MONITORENTER
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE ">LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_CLOSING_NULL ">NP_CLOSING_NULL
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#RC_REF_COMPARISON_BAD_PRACTICE ">RC_REF_COMPARISON_BAD_PRACTICE
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN ">RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED ">RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#SIC_THREADLOCAL_DEADLY_EMBRACE ">SIC_THREADLOCAL_DEADLY_EMBRACE
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR ">UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR
-							</a>
-							<li><a
-								href="http://findbugs.sourceforge.net/bugDescriptions.html#VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED ">VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED
-							</a>
-						</ul>
-					</li>
-					<li>Providing a bug rank (1-20), and the ability to filter by
-						bug rank. Eventually, it will be possible to specify your own
-						rules for ranking bugs, but the procedure for doing so hasn't been
-						specified yet.</li>
-					<li>Fixed about <a
-						href="https://sourceforge.net/search/index.php?group_id=96405&search_summary=1&search_details=1&type_of_search=artifact&group_artifact_id%5B%5D=614693&open_date_start=2009-03-16&open_date_end=2009-08-20&form_submit=Search">45
-							bugs filed</a> through SourceForge
-					</li>
-					<li>Various reclassifications and priority tweaks</li>
-					<li>Added more bug annotations to a variety of bug reports.
-						This provides more context for understanding bug reports (e.g., if
-						the value in question was is the return value of a method, the
-						method is described as the source of the value in a bug
-						annotation). This also provide more accurate tracking of issues
-						across versions of the code being analyzed, but has the downside
-						that when comparing results from FindBugs 1.3.8 and FindBugs 1.3.9
-						on the same version of code being analyzed, FindBugs may think
-						that mistakenly believe that the issue reported by 1.3.8 was fixed
-						and a new issue was introduced that was reported by FindBugs
-						1.3.9. While annoying, it would be unusual for more than a dozen
-						issues per million lines of codes to be mistracked.</li>
-					<li>Lots of internal changes moving towards FindBugs 2.0, but
-						these features are undocumented, not yet officially supported, and
-						subject to radical changes before FindBugs 2.0 is released.</li>
-				</ul>
-
-				<p>Changes since version 1.3.7</p>
-				<ul>
-					<li>Primarily another small bugfix release.</li>
-					<li>FindBugs base:
-						<ul>
-							<li>New Reports:
-								<ul>
-									<li>SF_SWITCH_NO_DEFAULT: missing default case in switch
-										statement.</li>
-									<li>SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH_TO_THROW:
-										value ignored when switch fallthrough leads to thrown
-										exception.</li>
-									<li>INT_VACUOUS_BIT_OPERATION: bit operations that don't
-										do any meaningful work.</li>
-									<li>FB_UNEXPECTED_WARNING: warning generated that
-										conflicts with @NoWarning FindBugs annotation.</li>
-									<li>FB_MISSING_EXPECTED_WARNING: warning not generated
-										despite presence of @ExpectedWarning FindBugs annotation.</li>
-									<li>NOISE category: intended for use in data mining
-										experiments.
-										<ul>
-											<li>NOISE_NULL_DEREFERENCE: fake null point dereference
-												warning.</li>
-											<li>NOISE_METHOD_CALL: fake method call warning.</li>
-											<li>NOISE_FIELD_REFERENCE: fake field dereference
-												warning.</li>
-											<li>NOISE_OPERATION: fake operation warning.</li>
-										</ul>
-									</li>
-								</ul>
-							</li>
-							<li>Other:
-								<ul>
-									<li>Garvin Leclaire has created a new Apache Maven
-										repository for FindBugs at <a
-										href="http://code.google.com/p/findbugs/">the Google Code
-											FindBugs SVN repository</a>. (Thanks Garvin!)
-									</li>
-								</ul>
-							</li>
-							<li>Fixes:
-								<ul>
-									<li>[ 2317842 ] Highlighting broken in Windows</li>
-									<li>[ 2515908 ] check for oddness should track sign of
-										argument</li>
-									<li>[ 2487936 ] &quot;L B GC&quot; false pos cast from
-										Map.Entry.getKey() to Map.get()</li>
-									<li>[ 2528264 ] Ant tasks not compatible with Ant 1.7.1</li>
-									<li>[ 2539590 ] SF_SWITCH_FALLTHROUGH wrong message
-										reported</li>
-									<li>[ 2020066 ] Bug history displayed in fancy-hist.xsl is
-										incorrect</li>
-									<li>[ 2545098 ] Invalid character in analysis results file</li>
-									<li>[ 2492673 ] Plugin sites should specify &quot;requires
-										Eclipse 3.3 or newer&quot;</li>
-									<li>[ 2588044 ] a tiny typing error</li>
-									<li>[ 2589048 ] Documentation for convertXmlToText
-										insufficient</li>
-									<li>[ 2638739 ] NullPointerException when building</li>
-								</ul>
-							</li>
-							<li>Patches:
-								<ul>
-									<li>[ 2538184 ] Make BugCollection implement
-										Iterable&lt;BugInstance&gt; (thanks to Tomas Pollak)</li>
-									<li>[ 2249771 ] Add Maven2 Findbugs plugin link to the
-										Links page (thanks to Garvin Leclaire)</li>
-									<li>[ 2609526 ] Japanese manual update (thanks to K.
-										Hashimoto)</li>
-									<li>[ 2119482 ] CheckBcel checks for nonexistent classes
-										(thanks to Jerry James)</li>
-								</ul>
-							</li>
-						</ul>
-					</li>
-					<li>FindBugs Eclipse plugin:
-						<ul>
-							<li>Major feature enhancements (thanks to Andrey Loskutov).
-								See <a href="http://andrei.gmxhome.de/findbugs/index.html">this
-									overview</a> for more information.
-							</li>
-							<li>Major test improvements (thanks to Tomas Pollak).</li>
-							<li>Fixes:
-								<ul>
-									<li>[ 2532365 ] Compiler warning</li>
-									<li>[ 2522989 ] Fix filter files selection</li>
-									<li>[ 2504068 ] NullPointerException</li>
-									<li>[ 2640849 ] NPE in Eclipse plugin 1.3.7 and Eclipse
-										3.5 M5</li>
-								</ul>
-							</li>
-							<li>Patches:
-								<ul>
-									<li>[ 2143140 ] Unchecked conversion fixes for Eclipse
-										plugin (thanks to Jerry James)
-								</ul>
-							</li>
-						</ul>
-					</li>
-				</ul>
-
-				<p>Changes since version 1.3.6</p>
-				<ul>
-					<li>Overall, a small bugfix release.
-					<li>New detection of accidental vacuous/useless calls to
-						EasyMock methods, and of generic signatures that proclaim the use
-						of unhashable classes in ways that require that they be hashed.
-					<li>Eliminate some false positives where we were warning about
-						a useless call (e.g., comparing two incompatible types for
-						equality), but the only thing the code was doing with the result
-						was passing it to assertFalse.
-					<li>Japanese localization and manual by K.Hashimoto. (Thanks!)
-					
-					<li>Added -exclude and -outputDir command line options to
-						rejarForAnalysis
-					<li>Extended -adjustPriorities option to FindBugs analysis
-						textui so that you can modify the priorities of individual bug
-						patterns as well as visitors, and also completely suppress
-						individual bug patterns or visitors.
-						<ul>
-							<li>e.g., -adjustPriority
-								MS_SHOULD_BE_FINAL=suppress,MS_PKGPROTECT=suppress,EI_EXPOSE_REP=suppress,EI_EXPOSE_REP2=suppress,PZLA_PREFER_ZERO_LENGTH_ARRAYS=raise
-							
-						</ul>
-				</ul>
-
-
-				<p>Changes since version 1.3.5</p>
-				<ul>
-					<li>Added fairly exhaustive static analysis of uses of format
-						strings, checking for missing or extra arguements, invalid format
-						specifiers, or mismatched format specifiers and arguments (e.g,
-						passing a String value for a %d format specifier). The logic for
-						doing so is derived from Sun's java.util.Formatter class, and
-						available separately from FindBugs as part of the <a
-						href="https://jformatstring.dev.java.net/">jFormatString</a>
-						project.
-					<li>More tuning of the unsatisfied obligation detector. Since
-						this detector is still rather noisy and an unfinished research
-						project, I've moved the generated issues to a new category:
-						EXPERIMENTAL.
-					<li>Added check for <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#BIT_ADD_OF_SIGNED_BYTE">BIT_ADD_OF_SIGNED_BYTE</a>;
-						similar to <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#BIT_IOR_OF_SIGNED_BYTE">BIT_IOR_OF_SIGNED_BYTE</a>,
-						except that addition is being used to combine shifted signed
-						bytes.
-					<li>Changed detection of EI_EXPOSE_REP2, so we only report it
-						if the value stored is guaranteed to be the same value that was
-						passed in as a parameter.
-					<li>Added <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS">EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS</a>,
-						a warning when an equals method checks to see if an operand is an
-						instance of a class not compatible with itself. For example, if
-						the Foo class checks to see if the argument is an instance of
-						String. This is either a questionable design decision or a coding
-						mistake.
-					<li>Added <a
-						href="http://findbugs.sourceforge.net/bugDescriptions.html#DMI_INVOKING_HASHCODE_ON_ARRAY">DMI_INVOKING_HASHCODE_ON_ARRAY</a>,
-						which checks for invoking <code>hashCode()</code> on an array,
-						which returns a hash code that ignores the contents of the array.
-					
-					<li>Added checks for using <code>x.removeAll(x)</code> to
-						rather than <code>x.clear()</code> to clear an array.
-					<li>Add checks for calls such as <code>x.contains(x)</code>, <code>x.remove(x)</code>
-						and <code>x.containsAll(x)</code>.
-					<li>Improvements to Eclipse plugin (thanks to Andrey
-						Loskutov):
-						<ul>
-							<li>Report separate markers for each occurrence of an issue
-								that appears multiple times in a method
-							<li>fine tuning for reported markers: add only one marker
-								for fields, add marker on right position
-							<li>link bugs selected in bug explorer view to the opened
-								editor and vice versa
-							<li>select bugs selected in editor ruler in the opened bug
-								explorer view
-							<li>consistent abbreviations used in both bug explorer and
-								bug details view
-							<li>added "Expand All" button to the bug explorer view
-							<li>added "Go Into/Go Up" buttons to the bug explorer view
-							<li>added "Copy to clipboard" menu/functionality to the
-								details view list widget
-							<li>fix for CNF exception if loading the backup solution for
-								broken browser widget
-						</ul>
-				</ul>
-
-
-
-				<p>Changes since version 1.3.4</p>
-				<ul>
-					<li>Analysis about 15% faster
-					<li><a
-						href="http://sourceforge.net/tracker/?atid=614693&group_id=96405&func=browse&status=closed">38
-							bugs closed</a></li>
-					<li>New defect warnings:
-						<ul>
-							<li>calls to methods that always throw
-								UnsupportedOperationException (DMI_UNSUPPORTED_METHOD)
-							<li>repeated conditional tests (e.g., <code>if (x
-									&lt; 0 || x &lt; 0) ...</code>) (RpC_REPEATED_CONDITIONAL_TEST)
-							<li>Complete rewrite of detector for format string problems.
-								More accurate, finds more problems, generates more descriptive
-								reports, several different bug pattern
-								(VA_FORMAT_STRING_EXTRA_ARGUMENTS_PASSED,
-								VA_FORMAT_STRING_ILLEGAL, VA_FORMAT_STRING_MISSING_ARGUMENT,
-								VA_FORMAT_STRING_BAD_ARGUMENT,
-								VA_FORMAT_STRING_NO_PREVIOUS_ARGUMENT)
-							<li>Fairly complete implementation of JSR-305 custom type
-								qualifier analysis (no support for custom validators yet).
-								(TQ_MAYBE_SOURCE_VALUE_REACHES_NEVER_SINK
-								TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_ALWAYS_SINK
-								TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_NEVER_SINK)
-							<li>New detector for unsatisfied obligations such forgetting
-								to close a file (OBL_UNSATISFIED_OBLIGATION).
-							<li>Warning when a parameter is marked as nullable, but is
-								always dereferenced.
-								(NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE)
-							<lI>Separate warning for dereference the result of readLine
-								(NP_DEREFERENCE_OF_READLINE_VALUE)
-						</ul>
-					<li>When XML is generated with messages, the project stats now
-						include &lt;FileStat&gt; elements. For each source file, this
-						gives the path for the file, the total number of warnings for that
-						file, and a bugHash for the file. While the instanceHash for a bug
-						is intended to be version invariant (ignoring line numbers, etc),
-						the bugHash for a file is intended to reflect all the information
-						about the warnings in that file. The intended use case is that if
-						the bugHash for a file is the same in two analysis runs, then <em>nothing</em>
-						has changed about any of the warnings reported for that file
-						between the two analysis runs.
-					<li>More merging of similar issues within a method. For
-						example, if the result of readLine() is dereferences multiple
-						times within a method, it will be reported as a single warning
-						with occurrences at multiple source lines.
-				</ul>
-				<p>Changes since version 1.3.3</p>
-
-				<ul>
-					<li>FindBugs base
-						<ul>
-							<li>New Reports:
-								<ul>
-									<li>EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC: equals method
-										overrides equals in superclass and may not be symmetric</li>
-									<li>EQ_ALWAYS_TRUE: equals method always returns true</li>
-									<li>EQ_ALWAYS_FALSE: equals method always returns false</li>
-									<li>EQ_COMPARING_CLASS_NAMES: equals method compares class
-										names rather than class objects</li>
-									<li>EQ_UNUSUAL: Unusual equals method</li>
-									<li>EQ_GETCLASS_AND_CLASS_CONSTANT: equals method fails
-										for subtypes</li>
-									<li>SE_READ_RESOLVE_IS_STATIC: The readResolve method must
-										not be declared as a static method.</li>
-									<li>SE_PRIVATE_READ_RESOLVE_NOT_INHERITED: private
-										readResolve method not inherited by subclasses</li>
-									<li>MSF_MUTABLE_SERVLET_FIELD: Mutable servlet field</li>
-									<li>XSS_REQUEST_PARAMETER_TO_SEND_ERROR: Servlet reflected
-										cross site scripting vulnerability</li>
-									<li>SKIPPED_CLASS_TOO_BIG: Class too big for analysis</li>
-								</ul>
-							</li>
-							<li>Other:
-								<ul>
-									<li>Value-number analysis now more space-efficient</li>
-									<li>Enhancements to reduce memory overhead when analyzing
-										very large classes</li>
-									<li>Now skips very large classes that would otherwise take
-										too much time and memory to analyze</li>
-									<li>Infrastructure for tracking effectively-constant/
-										effectively-final fields</li>
-									<li>Added more cweids</li>
-									<li>Enhanced taint tracking for taint-based detectors</li>
-									<li>Ignore doomed calls to equals if result is used as an
-										argument to assertFalse</li>
-									<li>EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC handles compareTo</li>
-									<li>Priority tweak for ICAST_INTEGER_MULTIPLY_CAST_TO_LONG
-										(only low priority if multiplying by 1000)</li>
-									<li>Improved tracking of fields across method calls</li>
-								</ul>
-							</li>
-							<li>Fixes:
-								<ul>
-									<li>[ 1941450 ] DLS_DEAD_LOCAL_STORE not reported</li>
-									<li>[ 1953323 ] Omitted break statement in
-										SynchronizeAndNullCheckField</li>
-									<li>[ 1942620 ] Source Directories selection dialog
-										interface confusion (partial)</li>
-									<li>[ 1948275 ] Unhelpful "Load of known null"</li>
-									<li>[ 1933922 ] MWM error in findbugs</li>
-									<li>[ 1934772 ] 1.3.3 appears to rely on JDK 1.6, JNLP
-										still specifies 1.5</li>
-									<li>[ 1933945 ] -loadbugs doesn't work</li>
-									<li>Fixed problems for class names starting with '$'</li>
-									<li>Fixed bugs and incomplete handling of annotations in
-										VersionInsensitiveBugComparator</li>
-								</ul>
-							</li>
-							<li>Patches:
-								<ul>
-									<li>[ 1955106 ] Javadoc fixes</li>
-									<li>[ 1951930 ] Superfluous import statements (thanks to
-										Jerry James)</li>
-									<li>[ 1951907 ] Missing @Deprecated annotations (thanks to
-										Jerry James)</li>
-									<li>[ 1951876 ] Infonode Docking Windows compile fix
-										(thanks to Jerry James)</li>
-									<li>[ 1936055 ] bugfix for findbugs.de.comment not working
-										(thanks to Peter Fokkinga)
-								</ul>
-							</li>
-						</ul>
-					<li>FindBugs BlueJ plugin
-						<ul>
-							<li>Updated to use FindBugs 1.3.4 (first new release since
-								1.1.3)</li>
-						</ul>
-					</li>
-				</ul>
-
-				<p>Changes since version 1.3.2</p>
-
-				<ul>
-					<li>FindBugs base
-						<ul>
-							<li>New Detectors:
-								<ul>
-									<li>FieldItemSummary: Produces summary information for
-										what is stored into fields</li>
-									<li>SynchronizeOnClassLiteralNotGetClass: Look for code
-										that synchronizes on the results of getClass rather than on
-										class literals</li>
-									<li>SynchronizingOnContentsOfFieldToProtectField: This
-										detector looks for code that seems to be synchronizing on a
-										field in order to guard updates of that field</li>
-								</ul>
-							</li>
-							<li>New BugCode:
-								<ul>
-									<li>HRS: HTTP Response splitting vulnerability</li>
-									<li>WL: Possible locking on wrong object</li>
-								</ul>
-							</li>
-							<li>New Reports:
-								<ul>
-									<li>DMI_CONSTANT_DB_PASSWORD: This code creates a database
-										connect using a hard coded, constant password</li>
-									<li>HRS_REQUEST_PARAMETER_TO_COOKIE: HTTP cookie formed
-										from untrusted input</li>
-									<li>HRS_REQUEST_PARAMETER_TO_HTTP_HEADER: HTTP parameter
-										directly written to HTTP header output</li>
-									<li>CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE: Class defines
-										clone() but doesn't implement Cloneable</li>
-									<li>DL_SYNCHRONIZATION_ON_BOXED_PRIMITIVE: Synchronization
-										on boxed primitive could lead to deadlock</li>
-									<li>DL_SYNCHRONIZATION_ON_BOOLEAN: Synchronization on
-										Boolean could lead to deadlock</li>
-									<li>ML_SYNC_ON_FIELD_TO_GUARD_CHANGING_THAT_FIELD:
-										Synchronization on field in futile attempt to guard that field
-									</li>
-									<li>DLS_DEAD_LOCAL_STORE_IN_RETURN: Useless assignment in
-										return statement</li>
-									<li>WL_USING_GETCLASS_RATHER_THAN_CLASS_LITERAL:
-										Synchronization on getClass rather than class literal</li>
-								</ul>
-							</li>
-							<li>Other:
-								<ul>
-									<li>Many enhancements to cross-site scripting detector and
-										its documentation</li>
-									<li>Enhanced switch fall through handling</li>
-									<li>Enhanced unread field handling (look for IF_ACMPEQ and
-										IF_ACMPNE)</li>
-									<li>Clarified documentation for @Nullable in manual</li>
-									<li>Fewer DeadLocalStore false positives</li>
-									<li>Fewer UnreadField false positives</li>
-									<li>Fewer StaticCalendarDetector false positives</li>
-									<li>Performance fix for slow file system IO e.g. Clearcase
-										repositories (thanks, Andrei!)</li>
-									<li>Other, general performance enhancements (thanks,
-										Andrei!)</li>
-									<li>Enhancements for using FindBugs scripts with MKS on
-										Windows (thanks, Kelly O'Hair!)</li>
-									<li>Noted in the manual that jsr305.jar must be present
-										for annotations to compile</li>
-									<li>Added and fine-tuned default-nullness annotations</li>
-									<li>More CWE IDs added</li>
-									<li>Check and warning for unexpected BCEL version in
-										classpath</li>
-								</ul>
-							</li>
-							<li>Fixes:
-								<ul>
-									<li>Bug fix to handling of local variable tables in BCEL</li>
-									<li>Refined documentation for
-										MTIA_SUSPECT_STRUTS_INSTANCE_FIELD</li>
-									<li>[ 1927295 ] NPE when called on project root</li>
-									<li>[ 1926405 ] Incorrect dead store warning</li>
-									<li>[ 1926409 ] Incorrect redundant nullcheck warning</li>
-									<li>[ 1926389 ] Wrong line number printed/highlighted in
-										bug</li>
-									<li>[ 1927040 ] typo in bug description</li>
-									<li>[ 1926263 ] Minor glitch in HTML output</li>
-									<li>[ 1926240 ] Minor error in standard options in manual</li>
-									<li>[ 1926236 ] Minor bug in installation section of
-										manual</li>
-									<li>[ 1925539 ] ZIP is default file system code base</li>
-									<li>[ 1894701 ] Livelock / memory leak in
-										ObjectTypeFactory (thanks, Andrei!)</li>
-									<li>[ 1867491 ] Doesn't reload annotations after code
-										changes in IDE (thanks, Andrei!)</li>
-									<li>[ 1921399 ] -project option not supported</li>
-									<li>[ 1913834 ] "Dead" store to variable with method call</li>
-									<li>[ 1917352 ] H B se:...field in serializable class</li>
-									<li>[ 1911617 ] CloneIdiom relies on
-										getNameConstantOperand for INSTANCEOF</li>
-									<li>[ 1911620 ] False +: DLS predecrement before return</li>
-									<li>[ 1871376 ] False negative: non-serializable Map field</li>
-									<li>[ 1871051 ] non standard clone() method</li>
-									<li>[ 1908854 ] Error in TestASM</li>
-									<li>[ 1907539 ] 22 minor errors in bug checker
-										documentation</li>
-									<li>[ 1897323 ] EJB implementation class false positives</li>
-									<li>[ 1899648 ] Crash on startup on Vista with Java
-										1.6.0_04</li>
-								</ul>
-							</li>
-						</ul>
-					</li>
-					<li>FindBugs Eclipse plugin (change log by Andrey Loskutov)
-						<ul>
-							<li>new feature: export basic FindBugs numbers for projects
-								via File-&gt;Export-&gt;Java-&gt;BugCounts (Andrey Loskutov)</li>
-							<li>new feature: jobs for different projects will be run in
-								parallel per default if running on a multi-core PC
-								("fb.allowParallelBuild" system property not used anymore)
-								(Andrey Loskutov)</li>
-							<li>fixed performance slowdown in the multi-threaded build,
-								caused by workspace operation locks during assigning marker
-								attributes (Andrey Loskutov)</li>
-						</ul>
-					</li>
-				</ul>
-
-				<p>Changes since version 1.3.1</p>
-
-				<ul>
-					<li>FindBugs base
-						<ul>
-							<li>New Bug Category:
-								<ul>
-									<li>SECURITY (Abbrev: S), A use of untrusted input in a
-										way that could create a remotely exploitable security
-										vulnerability</li>
-								</ul>
-							</li>
-							<li>New Detectors:
-								<ul>
-									<li>CrossSiteScripting: This detector looks for
-										obvious/blatant cases of cross site scripting vulnerabilities</li>
-								</ul>
-							</li>
-							<li>New BugCode:
-								<ul>
-									<li>XSS: Cross site scripting</li>
-								</ul>
-							</li>
-							<li>New Reports:
-								<ul>
-									<li>XSS_REQUEST_PARAMETER_TO_SERVLET_WRITER: HTTP
-										parameter directly written to Servlet output, giving XSS
-										vulnerability</li>
-									<li>XSS_REQUEST_PARAMETER_TO_JSP_WRITER: HTTP parameter
-										directly written to JSP output, giving XSS vulnerability</li>
-									<li>EQ_OTHER_USE_OBJECT: equals() method defined that
-										doesn't override Object.equals(Object)</li>
-									<li>EQ_OTHER_NO_OBJECT: equals() method inherits rather
-										than overrides equals(Object)</li>
-									<li>NP_NULL_ON_SOME_PATH_MIGHT_BE_INFEASIBLE: Possible
-										null pointer dereference on path that might be infeasible</li>
-								</ul>
-							</li>
-							<li>Other:
-								<ul>
-									<li>Added -noClassOk command-line parameter to
-										command-line and ant interfaces; when -noClassOk is specified
-										and no classfiles are given, FindBugs will print a warning
-										message and output a well- formed file with no warnings</li>
-									<li>Fewer false positives for null pointer bugs</li>
-									<li>Suppress dead-local-store false positives in .jsp code</li>
-									<li>Type fixes in warning messages</li>
-									<li>Better warning message for NP_NULL_ON_SOME_PATH</li>
-									<li>"WMI" bug code description renamed from "Wrong Map
-										Iterator" to "Inefficient Map Iterator"</li>
-								</ul>
-							</li>
-							<li>Fixes:
-								<ul>
-									<li>[ 1893048 ] FindBugs confused by a findbugs.xml file</li>
-									<li>[ 1878528 ] XSL xforms don't support history features</li>
-									<li>[ 1876584 ] two default.xsl flaws</li>
-									<li>[ 1874856 ] Format string bug detector doesn't handle
-										special operators</li>
-									<li>[ 1872645 ] computeBugHistory -
-										java.lang.IllegalArgumentException</li>
-									<li>[ 1872237 ] Ant task fails when no .class files</li>
-									<li>[ 1868670 ] Filters: include AND exclude don't allowed</li>
-									<li>[ 1868666 ] check-for-oddness reported, but array
-										length can never be negative</li>
-									<li>[ 1866108 ] SetBugDatabaseInfoTask strips dir from
-										output filename</li>
-									<li>[ 1866021 ] MineBugHistoryTask strips dir of output
-										filename</li>
-									<li>[ 1865265 ] code doesn't handle
-										StringBuffer.append([CII) right</li>
-									<li>[ 1864793 ] Warning when casting a null reference
-										compared to a String</li>
-									<li>[ 1863376 ] Typo in manual chap 8: Filter Files</li>
-									<li>[ 1862705 ] Transient fields that default to null</li>
-									<li>[ 1842545 ] DLS on catch variable (with priority
-										tweaking)</li>
-									<li>[ 1816258 ] false positive BC_IMPOSSIBLE_CAST</li>
-									<li>[ 1551732 ] Get erroneous DLS with while loop</li>
-								</ul>
-							</li>
-						</ul>
-					</li>
-					<li>FindBugs Eclipse plugin (change log by Andrey Loskutov)
-						<ul>
-							<li>new feature: added Bug explorer view (replacing Bug tree
-								view), based on Common Navigator framework (Andrey Loskutov)</li>
-							<li>bug 1873860 fixed: empty projects are no longer shown in
-								Bug tree view (Andrey Loskutov)</li>
-							<li>new feature: bug counts decorators for projects, folders
-								and files (has to be activated via Preferences -&gt; general
-								-&gt; appearance -&gt; label decorations)(Andrey Loskutov)</li>
-							<li>patch 1746499: better icons (Alessandro Nistico)</li>
-							<li>patch 1893685: Find bug actions on change sets bug
-								(Alessandro Nistico)</li>
-							<li>fixed bug 1855384: Bug configuration is broken in
-								Eclipse (Andrey Loskutov)</li>
-							<li>refactored FindBugs properties page (Andrey Loskutov)</li>
-							<li>refactored FindBugs worker/builder/run action (Andrey
-								Loskutov)</li>
-							<li>FB detects now only bugs from classes on project's
-								classpath (no double work on duplicated class files) (Andrey
-								Loskutov)</li>
-							<li>fixed bug introduced by the bad patch for 1867951: FB
-								cannot be executed incrementally on a folder of file (Andrey
-								Loskutov)</li>
-							<li>fixed job rule: now jobs for different projects may run
-								in parallel if running on a multi-core PC and
-								"fb.allowParallelBuild" system property is set to true (Andrey
-								Loskutov)</li>
-							<li>fixed FB auto-build not started if .fbprefs or
-								.classpath was changed (Andrey Loskutov)</li>
-							<li>fixed not reporting bugs on secondary types (classes
-								defined in java files with different name) (Andrey Loskutov)</li>
-						</ul>
-					</li>
-				</ul>
-
-				<p>Changes since version 1.3.0</p>
-				<ul>
-					<li>New Reports
-						<ul>
-							<li>VA_FORMAT_STRING_ARG_MISMATCH: A format-string method
-								with a variable number of arguments is called, but the number of
-								arguments passed does not match with the number of %
-								placeholders in the format string. This is probably not what the
-								author intended.
-							<li>IO_APPENDING_TO_OBJECT_OUTPUT_STREAM: This code opens a
-								file in append mode and that wraps the result in an object
-								output stream. This won't allow you to append to an existing
-								object output stream stored in a file. If you want to be able to
-								append to an object output stream, you need to keep the object
-								output stream open. The only situation in which opening a file
-								in append mode and the writing an object output stream could
-								work is if on reading the file you plan to open it in random
-								access mode and seek to the byte offset where the append
-								started.
-							<li>NP_BOOLEAN_RETURN_NULL: A method that returns either
-								Boolean.TRUE, Boolean.FALSE or null is an accident waiting to
-								happen. This method can be invoked as though it returned a value
-								of type boolean, and the compiler will insert automatic unboxing
-								of the Boolean value. If a null value is returned, this will
-								result in a NullPointerException.
-						</ul>
-					</li>
-					<li>Changes to Existing Reports
-						<ul>
-							<li>RV_DONT_JUST_NULL_CHECK_READLINE: CORRECTNESS -&gt;
-								STYLE</li>
-							<li>DMI_INVOKING_TOSTRING_ON_ARRAY: Long description
-								mentions array name whenever possible</li>
-						</ul>
-					</li>
-					<li>Fixes:
-						<ul>
-							<li>Updated manual to mention that Java 1.5 is now a
-								requirement for running FindBugs
-							<li>Applied patch 1840206 fixing issue "Ant task does not
-								work when presetdef is used" - thanks to phejl
-							<li>Applied patch 1778690 fixing issue "Ant task: tolerate
-								but complain about invalid auxClasspath" - thanks to David
-								Schmidt
-							<li>Applied patch 1852125 adding a Chinese-language GUI
-								bundle props file - thanks to fifi
-							<li>Applied patch 1845903 adding ability to load XML results
-								with the Eclipse plugin - thanks to Alex Mont
-							<li>Fixed issue 1844671 - "FP for "reversed" null check in
-								catch for stream close"
-							<li>Fixed issue 1836050 - "-onlyAnalyze broken"
-							<li>Fixed issue 1853011 - "Typo: Field names should start
-								with aN lower case letter"
-							<li>Fixed issue 1844181 - "JNLP file does not contain all
-								necessary JARs"
-							<li>Fixed issue 1840245 - "xxxException class does not
-								derive from Exception"
-							<li>Fixed issue 1840277 - "[M D EC] Typo in bug
-								documentation"
-							<li>Fixed issue 1782447 - "OutOfMemoryError if i activate
-								Findbugs on my project"
-							<li>Fixed issue 1830576 - "[regression] keySet/entrySet
-								false positive"
-						</ul>
-					</li>
-					<li>Other:
-						<ul>
-							<li>New bug code: "IO" (for
-								IO_APPENDING_TO_OBJECT_OUTPUT_STREAM)</li>
-							<li>Added "-onlyMostRecent" option for computeBugHistory
-								script/ant task
-							<li>More explicit language in
-								RV_RETURN_VALUE_IGNORED_BAD_PRACTICE messages
-							<li>Modified ResourceValueAnalysis to correctly identify
-								null == X or null != X as a null check (for issue 1844671)
-							<li>Modified DMI_HARDCODED_ABSOLUTE_FILENAME logic in
-								DumbMethodInvocations to ignore files from /etc or /dev and
-								increase priority of files from /home
-							<li>Better bug details for infinite loop warnings
-							<li>Modified unread-fields detector to reduce false
-								positives from reflective fields
-							<li>build.xml "classes" target now builds all sources in one
-								step
-						</ul>
-					</li>
-				</ul>
-
-				<p>Changes since version 1.2.1</p>
-				<ul>
-					<li>New Detectors and Reports
-						<ul>
-							<li>SynchronizationOnSharedBuiltinConstant
-								<ul>
-									<li>DL_SYNCHRONIZATION_ON_SHARED_CONSTANT: The code
-										synchronizes on a shared primitive constant, such as an
-										interned String. Such constants are interned and shared across
-										all other classes loaded by the JVM. Thus, this could be
-										locking on something that other code might also be locking.
-										This could result in very strange and hard to diagnose
-										blocking and deadlock behavior. See <a
-										href="http://www.javalobby.org/java/forums/t96352.html">http://www.javalobby.org/java/forums/t96352.html</a>
-										and <a href="http://jira.codehaus.org/browse/JETTY-352">http://jira.codehaus.org/browse/JETTY-352</a>.
-									
-								</ul>
-							</li>
-							<li>OverridingEqualsNotSymmetrical
-								<ul>
-									<li>EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC: Looks for equals
-										methods that override equals methods in a superclass where the
-										equivalence relationship might not be symmetrical.
-								</ul>
-							</li>
-							<li>CheckTypeQualifiers
-								<ul>
-									<li>TQ_ALWAYS_VALUE_USED_WHERE_NEVER_REQUIRED: A value
-										specified as carrying a type qualifier annotation is consumed
-										in a location or locations requiring that the value not carry
-										that annotation. More precisely, a value annotated with a type
-										qualifier specifying when=ALWAYS is guaranteed to reach a use
-										or uses where the same type qualifier specifies when=NEVER.</li>
-									<li>TQ_NEVER_VALUE_USED_WHERE_ALWAYS_REQUIRED: A value
-										specified as not carrying a type qualifier annotation is
-										guaranteed to be consumed in a location or locations requiring
-										that the value does carry that annotation. More precisely, a
-										value annotated with a type qualifier specifying when=NEVER is
-										guaranteed to reach a use or uses where the same type
-										qualifier specifies when=ALWAYS.</li>
-									<li>TQ_MAYBE_SOURCE_VALUE_REACHES_ALWAYS_SINK: A value
-										that might not carry a type qualifier annotation reaches a use
-										which requires that annotation.</li>
-									<li>TQ_MAYBE_SOURCE_VALUE_REACHES_NEVER_SINK: A value
-										which might carry a type qualifier annotation reaches a use
-										which forbids values carrying that annotation.</li>
-								</ul>
-							</li>
-						</ul>
-					</li>
-					<li>New Reports (existing detectors)
-						<ul>
-							<li>FindHEmismatch
-								<ul>
-									<li>EQ_DOESNT_OVERRIDE_EQUALS: This class extends a class
-										that defines an equals method and adds fields, but doesn't
-										define an equals method itself. Thus, equality on instances of
-										this class will ignore the identity of the subclass and the
-										added fields. Be sure this is what is intended, and that you
-										don't need to override the equals method. Even if you don't
-										need to override the equals method, consider overriding it
-										anyway to document the fact that the equals method for the
-										subclass just return the result of invoking super.equals(o).</li>
-								</ul>
-							</li>
-							<li>Naming
-								<ul>
-									<li>NM_WRONG_PACKAGE, NM_WRONG_PACKAGE_INTENTIONAL: The
-										method in the subclass doesn't override a similar method in a
-										superclass because the type of a parameter doesn't exactly
-										match the type of the corresponding parameter in the
-										superclass.</li>
-									<li>NM_SAME_SIMPLE_NAME_AS_SUPERCLASS: This class has a
-										simple name that is identical to that of its superclass,
-										except that its superclass is in a different package (e.g., <code>alpha.Foo</code>
-										extends <code>beta.Foo</code>). This can be exceptionally
-										confusing, create lots of situations in which you have to look
-										at import statements to resolve references and creates many
-										opportunities to accidently define methods that do not
-										override methods in their superclasses.
-									</li>
-									<li>NM_SAME_SIMPLE_NAME_AS_INTERFACE: This class/interface
-										has a simple name that is identical to that of an
-										implemented/extended interface, except that the interface is
-										in a different package (e.g., <code>alpha.Foo</code> extends <code>beta.Foo</code>).
-										This can be exceptionally confusing, create lots of situations
-										in which you have to look at import statements to resolve
-										references and creates many opportunities to accidently define
-										methods that do not override methods in their superclasses.
-									</li>
-								</ul>
-							<li>FindRefComparison
-								<ul>
-									<li>EC_UNRELATED_TYPES_USING_POINTER_EQUALITY: This method
-										uses using pointer equality to compare two references that
-										seem to be of different types. The result of this comparison
-										will always be false at runtime.</li>
-								</ul>
-							</li>
-							<li>IncompatMask
-								<ul>
-									<li>BIT_SIGNED_CHECK, BIT_SIGNED_CHECK_HIGH_BIT: This
-										method compares an expression such as <tt>((event.detail
-											&amp; SWT.SELECTED) &gt; 0)</tt>. Using bit arithmetic and then
-										comparing with the greater than operator can lead to
-										unexpected results (of course depending on the value of
-										SWT.SELECTED). If SWT.SELECTED is a negative number, this is a
-										candidate for a bug. Even when SWT.SELECTED is not negative,
-										it seems good practice to use '!= 0' instead of '&gt; 0'.
-									</li>
-								</ul>
-							</li>
-							<li>LazyInit
-								<ul>
-									<li>LI_LAZY_INIT_UPDATE_STATIC: This method contains an
-										unsynchronized lazy initialization of a static field. After
-										the field is set, the object stored into that location is
-										further accessed. The setting of the field is visible to other
-										threads as soon as it is set. If the further accesses in the
-										method that set the field serve to initialize the object, then
-										you have a <em>very serious</em> multithreading bug, unless
-										something else prevents any other thread from accessing the
-										stored object until it is fully initialized.
-									</li>
-								</ul>
-							</li>
-							<li>FindDeadLocalStores
-								<ul>
-									<li>DLS_DEAD_STORE_OF_CLASS_LITERAL: This instruction
-										assigns a class literal to a variable and then never uses it.
-										<a href="//java.sun.com/j2se/1.5.0/compatibility.html#literal">The
-											behavior of this differs in Java 1.4 and in Java 5.</a> In Java
-										1.4 and earlier, a reference to <code>Foo.class</code> would
-										force the static initializer for <code>Foo</code> to be
-										executed, if it has not been executed already. In Java 5 and
-										later, it does not. See Sun's <a
-										href="//java.sun.com/j2se/1.5.0/compatibility.html#literal">article
-											on Java SE compatibility</a> for more details and examples, and
-										suggestions on how to force class initialization in Java 5.
-									</li>
-								</ul>
-							</li>
-							<li>MethodReturnCheck
-								<ul>
-									<li>RV_RETURN_VALUE_IGNORED_BAD_PRACTICE: This method
-										returns a value that is not checked. The return value should
-										be checked since it can indication an unusual or unexpected
-										function execution. For example, the <code>File.delete()</code>
-										method returns false if the file could not be successfully
-										deleted (rather than throwing an Exception). If you don't
-										check the result, you won't notice if the method invocation
-										signals unexpected behavior by returning an atypical return
-										value.
-									</li>
-									<li>RV_EXCEPTION_NOT_THROWN: This code creates an
-										exception (or error) object, but doesn't do anything with it.
-									</li>
-								</ul>
-							</li>
-						</ul>
-					</li>
-					<li>Changes to Existing Reports
-						<ul>
-							<li>NS_NON_SHORT_CIRCUIT: BAD_PRACTICE -&gt; STYLE</li>
-							<li>NS_DANGEROUS_NON_SHORT_CIRCUIT: CORRECTNESS -&gt; STYLE</li>
-							<li>RC_REF_COMPARISON: CORRECTNESS -&gt; BAD_PRACTICE</li>
-						</ul>
-					</li>
-					<li>GUI Changes
-						<ul>
-							<li>Added importing and exporting of bug filters</li>
-							<li>Better handling of failed analysis runs</li>
-							<li>Added "-look" parameter for selecting look-and-feel</li>
-							<li>Fixed incorrect package filtering</li>
-							<li>Fixed issue where "synchronized" was not
-								syntax-highlighted</li>
-						</ul>
-					</li>
-					<li>Ant-task Changes
-						<ul>
-							<li>Refactored common ant-task code to AbstractFindBugsTask</li>
-							<li>Added tasks for computeBugHistory, convertXmlToText,
-								filterBugs, mineBugHistory, setBugDatabaseInfo</li>
-						</ul>
-					</li>
-					<li>Manual
-						<ul>
-							<li>Updates to GUI section, including new screenshots</li>
-							<li>Added description of rejarForAnalysis</li>
-							<li>Revamp of data-mining section</li>
-						</ul>
-					</li>
-					<li>Other Major
-						<ul>
-							<li>Internal restructuring for lower memory overhead</li>
-						</ul>
-					</li>
-					<li>Other Minor
-						<ul>
-							<li>Fixed typo: was STCAL_STATIC_SIMPLE_DATA_FORMAT_INSTANCE
-								now STCAL_STATIC_SIMPLE_DATE_FORMAT_INSTANCE</li>
-							<li>-outputFile parameter became -output</li>
-							<li>More sensitivity and specificity inLazyInit detector</li>
-							<li>More sensitivity and specificity in Naming detector</li>
-							<li>More sensitivity and specificity in UnreadFields
-								detector</li>
-							<li>More sensitivity in FindNullDeref detector</li>
-							<li>More sensitivity in FindBadCast2 detector</li>
-							<li>More specificity in FindReturnRef detector</li>
-							<li>Many other tweaks and bug fixes</li>
-						</ul>
-					</li>
-				</ul>
-
-				<p>Changes since version 1.2.0</p>
-				<ul>
-					<li>Bug fixes:
-						<ul>
-							<li><a
-								href="http://fisheye2.cenqua.com/changelog/findbugs/?cs=8219">Fix</a>
-								<a
-								href="http://sourceforge.net/tracker/index.php?func=detail&aid=1726946&group_id=96405&atid=614693">bug</a>
-								with detectors that were requested to be disabled but were
-								enabled due to requirements of other detectors.</li>
-							<li>Fix bugs in incremental analysis within Eclipse plugin</li>
-							<li>Fix some analysis errors</li>
-							<li>Fix some threading bugs in GUI2</li>
-							<li>Report version as version when it was compiled, not when
-								it was run</li>
-							<li>Copy analysis time stamp when filtering or transforming
-								analysis files.</li>
-						</ul>
-					<li>Enabled StaticCalendarDetector</li>
-					<li>Reworked GUI2 to use standard FindBugs filters
-						<ul>
-							<li>Allow a suppression filter to be stored in a project and
-								persisted to the XML representation of a project.</li>
-						</ul>
-					</li>
-
-					<li>Move away from old GUI2 save format (a directory
-						containing an xml file and another file containing serialized
-						filters).</li>
-					<li>Support/recommend use of two new file extensions/formats:
-						<dl>
-							<dt>.fba - FindBugs Analysis File</dt>
-							<dd>Exactly the same as an existing bug collection file
-								stored in XML format, but using a distinct file extension to
-								make it easier to figure out which xml files contain FindBugs
-								results.</dd>
-							<dt>.fbp - FindBugs Project File</dt>
-							<dd>Contains just the information needed to run FindBugs and
-								display the results (e.g., the files to be analyzed, the
-								auxiliary class path and the location of source files)
-						</dl>
-					</li>
-				</ul>
-				<p>Changes since version 1.1.3</p>
-				<ul>
-					<li>Added -xml:withAbridgedMessages option to generate xml
-						containing shorter messages. The messages will be shorted by doing
-						things like eliding package names, and leaving off the source line
-						from the LongMessage. These messages are appropriate if being used
-						in a context where the non-message components of the bug
-						annotations will be used to provide more information (e.g.,
-						clicking on the message for a MethodAnnotation will display the
-						source for the method).
-						<ul>
-							<li>FindBugsDisplayFeatures.setAbridgedMessages(true) can be
-								used to generate abridged messages when FindBugs is being
-								accessed directly (not via generated XML) from a GUI or IDE.</li>
-						</ul>
-					<li>In null pointer analysis, try to be better about always
-						showing two locations: where it is known null and where it is
-						dereferenced.
-					<li>Interprocedural analysis of which methods return nonnull
-						values
-					<li>Use method calls to select order in which classes are
-						analyzed, and order in which methods are analyzed, to improve
-						interprocedural analysis results.
-					<li>Significant improvements in memory footprint, memory
-						allocation and CPU utilization (20-30% reduction in all three)
-					<li>Added a project name, to provide better descriptions in
-						the HTML output.
-					<li>Added new bug pattern: Casting to char, or bit masking
-						with nonnegative value, and then checking to see if the result is
-						negative.
-					<li>Stopped reporting transient fields of classes not marked
-						as serializable. Transient is used by other persistence
-						frameworks.
-					<li>Improvements to detector for SQL injection (Thanks to <a
-						href="http://www.clock.org/~matt">Matt Hargett</a> for his
-						contributions
-					<li>Changed open/save options in GUI2 to not distinguish
-						between FindBugs projects and saved FindBugs analysis results.
-					<li>Improvements to detection of serious non-short-circuit
-						evaluation.
-					<li>Updated Japanese localization (thanks to Ruimo Uno)
-					<li>Eclipse plugin changes:
-						<ul>
-							<li>Created Bug User Annotations and Bug Tree Views
-							<li>Use different icons for different bug priorities
-							<li>Provide more information in Bug Details view
-						</ul>
-				</ul>
-
-				<p>Changes since version 1.1.2:</p>
-				<ul>
-					<li>Fixed broken Ant task
-					<li>Added running ant task to smoke test
-					<li>Added validating xml and html output to smoke test
-					<li>Fixed some (but not all) issues with html output
-						validation
-					<li>Added check for x.equals(x) and x.compareTo(x)
-					<li>Various bug fixes
-				</ul>
-				<p>Changes since version 1.1.1:</p>
-				<ul>
-					<li>Added check for infinite iterative loops</li>
-					<li>Added check for use of incompatible types in a collection
-						(e.g., checking to see if a Set&lt;String&gt; contains a
-						StringBuffer).</li>
-					<li>Added check for invocations of equals or hashCode on a
-						URL, which, <a
-						href="http://michaelscharf.blogspot.com/2006/11/javaneturlequals-and-hashcode-make.html">surprising
-							many people</a>, requires DNS resolution.
-					</li>
-					<li>Added check for classes that define compareTo but not
-						equals; such classes can exhibit some anomalous behavior (e.g.,
-						they are treated differently by PriorityQueues in Java 5 and Java
-						6).</li>
-					<li>Added a check for useless self operations (e.g., x &lt; x
-						or x ^ x).</li>
-					<li>Fixed a data race that could cause the GUI to fail on
-						startup</li>
-					<li>Partial internationalization of the new GUI</li>
-					<li>Fix bug in "Redo analysis" option of new GUI</li>
-					<li>Tuning to reduce false positives</li>
-					<li>Fixed a bug in null pointer analysis that was generating
-						false positive null pointer warnings on exception paths. Fixing
-						this bug eliminates about 1/4 of the warnings on null pointer
-						exceptions on exception paths.</li>
-					<li>Fixed a bug in the processing of phi nodes for fields in
-						the null pointer analysis</li>
-					<li>Applied contributed patch that provides more quick fixes
-						in Eclipse plugin.</li>
-					<li>Fixed a number of bugs in the Eclipse auto update sites,
-						and in the way date qualifiers were being used in the Eclipse
-						plugin. You may need to manually disable your existing version of
-						the plugin and download the 1.1.2 from the update site to get the
-						automatic update function working correctly. The Eclipse update
-						sites are described at <a
-						href="http://findbugs.cs.umd.edu/eclipse/">http://findbugs.cs.umd.edu/eclipse/</a>.
-
-					</li>
-					<li>Fixed progress bar in Eclipse plugin</li>
-					<li>A number of other bug fixes.</li>
-				</ul>
-
-				<p>Changes since version 1.1.0:</p>
-				<ul>
-					<li>less scanning of classes not on the analysis path (This
-						was causing some performance problems.)</li>
-					<li>no unread field warnings for fields annotated with
-						javax.persistent or javax.ejb3</li>
-					<li>Eclipse plugin
-						<ul>
-							<li>bug annotation info displayed in Bug Details tab</li>
-							<li>.fbwarnings data file now stored in .metadata (not in
-								the project itself)</li>
-						</ul>
-					</li>
-					<li>new SE_BAD_FIELD_INNER_CLASS pattern</li>
-					<li>updates to Japanese translation (ruimo)</li>
-					<li>fix some internal slashed/dotted path confusion</li>
-					<li>other minor improvements</li>
-				</ul>
-
-				<p>Changes since version 1.0.0:</p>
-
-				<ul>
-					<li>Overall, the change from FindBugs 1.0.0 to FindBugs 1.1.0
-						has been a big change. We've done a lot of work in a lot of areas,
-						and aren't even going to try to enumerate all the changes.</li>
-					<li>We spent a lot of time reviewing the results generated by
-						FindBugs for open source and commercial code bases, and made a
-						number of changes, small and large, to minimize the number of
-						false positives. Our primary focus for this was warnings reported
-						as high and medium priority correctness warnings. Our internal
-						evaluation is that we produce very few high/medium priority
-						correctness warnings where the analysis is actually wrong, and
-						that more than 75% of the high/medium priority correctness
-						warnings correspond to real coding defects that need addressing in
-						the source code. The remaining 25% are largely cases such as a
-						branch or statement that if taken would lead to an error, but in
-						fact is a dead branch or statement that can never be taken. Such
-						coding is confusing and hard to maintain, so it should arguably be
-						fixed, but it is unlikely to actually result in an error during
-						execution. Thus, some might classify those warnings as false
-						positives.</li>
-					<li>We've substantially improved the analysis for errors that
-						could result in null pointer dereferences. Overall, our experience
-						has been that these changes have roughly doubled the number of
-						null pointer errors we detect, without increasing the number of
-						false positives (in fact, our false positive rate has gone down).
-						The improvements are due to four factors:
-						<ul>
-							<li>By default, we now do some interprocedural analysis to
-								determine methods that unconditionally dereference their
-								parameters.</li>
-							<li>FindBugs also comes with a model of which JDK methods
-								unconditionally dereference their parameters.</li>
-							<li>We do limited tracking of fields, so that we can detect
-								null values stored in fields that lead to exceptions.</li>
-							<li>We implemented a new analysis technique to find
-								guaranteed dereferences. Consider the following example: <pre>public int f(Object x, boolean b) {
-  int result = 0;
-  if (x == null) result++;
-  else result--;
-  // at this point, we know x is null on a simple path
-  if (b) {
-    // at this point, x is only null on a complex path
-    // we don't know if the path in which x is null and b is true is feasible
-    return result + x.hashCode();
-    }
-  else {
-    // at this point, x is only null on a complex path
-    // we don't know if the path in which x is null and b is false is feasible
-    return result - x.hashCode();
-    }
-</pre>
-
-								<p>
-									FindBugs 1.0 used forward dataflow analysis to determine
-									whether each value is definitely null, null on a simple path,
-									possible null on a complex path, or definitely nonnull. Thus,
-									at the statement where
-									<code> result </code>
-									is decremented, we know that
-									<code> x </code>
-									is definitely null, and at the point before
-									<code> if (b) </code>
-									, we know that
-									<code> x </code>
-									is null on a simple path. If
-									<code> x </code>
-									were to be dereferenced here, we would generate a warning,
-									because if the else branch of the
-									<code> if (x == null) </code>
-									were ever taken, a null pointer exception would result.
-								</p>
-
-								<p>
-									However, in both the then and else branches of the
-									<code> if (b) </code>
-									statement,
-									<code> x </code>
-									is only null on a complex path that may be infeasible. It might
-									be that the program logic is such that if
-									<code> x </code>
-									is null, then
-									<code> b </code>
-									is never true, so generating a warning about the dereference in
-									the then clause might be a false positive. We could try to
-									analyze the program to determine whether it is possible for
-									<code> x </code>
-									to be null and
-									<code> b </code>
-									to be true, but that can be a hard analysis problem.
-								</p>
-
-								<p>
-									However,
-									<code> x </code>
-									is dereferenced in both the then <em>and</em> else branches of
-									the
-									<code> if (b) </code>
-									statement. So at the point immediately before
-									<code> if (b) </code>
-									, we know that
-									<code> x </code>
-									is null on a simple path <em>and</em> that
-									<code> x </code>
-									is guaranteed to be dereferenced on all paths from this point
-									forward. FindBugs 1.1 performs a backwards data flow analysis
-									to determine the values that are guaranteed to be dereferenced,
-									and will generate a warning in this case.
-								</p>
-							</li>
-						</ul>
-						<p>
-							The following screen shot of our new GUI shows an example of this
-							analysis, as well as showing off our new GUI and points out a
-							limitation of our current plugins for Eclipse and NetBeans. The
-							screen shot shows a null pointer bug in HelpDisplay.java. The
-							test for
-							<code> href!=null </code>
-							on line 78 suggests that
-							<code> href </code>
-							could be null. If it is, then
-							<code> href </code>
-							will be dereferenced on either line 87 or on line 90, generating
-							a NPE. Note that our analysis here also understands that passing
-							<code> href </code>
-							to
-							<code> URLEncoder.encode </code>
-							will deference it, and thus treats line 87 as a dereference, even
-							though
-							<code> href </code>
-							is not actually dereferenced at that line. Within our new GUI,
-							all of these locations are highlighted and listed in the summary
-							panel. In the original GUI (and in HTML output) we list all of
-							the locations, but only the primary location is highlighted by
-							the original GUI. In the Eclipse and NetBeans plugins, only the
-							primary location is displayed; fixing this is on our todo list
-							(contributions welcome).
-						</p>
-						<p>
-							<img src="guaranteedDereference.png" alt="">
-
-
-						</p>
-
-					</li>
-					<li>Preliminary support for detectors using the frameworks
-						other than BCEL, such as the <a href="http://asm.objectweb.org/">ASM</a>
-						bytecode framework. You may experiment with writing ASM-based
-						detectors, but beware the API may still change (which could
-						possibly also affect BCEL-based detectors). In general, we've
-						started trying to move away from a deep dependence on BCEL, but
-						that change is only partially complete. Probably best to just
-						avoid this until we complete more work on this. This change is
-						only visible to FindBugs plugin developers, and shouldn't be
-						visible to FindBugs users.
-					</li>
-					<li>
-						<p>Bug categories (CORRECTNESS, MT_CORRECTNESS, etc.) are no
-							longer hard-coded, but rather defined in xml files associated
-							with plugins, including the core plugin which defines the
-							standard categories. Third-party plugins can define their own
-							categories.</p>
-					</li>
-					<li>
-						<p>Several bug patterns have been moved from CORRECTNESS and
-							STYLE into a new category, BAD_PRACTICE. The English localization
-							of STYLE has changed from "Style" to "Dodgy."</p>
-						<p>In general, we've worked very hard to limit CORRECTNESS
-							bugs to be real programming errors and sins of commission. We
-							have reclassified as BAD_PRACTICE a number of bad design
-							practices that result in overly fragile code, such as defining an
-							equals method that doesn't accept null or defining class with a
-							equals method that inherits hashCode from class Object.</p>
-						<p>In general, our guidelines for deciding whether a bug
-							should be classified as CORRECTNESS, BAD_PRACTICE or STYLE are:</p>
-						<dl>
-							<dt>CORRECTNESS</dt>
-							<dd>A problem that we can recognize with high confidence and
-								is an issue that we believe almost all developers would want to
-								examine and address. We recommend that software teams review all
-								high and medium priority warnings in their entire code base.</dd>
-							<dt>BAD_PRACTICE</dt>
-							<dd>A problem that we can recognize with high confidence and
-								represents a clear violation of recommended and standard coding
-								practice. We believe each software team should decide which bad
-								practices identified by FindBugs it wants to prohibit in the
-								team's coding standard, and take action to remedy violations of
-								those coding standards.</dd>
-							<dt>STYLE</dt>
-							<dd>These are places where something strange or dodgy is
-								going on, such as a dead store to a local variable. Typically,
-								less than half of these represent actionable programming
-								defects. Reviewing these warnings in any code under active
-								development is probably a good idea, but reviewing all such
-								warnings in your entire code base might be appropriate only in
-								some situations. Individual or team programming styles can
-								substantially influence the effectiveness of each of these
-								warnings (e.g., you might have a coding practice or style in
-								your group that confuses one of the detectors into generating a
-								lot of STYLE warnings); you will likely want to selectively
-								suppress or report the STYLE warnings that are effective for
-								your group.</dd>
-						</dl>
-					</li>
-					<li>Released a preliminary version of a new GUI (known
-						internally as GUI2 -- not very creative, huh?)</li>
-					<li>Provided standard ways to mark user designations of bug
-						warnings (e.g., as NOT_A_BUG or SHOULD_FIX). The internal logic
-						now records this, it is represented in the XML file, and GUI2
-						allows the designations to be applied (along with free-form user
-						annotations about each warning). The user designations and
-						annotations are not yet supported by the Eclipse plugin, but we
-						clearly want to support it in Eclipse shortly.</li>
-					<li>Added a check for a bad comparison with a signed byte with
-						a value not in the range -128..127. For example: <pre>boolean find200(byte b[]) {
-  for(int i = 0; i &lt; b.length; i++) if (b[i] == 200) return i;
-  return -1;
-}
-</pre>
-					</li>
-					<li>Added a checking for testing if a value is equal to
-						Double.NaN (no value is equal to NaN, not even NaN).</li>
-					<li>Added a check for using a class with an equals method but
-						no hashCode method in a hashed data structure.</li>
-					<li>Added check for uncallable method of an anonymous inner
-						class. For example, in the following code, it is impossible to
-						invoke the initalValue method (because the name is misspelled and
-						as a result is doesn't override a method in ThreadLocal). <pre>private static ThreadLocal serialNum = new ThreadLocal() {
-         protected synchronized Object initalValue() {
-             return new Integer(nextSerialNum++);
-         }
-     };
-</pre>
-					</li>
-					<li>Added check for a dead local store caused by a switch
-						statement fall through</li>
-					<li>Added check for computing the absolute value of a random
-						32 bit integer or of a hashcode. This is broken because <code>
-							Math.abs(Integer.MIN_VALUE) == Integer.MIN_VALUE </code> , and thus
-						result of calling Math.abs, which is expected to be nonnegative,
-						will in fact be negative one time out of 2 <sup> 32 </sup> , which
-						will invariably be the time your boss is demoing the software to
-						your customers.
-
-					</li>
-					<li>More careful resolution of inherited methods and fields.
-						Some of the shortcuts we were taking in FindBugs 1.0.0 were
-						leading to inaccurate results, and it was fairly easy to address
-						this by making the analysis more accurate.</li>
-					<li>Overall, analysis times are about 1.6 times longer in
-						FindBugs 1.1.0 than in FindBugs 1.0.0. This is because we have
-						enabled substantial additional analysis at the default effort
-						level (the actual analysis engine is significantly faster than in
-						FindBugs 1.0). On a recent AMD Athlon processor, analyzing
-						JDK1.6.0 (about 1 million lines of code) requires about 15 minutes
-						of wall clock time.</li>
-					<li>Provided class and script (printClass) to print classfile
-						in the human readable format produced by BCEL</li>
-					<li>Provided -findSource option to setBugDatabaseInfo</li>
-				</ul>
-
-
-				<p>Changes since version 0.9.7:</p>
-
-				<ul>
-					<li>fix ObjectTypeFactory bug that was suppressing some bugs</li>
-					<li>opcode stack may determine definite zeros on some paths</li>
-					<li>opcode stack can track some constant string concatenations
-						(dbrosius)</li>
-					<li>default effort performs iterative opcode analysis (but min
-						effort does not)</li>
-					<li>default heap size upped to 384m</li>
-					<li>schema for XML output available: bugcollection.xsd</li>
-					<li>fixed some internal confusion between dotted and slashed
-						class names</li>
-					<li>New detectors
-						<ul>
-							<li>CheckImmutableAnnotation.java: checks JCIP annotations</li>
-						</ul>
-					</li>
-					<li>Updated detectors
-						<ul>
-							<li>BadRegEx.java: understands Pattern.LITERAL, warns about
-								"."</li>
-							<li>FindUnreleasedLock.java: fewer false positives</li>
-							<li>DumbMethods.java: check for vacuous comparisons to
-								MAX_INTEGER or MIN_INTEGER, fix bugs detecting
-								DM_NEXTINT_VIA_NEXTDOUBLE</li>
-							<li>FindPuzzlers.java: detect <tt>n%2==1</tt>, detect
-								toString() on array types
-							</li>
-							<li>FindInconsistentSync2.java: detects IS_FIELD_NOT_GUARDED
-							</li>
-							<li>MethodReturnCheck.java: add check for discarded newly
-								constructed values, increase priority of some ignored
-								constructed exceptions, better handling of bytecode compiled by
-								Eclipse</li>
-							<li>FindEmptySynchronizedBlock.java: better handling of
-								bytecode compiled by Eclipse</li>
-							<li>DoInsideDoPrivileged.java: warn if call to setAccessible
-								isn't in doPriviledged, don't report private methods</li>
-							<li>LoadOfKnownNullValue.java: fix bug that was reporting
-								false positives on <code> finally </code> blocks
-							</li>
-							<li>CheckReturnAnnotationDatabase.java: better checks for
-								unstarted threads</li>
-							<li>ConfusionBetweenInheritedAndOuterMethod.java: fewer
-								false positives, fixed a package-handling bug</li>
-							<li>BadResultSetAccess.java: separate bug pattern for
-								PreparedStatements, <code> BRZA </code> category folded into <code>
-									SQL </code> category
-							</li>
-							<li>FindDeadLocalStores.java, FindBadCast2.java,
-								DumbMethods.java, RuntimeExceptionCapture.java: coalesce similar
-								bugs within a method into a single bug instance with multiple
-								source lines</li>
-						</ul>
-					</li>
-					<li>Eclipse plugin
-						<ul>
-							<li>plugin ID changed from <tt>de.tobject.findbugs</tt> to <tt>edu.umd.cs.findbugs.plugin.eclipse</tt>
-							</li>
-							<li>support for findbugs eclipse auto-update site</li>
-						</ul>
-					</li>
-					<li>Updated test case files
-						<ul>
-							<li>BadRegEx.java</li>
-							<li>JSR166.java</li>
-							<li>ConcurrentModificationBug.java</li>
-							<li>DeadStore.java</li>
-							<li>InstanceOf.java</li>
-							<li>LoadKnownNull.java</li>
-							<li>NeedsToCheckReturnValue.java</li>
-							<li>BadResultSetAccessTest.java</li>
-							<li>DeadStore.java</li>
-							<li>TestNonNull2.java</li>
-							<li>TestImmutable.java</li>
-							<li>TestGuardedBy.java</li>
-							<li>BadRandomInt.java</li>
-							<li>six test cases added to new <code> TigerTraps </code>
-								directory
-							</li>
-						</ul>
-					</li>
-					<li>fix bug that was generating duplicate uids</li>
-					<li>fix bug with <code> -onlyAnalyze some.package.* </code> on
-						jdk1.4
-					</li>
-					<li>fix regression bug in
-						DismantleByteCode.getRefConstantOperand()</li>
-					<li>fix some minor bugs with the Swing GUI</li>
-					<li>reordered some bugInstances so that source line
-						annotations come last</li>
-					<li>removed references to unused java system properties</li>
-					<li>French translation updates (David Cotton)</li>
-					<li>Japanese translation updates (Hanai Shisei)</li>
-					<li>content cleanup for findbugs.xml and messages.xml</li>
-					<li>references to cvs hostname updated to
-						findbugs.cvs.sourceforge.net</li>
-					<li>documented xdoc output options, new
-						mineBugHistory/computeBugHistory options</li>
-				</ul>
-
-				<p>Changes since version 0.9.6:</p>
-
-				<ul>
-					<li>performance improvements</li>
-					<li>ObjectType instances are cached to reduce memory footprint
-					</li>
-					<li>for performance and memory reasons stateless detectors are
-						no longer cloned, must clear their own state between .class files
-					</li>
-					<li>fixed bug in bytecode-set lookup for methods (was causing
-						bad results for IS2, perhaps others)</li>
-					<li>fix some OpcodeStack bugs with integer and long
-						operations, perform iterative analysis when effort is <tt>max</tt>
-					</li>
-					<li>HTML output includes LongMessage text again (regression in
-						0.95 - 0.96)</li>
-					<li>New detectors
-						<ul>
-							<li>CalledMethods.java: builds a list of invoked methods for
-								other detectors to consult (non-reporting)</li>
-							<li>UncallableMethodOfAnonymousClass.java: detect anonymous
-								inner classes that define methods that are probably intended to
-								but do not override methods in a superclass.</li>
-						</ul>
-					</li>
-					<li>Updated detectors
-						<ul>
-							<li>FindFieldSelfAssignment.java: recognize separate fields
-								with the same name (one from superclass)</li>
-							<li>FindLocalSelfAssignment2.java: handles backward branches
-								better (Dave Brosius)</li>
-							<li>FindBadCast2.java: BC_NULL_INSTANCEOF changed to
-								NP_NULL_INSTANCEOF</li>
-							<li>FindPuzzlers.java: eliminate false positive on setDate()
-								(Dave Brosius)</li>
-						</ul>
-					</li>
-					<li>Eclipse plugin
-						<ul>
-							<li>fix serious threading bug</li>
-							<li>preferences for Filters and effort (Peter Hendriks)</li>
-							<li>French localization (David Cotton)</li>
-							<li>fix bug when reporting inner classes (Peter Friese)</li>
-						</ul>
-					</li>
-					<li>Updated test case files
-						<ul>
-							<li>Mwn.java (Carl Burke/Dave Brosius)</li>
-							<li>DumbMethodInvocations.java (Anto paul/Dave Brosius)</li>
-							<!--sic-->
-						</ul>
-					</li>
-					<li>XML output includes garbage collection duration</li>
-					<li>French messages updated (David Cotton)</li>
-					<li>Swing GUI shows file name after Load Bugs command</li>
-					<li>Ant task to launch the findbugs frame (Mark McKay)</li>
-					<li>miscellaneous code cleanup</li>
-				</ul>
-
-				<p>Changes since version 0.9.5:</p>
-
-				<ul>
-					<li>Updated detectors
-						<ul>
-							<li>FindNullDeref.java: respect NonNull and CheckForNull
-								field annotations</li>
-							<li>SerializableIdiom.java: detect non-private readObject
-								and writeObject methods</li>
-							<li>FindRefComparison.java: smarter array comparison
-								detection</li>
-							<li>IsNullValueAnalysis.java: detect <tt>null
-									instanceof</tt>
-							</li>
-							<li>FindLocalSelfAssignment2.java: suppress some false
-								positives (Dave Brosius)</li>
-							<li>FindUnreleasedLock.java: don't waste time processing
-								classes that don't refer to java.util.concurrent.locks</li>
-							<li>MutableStaticFields.java: report the source line (Dave
-								Brosius)</li>
-							<li>SwitchFallthrough.java: better handling of System.exit()
-								(Dave Brosius)</li>
-							<li>MultithreadedInstanceAccess.java: better handling of
-								Servlet.init() (Dave Brosius)</li>
-							<li>ConfusionBetweenInheritedAndOuterMethod.java: now
-								enabled</li>
-						</ul>
-					</li>
-					<li>Eclipse plugin
-						<ul>
-							<li>background processing (Peter Friese)</li>
-							<li>internationalization, Japanese localization (Takashi
-								Okamoto)</li>
-						</ul>
-					</li>
-					<li>findbugs <tt>-onlyAnalyze</tt> option now works on windows
-						platforms
-					</li>
-					<li>mineBugHistory <tt>-noTabs</tt> option for better
-						alignment of output columns
-					</li>
-					<li>filterBugs <tt>-fixed</tt> option (also: will now
-						recognize the most recent version string)
-					</li>
-					<li>XML output includes running time and memory usage data</li>
-					<li>miscellaneous minor corrections to the manual</li>
-					<li>better bytecode analysis of the <tt>iinc</tt> instruction
-					</li>
-					<li>fix bug in null pointer analysis</li>
-					<li>improved catch block heuristics</li>
-					<li>some type analysis tweaks</li>
-					<li>Bug priority changes
-						<ul>
-							<li>DumbMethodInvocations.java: decrease priority of
-								hard-coded <tt>/tmp</tt> filenames
-							</li>
-							<li>ComparatorIdiom.java: decrease priority of
-								non-serializable anonymous comparators</li>
-							<li>FindSqlInjection.java: decrease priority of appending a
-								constant or a static</li>
-						</ul>
-					</li>
-					<li>Updated bug explanations
-						<ul>
-							<li>NM_VERY_CONFUSING (Dave Brosius)</li>
-						</ul>
-					</li>
-					<li>Updated test case files
-						<ul>
-							<li>BadStoreOfNonSerializableObject.java</li>
-							<li>BadRandomInt.java</li>
-							<li>TestFieldAnnotations.java</li>
-							<li>UseInitCause.java</li>
-							<li>SqlInjection.java</li>
-							<li>ArrayEquality.java</li>
-							<li>BadIntegerOperations.java</li>
-							<li>Pilhuhn.java</li>
-							<li>InstanceOf.java</li>
-							<li>SwitchFallthrough.java (Dave Brosius)</li>
-						</ul>
-					</li>
-					<li>fix URL decoding bug when running under Java Web Start
-						(Dave Brosius)</li>
-					<li>distribution includes <tt>project.xml</tt> file for
-						NetBeans
-					</li>
-				</ul>
-
-				<p>Changes since version 0.9.4:</p>
-				<ul>
-					<li>New detectors
-						<ul>
-							<li>VarArgsProblems.java</li>
-							<li>FindSqlInjection.java: now enabled</li>
-							<li>ComparatorIdiom.java: comparators usually implement
-								serializable</li>
-							<li>Naming.java: detect methods not overridden due to
-								eponymously typed args from different packages</li>
-						</ul>
-					</li>
-					<li>Updated detectors
-						<ul>
-							<li>SwitchFallthrough.java: surpress some false positives</li>
-							<li>DuplicateBranches.java: surpress some false positives</li>
-							<li>IteratorIdioms.java: surpress some false positives</li>
-							<li>FindHEmismatch.java: surpress some false positives</li>
-							<li>QuestionableBooleanAssignment.java: finds more cases of
-								<tt>if (b=true)</tt> ilk
-							</li>
-							<li>DumbMethods.java: detect int remainder by 1, delayed gc
-								errors</li>
-							<li>SerializableIdiom.java: detect store of nonserializable
-								object into field of serializable class</li>
-							<li>FindNullDeref.java: fix potential exception</li>
-							<li>IsNullValue.java: fix potential exception</li>
-							<li>MultithreadedInstanceAccess.java: fix potential
-								exception</li>
-							<li>PreferZeroLengthArrays.java: flag the method, not the
-								line</li>
-						</ul>
-					</li>
-					<li>Remove some inadvertent dependencies on JDK 1.5</li>
-					<li>Sort order should be more consistent</li>
-					<li>XML output changes
-						<ul>
-							<li>Option to sort XML bug output</li>
-							<li>Now contains instance IDs</li>
-							<li>uid no longer missing (was causing problems with fancy
-								HTML output)</li>
-							<li>Typo fixed</li>
-						</ul>
-					</li>
-					<li>Internal changes to track source files, <tt>-sourceInfo</tt>
-						option
-					</li>
-					<li>Bug matching: first try exact bug pattern matching, option
-						to compare priorities, option to disable package moves</li>
-					<li>Architecture documentation in <tt>design/architecture</tt>
-					</li>
-					<li>Test cases move into their own CVS project</li>
-					<li>Don't report warnings that occur outside the analyzed
-						classes</li>
-					<li>Fixes to the build.xml files</li>
-					<li>Better handling of @CheckReturnValue and @CheckForNull
-						annotations (also, some additional methods searched for check
-						return value and check for null)</li>
-					<li>Fixed some stream-closing bugs (one by <tt>z-fb-user</tt>/Dave
-						Brosius)
-					</li>
-					<li>Bug priority changes
-						<ul>
-							<li>increase priority of ignoring return value of
-								java.sql.Connection methods</li>
-							<li>increase priority of comparing classes like Integer
-								using <tt>==</tt>
-							</li>
-							<li>decrease priority of IT_NO_SUCH_ELEMENT if we see any
-								call to <tt>next()</tt>
-							</li>
-							<li>tweak priority of NM_METHOD_CONSTRUCTOR_CONFUSION</li>
-							<li>decrease priority of RV_RETURN_VALUE_IGNORED for an
-								inherited annotation that doesn't return same type as class</li>
-						</ul>
-					</li>
-					<li>Updated bug explanations
-						<ul>
-							<li>RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE</li>
-							<li>DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED</li>
-							<li>IMA_INEFFICIENT_MEMBER_ACCESS (Dave Brosius)</li>
-							<li>some Japanese improvements to messages_ja.xml ( <tt>ruimo</tt>)
-							</li>
-							<li>some German improvements to findbugs_de.properties (Dave
-								Brosius, <tt>dvholten</tt>)
-							</li>
-						</ul>
-					</li>
-					<li>Updated test case files
-						<ul>
-							<li>BadIntegerOperations.java</li>
-							<li>SecondKaboom.java</li>
-							<li>OpenDatabase.java (Dave Brosius)</li>
-							<li>FindOpenStream.java (Dave Brosius)</li>
-							<li>BadRandomInt.java</li>
-						</ul>
-					</li>
-					<li>Source-lines info maintained for methods (handy for
-						abstract and native methods)</li>
-					<li>Remove surrounding opcodes from source line annotations</li>
-					<li>Better error when can't read file</li>
-					<li>Swing GUI: removed console pane from FindBugsFrame, fix
-						missing classes bug</li>
-					<li>Fixes to OpcodeStack.java</li>
-					<li>Detectors may attach a custom value to an OpcodeStack.Item
-						(Dave Brosius)</li>
-					<li>Filter.java: ability to add text messages to XML output,
-						fix bug with <tt>-withMessages</tt>
-					</li>
-					<li>SourceInfoMap supports ranges of source lines</li>
-					<li>Ant task supports the <tt>timestampNow</tt> attribute
-					</li>
-				</ul>
-
-				<p>Changes since version 0.9.3:</p>
-				<ul>
-					<li>Substantial rework of datamining code</li>
-					<li>Removed bogus warnings about await on things other than
-						Condition not being in a loop</li>
-					<li>Fixed bug in OpcodeStack handling of dup2 of long/double
-						values</li>
-					<li>Don't report array types as missing classes</li>
-					<li>Adjustment of some warnings on ignored return values</li>
-					<li>Added thread safety annotations from Java Concurrency in
-						Practice (no detectors written for these yet)</li>
-					<li>Added annotation for methods that, if overridden, should
-						be invoked by overriding methods via a call to super</li>
-					<li>Updated -html:fancy.xsl (Etienne Giraudy)</li>
-				</ul>
-
-				<p>Note: there was no version 0.9.2</p>
-
-				<p>Changes since version 0.9.1:</p>
-				<ul>
-					<!-- New detectors -->
-					<li>Embellish USM to find abstract methods that implement an
-						interface method (Dave Brosius)</li>
-					<li>New detector to find stores of literal booleans inside if
-						or while expressions (Dave Brosius)</li>
-					<li>New style detector to find final classes that declare
-						protected fields (Dave Brosius)</li>
-					<li>New detector to find subclass methods that simply forward,
-						verbatim, to the super class (Dave Brosius)</li>
-					<li>Detector to find instances where code is attempting to
-						write an object out via an implementation of DataOutput, but the
-						object is not guaranteed to be Serializable (Jon Christiansen,
-						Bill Pugh)</li>
-
-					<!-- Feature enhancements -->
-					<li>Large (35%) analysis speedup (Bill Pugh)</li>
-					<li>Add line numbers to Swing GUI code panel (Dave Brosius)</li>
-					<li>Added effort options to Swing GUI (Dave Brosius)</li>
-					<li>Add ability to specify bugs file to open from command line
-						for GUI version, through -loadbugs (Phillip Martin)</li>
-					<li>New stylesheet for generating HTML: use option <tt>-html:plain.xsl</tt>
-						(Chris Nappin)
-					</li>
-					<li>New stylesheet for generating HTML: use option <tt>-html:fancy.xsl</tt>
-						(Etienne Giraudy)
-					</li>
-					<li>Updated Japanese bug message translations (Shisei Hanai)</li>
-
-					<!-- Bug fixes -->
-					<li>XHTML compliance fixes for bug details (Etienne Giraudy)</li>
-					<li>Various detector fixes (Shisei Hanai)</li>
-					<li>Fixed bugs in the project preferences dialog int the
-						Eclipse plugin (Takashi Okamoto, Thomas Einwaller)</li>
-					<li>Lowered priority of analysis thread in Swing GUI (David
-						Hovemeyer, suggested by Shisei Hanai and Jeffrey W. Badorek)</li>
-					<li>Fixed EclipsePlugin to correctly pick up auxclasspath
-						entries (Jon Christiansen)</li>
-				</ul>
-
-				<p>Changes since version 0.9.0:</p>
-				<ul>
-					<li>Fixed dependence on JRE 1.5: all features should work on
-						JRE 1.4 again</li>
-					<li>Fixed -effort command line option handling for Swing GUI</li>
-					<li>Fixed conserveSpace and workHard attributes int Ant task</li>
-					<li>Added support for effort attribute in Ant task</li>
-				</ul>
-
-				<p>Changes since version 0.8.8:</p>
-				<ul>
-					<!-- New detectors and bug patterns -->
-					<li>XMLFactoryBypass detector to find direct allocation of xml
-						class implementations (Dave Brosius)</li>
-					<li>InefficientMemberAccess detector to find accesses to
-						owning class private members (Dave Brosius)</li>
-					<li>DuplicateBranches detector checks switch statements too
-						(Dave Brosius)</li>
-
-					<!-- Feature enhancements -->
-					<li>FindBugs available from findbugs.sourceforge.net as Java
-						Web Start application (Dave Brosius)</li>
-					<li>Updated Japanese bug message translations (Shisei Hanai)</li>
-					<li>Improved bug detail message for covariant equals() (Shisei
-						Hanai)</li>
-					<li>Modeling of instanceof checks is now enabled by default,
-						making the bad cast detector much more useful (Bill Pugh, David
-						Hovemeyer)</li>
-					<li>Support for detector ordering constraints in plugin
-						descriptor (David Hovemeyer)</li>
-					<li>Simpler option to control analysis effort: -effort: <i>value</i>,
-						where <i>value</i> is one of <code> min </code> , <code>
-							default </code> , or <code> max </code> (David Hovemeyer)
-					</li>
-					<li>Using -effort:max, FindNullDeref checks for null arguments
-						passed to methods which dereference them unconditionally (David
-						Hovemeyer)</li>
-					<li>FindNullDeref checks @Null and @NonNull annotations for
-						parameters and return values (David Hovemeyer)</li>
-
-					<!-- Bug fixes -->
-				</ul>
-
-				<p>Changes since version 0.8.7:</p>
-
-				<ul>
-					<!-- New detectors and bug patterns -->
-					<li>New detector to find duplicate code in if/else statements
-						(Dave Brosius)</li>
-					<li>Look for calls to wait() on Condition objects (David
-						Hovemeyer)</li>
-					<li>Look for java.util.concurrent.Lock objects not released on
-						every path out of method (David Hovemeyer)</li>
-					<li>Look for calls to Thread.sleep() with a lock held (David
-						Hovemeyer)</li>
-					<li>More accurate detection of impossible casts (Bill Pugh,
-						David Hovemeyer)</li>
-
-					<!-- Feature enhancements -->
-					<li>Saved XML now contains project statistics (Jay Dunning)</li>
-					<li>Filter files can select by bug pattern type and warning
-						priority (David Hovemeyer)</li>
-
-					<!-- Bug fixes -->
-					<li>Restored some files inadvertently omitted from previous
-						release (Rohan Lloyd, David Hovemeyer)</li>
-					<li>Make sure detectors requiring JDK 1.5 runtime classes are
-						only executed if those classes are available (David Hovemeyer)</li>
-					<li>Don't display analysis error dialog unless there is really
-						an error (David Hovemeyer)</li>
-					<li>Updated and expanded French translations of bug patterns
-						and Swing GUI (Olivier Parent)</li>
-					<li>Fixed invalid character encoding in German Swing GUI
-						translation (Olivier Parent)</li>
-					<li>Fix locale used for date format in project stats (K.
-						Hashimoto)</li>
-					<li>Fixed LongDescription elements in xml:withMessages output
-						format (K. Hashimoto)</li>
-				</ul>
-
-				<p>Changes since version 0.8.6:</p>
-
-				<ul>
-					<!-- new detectors -->
-					<li>Extend Naming detector to look for classes that are named
-						XXXException but that are not Exceptions (Dave Brosius)</li>
-					<li>New detector to find classes that expose semaphores in the
-						public implementation through the 'this' reference. (Dave Brosius)
-					</li>
-					<li>New Style detector to find Struts Action/Servlet derived
-						classes that reference instance member variable not in
-						synchronized blocks. (Dave Brosius)</li>
-					<li>New Style detector to find classes that declare
-						implementation of interfaces that are already implemented by super
-						classes (Dave Brosius)</li>
-					<li>New Style detector to find circular dependencies between
-						classes (Dave Brosius)</li>
-					<li>New Style detector to find unnecessary math on constants
-						(Dave Brosius)</li>
-					<li>New detector to find equality comparisons using floating
-						point math (Jay Dunning)</li>
-					<li>New faster detector to find local self assignments (Bill
-						Pugh)</li>
-					<li>New detector to find infinite recursive loops (Bill Pugh)
-					</li>
-					<li>New detector to find for loops with an incorrect increment
-						(Bill Pugh)</li>
-					<li>New detector to find suspicious uses of
-						BufferedReader.readLine() and String.indexOf() (Bill Pugh)</li>
-					<li>New detector to find suspicious integer to double casts
-						(David Hovemeyer, Bill Pugh)</li>
-					<li>New detector to find invalid regular expression patterns
-						(Bill Pugh)</li>
-					<li>New detector to find Bloch/Gafter Java puzzlers (Bill
-						Pugh)</li>
-
-					<!-- feature enhancements -->
-					<li>New system property to suppress reporting of DLS based on
-						local variable name (Glenn Boysko)</li>
-					<li>Enhancements to configuration dialog in Eclipse plugin,
-						allow for saving enabled detectors in Eclipse projects (Phil
-						Crosby)</li>
-					<li>Sortable columns in detector dialog (Dave Brosius)</li>
-					<li>New tab in gui for showing bugs grouped by category (Dave
-						Brosius)</li>
-					<li>Improved German translation of Swing GUI (Thomas Kuehne)</li>
-					<li>Improved source file reporting in Emacs output format (Len
-						Trigg)</li>
-					<li>Improvements to redundant null comparison detector (Bill
-						Pugh)</li>
-					<li>Localization of run analysis and analysis error dialogs in
-						Swing GUI (K. Hashimoto)</li>
-
-					<!-- Bug fixes -->
-					<li>Don't scan equals methods in FindHEMismatch if code is
-						native (Greg Bentz)</li>
-					<li>French translation fixes (David Cotton)</li>
-					<li>Internationalization report fixes (K. Hashimoto)</li>
-					<li>Japanese translations updates (SHISEI Hanai)</li>
-				</ul>
-
-				<p>Changes since version 0.8.5:</p>
-				<ul>
-					<!-- new detectors -->
-					<li>New detector to find catch blocks that may inadvertently
-						catch runtime exceptions (Brian Goetz)</li>
-					<li>New detector to find objects that are instantiated based
-						on classes that only have static methods and fields, using the
-						synthesized constructor (Dave Brosius)</li>
-					<li>New detector to find calls to Thread.interrupted() in a
-						non static context, and especially with non currentThread()
-						threads (Dave Brosius)</li>
-					<li>New detector to find calls to equals() methods that use
-						Object's version. (Dave Brosius)</li>
-					<li>New detector to find Applets that call methods in the
-						constructor refering to the AppletStub (Dave Brosius)</li>
-					<li>New detector to find some cases of infinite recursion
-						(Bill Pugh)</li>
-					<li>New detector to find dead stores to local variables (David
-						Hovemeyer, Bill Pugh)</li>
-					<li>Extend Dumb Method detector for toUpperCase(),
-						toLowerCase() without a locale, new Integer(1).toString(), new
-						XXX().getClass(), and new Thread() without a run implementation
-						(Dave Brosius) <!-- feature enhancements -->
-					</li>
-					<li>Ant task supports "errorProperty" attribute, which sets an
-						Ant property to "true" if an error occurs running FindBugs
-						(Michael Tamm)</li>
-					<li>Eclipse plugin allows filtering of warnings by bug
-						category, priority (David Hovemeyer)</li>
-					<li>Swing GUI allows filtering of warnings by bug category
-						(David Hovemeyer)</li>
-					<li>Ability to annotate methods using Java 1.5 annotations
-						that suppress FindBugs warnings (Bill Pugh)</li>
-					<li>New -adjustExperimental for lowering priority of
-						BugPatterns that are experimental (Dave Brosius)</li>
-					<li>Allow for command line options 'files' using the @ symbol
-						(David Hovemeyer)</li>
-					<li>New -adjustPriority command line option to for adjusting
-						bug priorites (David Hovemeyer)</li>
-					<li>Added an Edit menu (cut/copy/paste) to Swing GUI (Dave
-						Brosius)</li>
-					<li>French translation supplied (David Cotton) <!-- Bug fixes -->
-					</li>
-				</ul>
-
-				<p>Changes since version 0.8.4:</p>
-				<ul>
-					<!-- new detectors -->
-					<li>New detector for volatile references to arrays (Bill Pugh)
-					</li>
-					<li>New detector to find instanceof usage where inheritance
-						can be determined statically (Dave Brosius)</li>
-					<li>New detector to find ResultSet.getXXX updateXXX calls
-						using index 0 (Dave Brosius)</li>
-					<li>New detector to find empty zip or jar entries (Bill Pugh)
-
-						<!-- feature enhancements -->
-					</li>
-					<li>HTML output generation using built-in XSLT stylesheet or
-						user-defined stylesheet (David Hovemeyer)</li>
-					<li>Allow URLs to be specified to analyze zip/jar files, local
-						directories, and single classfiles (David Hovemeyer)</li>
-					<li>New command line option -onlyAnalyze restricts analysis to
-						selected classes and packages without reducing accuracy (David
-						Hovemeyer)</li>
-					<li>Allow Swing GUI to show source code in jar files on
-						Windows systems (Dave Brosius) <!-- Bug fixes -->
-					</li>
-					<li>Fix the Switch Fall Thru detector (Dave Brosius, David
-						Hovemeyer, Bill Pugh)</li>
-					<li>MacOS GUI fixes (Rohan Lloyd)</li>
-					<li>Fix false positive in BOA in case where method is
-						correctly and 'incorrectly' overridden (Dave Brosius)</li>
-					<li>Fixed memory blowup when analyzing methods which access a
-						large number of fields (David Hovemeyer)</li>
-				</ul>
-
-				<p>Changes since version 0.8.3:</p>
-				<ul>
-					<li>Initial and preliminary localization of the Swing
-						GUI.&nbsp; Translations by:
-						<ul>
-							<li>German - Peter D. Stout, Holger Stenzhorn</li>
-							<li>Finnish - Juha Knuutila</li>
-							<li>Estonian - Tanel Lebedev</li>
-							<li>Japanese - Hanai Shisei</li>
-						</ul>
-					</li>
-					<li>Eliminated debug print statements inadvertently left
-						enabled</li>
-					<li>Reverted some changes in the open stream detector: this
-						should fix some false positives that were introduced in the
-						previous release</li>
-					<li>Fixed a couple missing class reports</li>
-				</ul>
-
-				<p>Changes since version 0.8.2:</p>
-				<ul>
-
-					<!-- New detectors -->
-					<li>New detector to find improperly overridden GUI Adapter
-						classes (Dave Brosius)</li>
-					<li>New detector to find improperly setup JUnit TestCases
-						(Dave Brosius)</li>
-					<li>New detector to find variables that mask class level
-						fields (Dave Brosius)</li>
-					<li>New detector to find comparisons of values computed with
-						bitwise operators that always yield the same result (Tom Truscott)
-					</li>
-					<li>New detector to find unsafe getClass().getResource() calls
-						(Bill Pugh)</li>
-					<li>New detector to find GUI changes not in GUI thread but in
-						static main (Bill Pugh)</li>
-					<li>New detector to find calls to Collection.toArray() with
-						zero-length array argument; it is more efficient to pass an array
-						the size of the collection, which can be populated and returned as
-						the result (Dave Brosius) <!-- Analysis improvements -->
-					</li>
-					<li>Better suppression of false warnings in various detectors
-						(Bill Pugh, David Hovemeyer)</li>
-					<li>Enhancement to ReadReturnShouldBeChecked detector for
-						skip() (Dave Brosius)</li>
-					<li>Enhancement to DumbMethods detector (Dave Brosius)</li>
-					<li>Open stream detector does not report wrappers of streams
-						passed as method parameters (David Hovemeyer) <!-- Feature enhancements -->
-					</li>
-					<li>Cancel confirmation dialog in Swing GUI (Pete Angstadt)</li>
-					<li>Better relative path saving in Project file (Dave Brosius)
-					</li>
-					<li>Detector Priority in GUI is now saved in prefs file (Dave
-						Brosius)</li>
-					<li>Controls in GUI to reorder source and classpath entries,
-						and ability to flip between Project details and bugs pages (Dave
-						Brosius)</li>
-					<li>In Swing GUI, analysis error dialog supports "Select All"
-						and "Copy" operations for easy generation of error reports (Dave
-						Brosius)</li>
-					<li>Complete translation of bug descriptions and messages into
-						Japanese (Hanai Shisei) <!-- Bug fixes -->
-					</li>
-					<li>Fixed bug in DroppedException detector (Dave Brosius) <!-- Development stuff -->
-					</li>
-					<li>The source distribution defaults to using JDK 1.5 javac to
-						compile, but support for compiling with JSR-14 prototype is still
-						supported</li>
-				</ul>
-
-				<p>Changes since version 0.8.1:</p>
-				<ul>
-					<li>Fixed a critical ClassCastException bug (triggered if the
-						-workHard option was used, and an exception type was merged with
-						an array type during type inference)</li>
-				</ul>
-
-				<p>Changes since version 0.8.0:</p>
-				<ul>
-					<li>Disabled SwitchFallthrough detector to work around
-						NullPointerExceptions</li>
-					<li>Added some additional false positive suppression
-						heuristics</li>
-				</ul>
-
-				<p>Also, two contributors to the 0.8.0 release were
-					inadvertently left out of the credits:</p>
-				<ul>
-					<li>Pete Angstadt fixed several problems in the Swing GUI</li>
-					<li>Francis Lalonde provided a task resource file for the
-						FindBugs Ant task</li>
-				</ul>
-
-				<p>Changes since version 0.7.4:</p>
-				<ul>
-					<li>New detector to look for uses of "+" operator to
-						concatenate String objects in a loop (Dave Brosius)</li>
-					<li>Reference comparison detector looks for places where the
-						argument passed to the equals(Object) method isn't the same type
-						as the receiver object</li>
-					<li>Better suppression of false warnings in many detectors</li>
-					<li>Many improvements to Eclipse plugin (Andrey Loskutov,
-						Peter Friese)</li>
-					<li>Fixed problem with building Eclipse plugin on Windows
-						(Thomas Klaeger)</li>
-					<li>Open stream detector looks for unclosed PreparedStatement
-						objects (Thomas Klaeger, Rohan Lloyd)</li>
-					<li>Fix for open stream detector: it wasn't detecting close()
-						methods called through an invokeinterface instruction (Thomas
-						Klaeger)</li>
-					<li>Refactoring of visitor classes to enforce use of accessors
-						for visited class features (Brian Goetz)</li>
-				</ul>
-
-				<p>Changes since version 0.7.3:</p>
-				<ul>
-					<li>Experimental modification of open stream detector to look
-						for non-escaping JDBC resources (connections and statements) that
-						aren't closed on all paths out of method</li>
-					<li>Eclipse plugin fixed so it compiles and runs on Eclipse
-						2.1.x (Peter Friese)</li>
-					<li>Option to Swing GUI and command line to generate project
-						file using relative paths for archives, source directories, and
-						aux classpath entries (Dave Brosius)</li>
-					<li>Improvements to findbugs.bat script for launching FindBugs
-						on Windows (Dave Brosius)</li>
-					<li>Updated Japanese message translations (Hiroshi Okugawa)</li>
-					<li>Uncalled private methods are now reported as low priority,
-						unless they have the same name as another method in the class
-						(which is more likely to indicate an actual bug)</li>
-					<li>Added some missing data in the bug messages XML files</li>
-					<li>Fixed some problems building from source on Windows
-						systems</li>
-					<li>Various minor bug fixes</li>
-				</ul>
-
-				<p>Changes since version 0.7.2:</p>
-				<ul>
-					<li>Enhanced Eclipse plugin, which displays the detailed bug
-						description in a view (Phil Crosby)</li>
-					<li>Various tweaks to existing detectors to reduce false
-						warnings</li>
-					<li>New command line option <code> -workHard </code> enables
-						pruning of infeasible or unlikely exception edges, which results
-						in better accuracy in the open stream detector, at the expense of
-						a 30%-100% slowdown
-					</li>
-					<li>New website and HTML documentation design</li>
-					<li>Documentation includes an HTML document with descriptions
-						of all bug patterns reported by FindBugs</li>
-					<li>Web page has a link to a <a
-						href="http://www.simeji.com/findbugs/doc/manual_ja/index.html">Japanese
-							translation</a> of the FindBugs manual, contributed by Hiroshi
-						Okugawa
-					</li>
-					<li>Changed the Inconsistent Synchronization detector so that
-						fields synchronized 50% of the time (or more) are reported as
-						medium priority bugs (previously they were reported as low)</li>
-					<li>New detector to find code that catches
-						IllegalMonitorStateException</li>
-					<li>New detector to find private methods that are never called
-					</li>
-					<li>New detector to find suspicious uses of
-						non-short-circuiting boolean operators ( <code> &amp; </code> and
-						<code> | </code> , rather than <code> &amp;&amp; </code> and <code>
-							|| </code> )
-					</li>
-				</ul>
-
-				<p>Changes since version 0.7.1:</p>
-				<ul>
-					<li>Incorporated patched version of BCEL, which allows classes
-						compiled with JDK 1.5.0 beta to be analyzed</li>
-					<li>Fixed some bugs related to lookups of array classes</li>
-					<li>Fixed bug that prevented GUI from loading XML result files
-						when running under JDK 1.5.0 beta</li>
-					<li>Added new experimental bug detector, LazyInit, which looks
-						for potentially buggy lazy initializations of static fields</li>
-					<li>Because of long filenames, switched to distributing the
-						source archive as a zip file rather than a tar file</li>
-					<li>The 0.7.1 source tarfile was botched - 0.7.2 has a valid
-						source archive</li>
-					<li>Fixed some problems in the Ant build script</li>
-					<li>Fixed NullPointerException when checking Class-Path
-						attribute for Jar files without manifests</li>
-					<li>Generate version numbers for the core and UI Eclipse
-						plugins using the Version class; all version numbers are now in a
-						common location</li>
-				</ul>
-
-				<p>Changes since version 0.7.0:</p>
-				<ul>
-					<li>Eclipse plugin (contributed by Peter Friese)</li>
-					<li>Source package structure rearranged: all source (other
-						than Eclipse plugin UI) is in the edu.umd.cs.findbugs package, or
-						a subpackage</li>
-					<li>Class-Path attributes of manifests of analyzed jar files
-						are used to set the aux classpath automatically (Peter D. Stout)</li>
-					<li>GUI starts in directory specified by user.home property
-						(Peter D. Stout)</li>
-					<li>Added -project option to GUI (Mikko T.)</li>
-					<li>Added -look:{plastic,gtk,native} option to GUI, for
-						setting look and feel (Mikko T.)</li>
-					<li>Fixed DataflowAnalysisException in inconsistent
-						synchronization detector</li>
-					<li>Ant task supports failOnError parameter (Rohan Lloyd)</li>
-					<li>Serializable class warnings are downgraded to low priority
-						for GUI classes</li>
-					<li>MWN detector will only report calls to wait(), notify(),
-						and notifyAll() methods that have the correct signature</li>
-					<li>FindBugs works with latest CVS version of BCEL</li>
-					<li>Zip and Jar files may be added to the source path</li>
-					<li>The GUI will automatically find source files residing in
-						analyzed Zip or Jar files</li>
-				</ul>
-
-				<p>Note that the version number jumped from 0.6.6 to 0.6.9;
-					there were no 0.6.7 or 0.6.8 releases.</p>
-				<p>Changes since version 0.6.9:</p>
-				<ul>
-					<li>Added -conserveSpace option to reduce memory use at the
-						expense of analysis precision</li>
-					<li>Bug fixes in findbugs.bat script: JAVA_HOME handling,
-						autodetection of FINDBUGS_HOME, missing output with -textui</li>
-					<li>Fixed NullPointerException when a missing class is
-						encountered</li>
-				</ul>
-
-				<p>Changes since version 0.6.6:</p>
-				<ul>
-					<li>The null pointer dereference detector is more powerful</li>
-					<li>Significantly improved heuristics and bug fixes in
-						inconsistent synchronization detector</li>
-					<li>Improved heuristics in open stream and dropped exception
-						detectors; fewer false positives should be reported</li>
-					<li>Save HTML summary in XML results files, rather than
-						recomputing; this makes loading results in GUI much faster</li>
-					<li>Report at most one String comparison using == or != per
-						method</li>
-					<li>The findbugs.bat script on Windows autodetects
-						FINDBUGS_HOME, and doesn't open a DOS window when launching the
-						GUI (contributed by TJSB)</li>
-					<li>Emacs reporting format (contributed by David Li)</li>
-					<li>Various bug fixes</li>
-				</ul>
-
-				<p>Changes since 0.6.5:</p>
-				<ul>
-					<li>Rewritten inconsistent synchronization detector; accuracy
-						is significantly improved, and bug reports are prioritized</li>
-					<li>New detector to find self assignment (x=x) of local
-						variables (suggested by Jeff Martin)</li>
-					<li>New detector to find calls to wait(), notify(), and
-						notifyAll() on an object which is not obviously locked</li>
-					<li>Open stream detector now reports Readers and Writers</li>
-					<li>Fixed bug in finalizer idioms detector which caused
-						spurious warnings about failure to call super.finalize() (reported
-						by Jim Menard)</li>
-					<li>Fixed bug where output stream was not closed using non-XML
-						output (reported by Sigiswald Madou)</li>
-					<li>Fixed corrupted HTML bug detail message (reported by
-						Trevor Harmon)</li>
-				</ul>
-
-				<p>Changes since version 0.6.4:</p>
-				<ul>
-					<li>For redundant comparison of reference values, fixed false
-						positives resulting from duplication of code in finally blocks</li>
-					<li>Fixed false positives resulting from wrapped byte array
-						streams left open</li>
-					<li>Fixed bug in Ant task preventing output file from working
-						properly if a relative path was used</li>
-				</ul>
-
-				<p>Changes since version 0.6.3:</p>
-				<ul>
-					<li>Fixed bug in Ant task where output would be corrupted, and
-						added a <code> timeout </code> attribute
-					</li>
-					<li>Added -outputFile option to text UI, for explicitly
-						specifying an output file</li>
-					<li>GUI has a summary window, for statistics about overall bug
-						densities (contributed by Mike Fagan)</li>
-					<li>Find redundant comparisons of reference values</li>
-					<li>More accurate detection of Strings compared with == and !=
-						operators</li>
-					<li>Detection of other reference types which should generally
-						not be compared with == and != operators; Boolean, Integer, etc.</li>
-					<li>Find non-transient non-serializable instance fields in
-						Serializable classes</li>
-					<li>Source code may be compiled with latest early access
-						generics-enabled javac (version 2.2)</li>
-				</ul>
-
-				<p>Changes since version 0.6.2:</p>
-				<ul>
-					<li>GUI supports filtering bugs by priority</li>
-					<li>Ant task rewritten; supports all functionality offered by
-						Text UI (contributed by Mike Fagan)</li>
-					<li>Ant task is fully documented in the manual</li>
-					<li>Classes in nested archives are analyzed; this allows full
-						support for analyzing .ear and .war files (contributed by Mike
-						Fagan)</li>
-					<li>DepthFirstSearch changed to use non-recursive
-						implementation; this should fix the StackOverflowErrors that
-						several users reported</li>
-					<li>Various minor bugfixes and improvements</li>
-				</ul>
-
-				<p>Changes since version 0.6.1:</p>
-				<ul>
-					<li>New detector to look for useless control flow (suggested
-						by Richard P. King and Mike Fagan)</li>
-					<li>Look for places where return value of
-						java.io.File.createNewFile() is ignored (suggested by Richard P.
-						King)</li>
-					<li>Fixed bug in resolution of source files (only the first
-						source directory was searched)</li>
-					<li>Fixed a NullPointerException in the bytecode pattern
-						matching code</li>
-					<li>Ant task supports project files (contributed by Mike
-						Fagan)</li>
-					<li>Unix findbugs script honors the <code> JAVA_HOME </code>
-						environment variable (contributed by Pedro Morais)
-					</li>
-					<li>Allow .war and .ear files to be analyzed</li>
-				</ul>
-
-				<p>Changes since version 0.6.0:</p>
-				<ul>
-					<li>New bug pattern detector which looks for places where a
-						null pointer might be dereferenced</li>
-					<li>New bug pattern detector which looks for IO streams that
-						are opened, do not escape the method, and are not closed on all
-						paths out of the method</li>
-					<li>New bug pattern detector to find methods that can return
-						null instead of a zero-length array</li>
-					<li>New bug pattern detector to find places where the == or !=
-						operators are used to compare String objects</li>
-					<li>Command line interface can save bugs as XML</li>
-					<li>GUI can save bugs to and load bugs from XML</li>
-					<li>An "Annotations" window in the GUI allows the user to add
-						textual annotations to bug reports; these annotations are
-						preserved when bugs are saved as XML</li>
-					<li>In this release, the Japanese bug summary translations by
-						Germano Leichsenring are really included (they were inadvertently
-						omitted in the previous release)</li>
-					<li>Completely rewrote the control flow graph builder,
-						hopefully for the last time</li>
-					<li>Simplified implementation of control flow graphs, which
-						should reduce memory use and possibly improve performance</li>
-					<li>Improvements to command line interface (list bug
-						priorities, filter by priority, specify aux classpath, specify
-						project to analyze)</li>
-					<li>Various bug fixes and enhancements</li>
-				</ul>
-
-				<p>Changes since version 0.5.4</p>
-				<ul>
-					<li>Added an <a href="http://ant.apache.org/">Ant</a> task for
-						FindBugs, contributed by Mike Fagan.
-					</li>
-					<li>Added a GUI dialog which allows individual bug pattern
-						detectors to be enabled or disabled.&nbsp; Disabling certain slow
-						detectors can greatly speed up analysis of large programs, at the
-						expense of reducing the number of potential bugs found.</li>
-					<li>Added a new detector for finding improperly ignored return
-						values for methods such as <code> String.trim() </code> .&nbsp;
-						Suggested by Andreas Mandel.
-					</li>
-					<li>Japanese translations of the bug summaries, contributed by
-						Germano Leichsenring.</li>
-					<li>Filtering of results is supported in command line
-						interface. See the <a href="manual/index.html">FindBugs manual</a>
-						for details.
-					</li>
-					<li>Added "byte code patterns", a general pattern matching
-						infrastructure for bytecode instructions.&nbsp; This feature
-						significantly reduces the complexity of implementing new bug
-						pattern detectors.</li>
-					<li>Enabled a new general dataflow analysis to track values in
-						methods.</li>
-					<li>Switched to new control-flow graph builder implementation.
-					</li>
-				</ul>
-
-				<p>Changes since version 0.5.3</p>
-				<ul>
-					<li>Fixed a bug in the script used to launch FindBugs on
-						Windows platforms.</li>
-					<li>Fixed crashes when analyzing class files without source
-						line information.</li>
-					<li>All major errors are reported using an error dialog; file
-						not found errors are more informative.</li>
-					<li>Minor GUI improvements.</li>
-				</ul>
-
-				<p>Changes since version 0.5.2</p>
-				<ul>
-					<li>All of the source code and related files are in a single
-						directory tree.</li>
-					<li>Updated some of the detectors to produce source line
-						information.</li>
-					<li><a href="http://ant.apache.org/">Ant</a> build script and
-						several GUI enhancements and fixes contributed by Mike Fagan.</li>
-					<li>Converted to use a <a href="AddingDetectors.txt">plugin
-							architecture</a> for loading bug detectors.
-					</li>
-					<li>Eliminated generics-related compiler warnings.</li>
-					<li>More complete documentation has been added.</li>
-				</ul>
-
-				<p>Changes since version 0.5.1:</p>
-				<ul>
-					<li>Fixed a large number of bugs in the BCEL Repository and
-						FindBugs's use of the Repository.&nbsp; With these changes,
-						FindBugs should <em>never</em> crash or otherwise misbehave
-						because of Repository lookup failures.&nbsp; Because of these
-						changes, you must use a modified version of <code> bcel.jar
-						</code> with FindBugs.&nbsp; This jar file is included in the FindBugs
-						0.5.2 binary release.&nbsp; A complete patch containing the <a
-						href="http://faculty.ycp.edu/~dhovemey/bcel-30-April-2003.patch">modifications
-							against the BCEL CVS main branch as of April 30, 2003</a> is also
-						available.
-					</li>
-					<li>Implemented the "auxiliary classpath entry list".&nbsp;
-						Aux classpath entries can be added to a project to provide classes
-						that are referenced by the analyzed application, but should not
-						themselves be analyzed.&nbsp; Having all referenced classes
-						available allows FindBugs to produce more accurate results.</li>
-				</ul>
-
-				<p>Changes since version 0.5.0:</p>
-				<ul>
-					<li>Many user interface bugs have been fixed.</li>
-					<li>Upgraded to a recent CVS version of BCEL, with some bug
-						fixes.&nbsp; This should prevent FindBugs from crashing when there
-						is a failure to find a class on the classpath.</li>
-					<li>Added support for Plastic look and feel from <a
-						href="http://www.jgoodies.com/">jgoodies.com</a>.
-					</li>
-					<li>Major overhaul of infrastructure for doing dataflow
-						analysis.</li>
-				</ul> 
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-			</td>
-
-		</tr>
-	</table>
-
-</body>
-
-</html>
diff --git a/tools/findbugs/doc/FAQ.html b/tools/findbugs/doc/FAQ.html
deleted file mode 100644
index d83b7ee..0000000
--- a/tools/findbugs/doc/FAQ.html
+++ /dev/null
@@ -1,261 +0,0 @@
-<html>
-<head>
-<title>FindBugs FAQ</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td>
-<h1>FindBugs FAQ</h1>
-
-<p> This document contains answers to frequently asked questions about
-<a href="index.html">FindBugs</a>.&nbsp; If you just want general
-information about FindBugs, have a look at the
-<a href="factSheet.html">fact sheet</a> and the
-<a href="manual/index.html">manual</a>.
-
-<h2>Contents</h2>
-<ol>
-<li> <a href="#q1">I'm getting java.lang.UnsupportedClassVersionError when I try to run FindBugs</a>
-<li> <a href="#q2">When I click the "Find Bugs!" button, I get a NoSuchMethodError or VerifyError</a>
-<li> <a href="#q3">FindBugs is running out of memory, or is taking a long time to finish</a>
-<li> <a href="#q4">What is the "auxiliary classpath"?  Why should I specify it?</a>
-<li> <a href="#q5">The Eclipse plugin doesn't load</a>
-<li> <a href="#q6">I'm getting a lot of false "OS" and "ODR" warnings</a>
-<li> <a href="#q7">The Eclipse plugin loads, but doesn't work correctly</a>
-<li> <a href="#q8">Where is the Maven plugin for FindBugs?</a>
-<li> <a href="#q9">Where is the NetBeans plugin for FindBugs?</a>
-</ol>
-
-<h2><a name="q1">Q1: I'm getting java.lang.UnsupportedClassVersionError when I try to run FindBugs</a></h2>
-
-<p> FindBugs requires JRE 1.5.0 or later to run.&nbsp; If you use an earlier version,
-you will see an exception error message similar to the following:
-<pre>
-Exception in thread "main" java.lang.UnsupportedClassVersionError:
-edu/umd/cs/findbugs/gui/FindBugsFrame (Unsupported major.minor version 48.0)
-</pre>
-The solution is to upgrade to JRE 1.5.0 or later.
-
-<h2><a name="q2">Q2: When I click the "Find Bugs!" button, I get a NoSuchMethodError or VerifyError</a></h2>
-
-<p> The symptom of this bug is that when you start the FindBugs analysis,
-you see an exception similar to the following:
-<pre>
-java.lang.NoSuchMethodError: org.apache.bcel.Repository.setRepository(Lorg/apache/bcel/util/Repository;)V
-        at edu.umd.cs.findbugs.FindBugs.clearRepository(FindBugs.java:483)
-        ...
-</pre>
-
-or
-
-<pre>
-java.lang.VerifyError: Cannot inherit from final class
-    at java.lang.ClassLoader.defineClass0(Native Method)
-    at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
-    ...
-</pre>
-
-<p> The problem here is that the wrong version of the
-<a href="http://jakarta.apache.org/bcel/">Apache BCEL</a>
-library is being found.&nbsp; FindBugs requires its own
-version of BCEL, which normally will be used automatically
-when you invoke the <code>findbugs</code> or <code>findbugs.bat</code>
-scripts used to launch FindBugs.&nbsp; If an old version of BCEL is installed
-in a location, such as "lib/endorsed" in the JRE installation,
-where it overrides classes on the application classpath,
-FindBugs will not execute properly.&nbsp;
-We know of several reasons this could happen
-
-<ul>
-<li> If you install the
-<a href="http://java.sun.com/webservices/downloads/webservicespack.html">Java(TM) Web Services
-Developer Pack 1.2</a>
-in the <code>lib/endorsed</code> directory of your Java Runtime Environment (JRE).&nbsp;
-The file <code>xsltc.jar</code> contains an old version of BCEL that is incompatible with
-FindBugs.&nbsp;
-
-<li> Another possibility is that you are using the IBM JDK.&nbsp;
-Some versions include a version of BCEL which conflicts with the
-one required by FindBugs.&nbsp; This problem is fixed in version 1.4.1 SP1,
-so upgrading your JDK should allow FindBugs to run correctly.
-
-<li> Some versions of the Apache Xalan XSLT processor include
-an old version of BCEL in <code>xalan.jar</code>.
-
-</ul>
-
-<p> In all of these cases, you should be able to run FindBugs
-by either removing the offending version of BCEL from your JRE,
-or installing a clean JRE or JDK and using that to run FindBugs.
-
-<p> Many thanks to Peter Meulmeester, Michael Levi, and Thomas Klaeger
-for providing information on this problem.
-
-<h2><a name="q3">Q3: FindBugs is running out of memory, or is taking a long time to finish</a></h2>
-
-<p> In general, FindBugs requires lots of memory and a relatively
-fast CPU.  For large applications, 512M or more of heap space may be
-required.  By default, FindBugs allocates 256M of heap space.
-You can increase this using the <code>-maxHeap <i>n</i></code> option,
-where <i>n</i> is the number of megabytes of heap space to allocate.
-
-
-<h2><a name="q4">Q4: What is the "auxiliary classpath"?  Why should I specify it?</a></h2>
-
-<p> Many important facts about a Java class require information about
-the classes that it references.&nbsp; For example:
-<ul>
-<li> What other classes and interfaces the class inherits from
-<li> What exceptions can be thrown by methods in external classes
-and interfaces
-</ul>
-
-<p> The "auxiliary classpath" is a list of Jar files, directories, and
-class files containing classes that are <em>used</em> by the code you
-want FindBugs to analyze, but should not themselves be analyzed
-by FindBugs.
-
-<p> If FindBugs doesn't have complete information about referenced classes,
-it will not be able to produce results that are as accurate as possible.&nbsp;
-For example, having a complete repository of referenced classes allows
-FindBugs to prune control flow information so it can concentrate on
-paths through methods that are most likely to be feasible at runtime.&nbsp;
-Also, some bug detectors (such as the suspicious reference comparison detector)
-rely on being able to perform type inference, which requires complete
-type hierarchy information.
-
-<p> For these reasons, we strongly recommend that you completely specify
-the auxiliary classpath when you run FindBugs.&nbsp; You can do this
-by using the <code>-auxclasspath</code> command line option, or the
-"Classpath entries" list in the GUI project editor dialog.
-
-<p> If FindBugs cannot find a class referenced by your application, it
-will print out a message when the analysis completes, specifying the
-classes that were missing.&nbsp; You should modify the auxiliary classpath
-to specify how to find the missing classes, and then run FindBugs again.
-
-<h2><a name="q5">Q5: The Eclipse plugin doesn't load</a></h2>
-
-<p> The symptom of this problem is that Eclipse fails to load
-the FindBugs UI plugin with the message:
-<blockquote>
-Plug-in "edu.umd.cs.findbugs.plugin.eclipse" was disabled due to missing or disabled
-prerequisite plug-in "org.eclipse.ui.ide"
-</blockquote>
-
-<p> The reason for this problem is that the Eclipse
-plugin distributed with FindBugs
-does not work with older 3.x versions of Eclipse.
-Please use Eclipse version 3.6 (June 2010) or newer.
-
-<h2><a name="q6">Q6: I'm getting a lot of false "OS" and "ODR" warnings</a></h2>
-
-<p> By default, FindBugs assumes that any method invocation can
-throw an unchecked runtime exception.&nbsp; As a result,
-it may assume that an unchecked exception thrown out of the
-method could bypass a call to a <code>close()</code> method
-for a stream or database resource.
-
-<p> You can use the <code>-workHard</code> command line argument
-or the <code>findbugs.workHard</code> boolean analysis property
-to make FindBugs work harder to prune unlikely exception
-edges.&nbsp; This generally reduces the number of
-false warnings, at the expense of slowing down the
-analysis.
-
-<h2><a name="q7">Q7: The Eclipse plugin loads, but doesn't work correctly</a></h2>
-
-<p> Make sure the Java code you trying to analyze is built properly and has no
-classpath or compile errors.
-
-<p> Make sure the project and workspace FindBugs settings are valid - in doubt, revert them to defaults.
-
-<p> Make sure the Error log view does not show errors.
-
-<h2><a name="q8">Q8: Where is the Maven plugin for FindBugs?</a></h2>
-
-<p>
-The <a href="http://maven.apache.org/">Maven</a> Plugin for FindBugs
-may be found <a href="http://mojo.codehaus.org/findbugs-maven-plugin/">here</a>.&nbsp;
-Please note that the Maven plugin is not maintained by the FindBugs developers,
-so we can't answer questions about it.
-</p>
-
-<h2><a name="q9">Q9: Where is the NetBeans plugin for FindBugs?</a></h2>
-
-<p>We recommend <a href="http://kenai.com/projects/sqe/pages/Home">SQE: Software Quality Environment</a>
-which bundles FindBugs, PMD and CheckStyle. Use the following
-update site:
-<a href="http://deadlock.netbeans.org/hudson/job/sqe/lastStableBuild/artifact/build/full-sqe-updatecenter/updates.xml
-">http://deadlock.netbeans.org/hudson/job/sqe/lastStableBuild/artifact/build/full-sqe-updatecenter/updates.xml</a>
-<p>Pease note that the SQE plugin is not maintained by the FindBugs developers,
-so we can't answer questions about it.
-</p>
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</table>
-
-</body>
-
-</html>
diff --git a/tools/findbugs/doc/FilterFile.txt b/tools/findbugs/doc/FilterFile.txt
deleted file mode 100644
index 1fed032..0000000
--- a/tools/findbugs/doc/FilterFile.txt
+++ /dev/null
@@ -1,125 +0,0 @@
-=============
-How it works:
-=============
-
-A filter file is an XML file with a top-level "FindBugsFilter" element
-which has some number of "Match" elements as children.  Each Match
-element represents a predicate which is applied to generated bug instances.
-Usually, a filter will be used to exclude bug instances.  For example:
-
-  findbugs -textui -exclude myExcludeFilter.xml myApp.jar
-
-However, a filter could also be used to select bug instances to specifically
-report:
-
-  findbugs -textui -include myIncludeFilter.xml myApp.jar
-
-Match has "class" and "classregex" attributes specifying what class or classes
-the predicate applies to.
-
-Match contains children, which are conjuncts of the predicate.
-(I.e., each of the children must be true for the predicate to be true.)
-
-=======================
-Types of Match clauses:
-=======================
-
-   <BugCode> specifies abbreviations of bugs.
-   The "name" attribute is a comma-seperated list of abbreviations.
-
-   <Method> specifies a method.  The "name" attribute is the name
-   of the method.  The "params" attribute is a comma separated list
-   of the types of the method's parameters.  The "returns" attribute is
-   the method's return type.  In "params" and "returns", class names
-   must be fully qualified.  (E.g., "java.lang.String" instead of just
-   "String".)  Note that "params" and "returns" are optional; you can
-   just specify "name", and the clause will match all methods with
-   that name.  However, if you specify either "params" or "returns",
-   you must specify both of them.
-
-   <Or> combines Match clauses as disjuncts.  I.e., you can put two
-   "Method" elements in an Or clause in order match either method.
-
-========
-Caveats:
-========
-
-Match clauses can only match information that is actually contained in the
-bug instances.  Every bug instance has a class, so in general, excluding
-bugs by class will work.
-
-Some bug instances have two classes.  For example, the DE (dropped exception)
-bugs report both the class containing the method where the dropped exception
-happens, and the class which represents the type of the dropped exception.
-Only the FIRST (primary) class is matched against Match clauses.
-So, for example, if you want to suppress IC (initialization circularity)
-reports for classes "com.foobar.A" and "com.foobar.B", you would use
-two Match clauses:
-
-   <Match class="com.foobar.A">
-      <BugCode name="IC" />
-   </Match>
-
-   <Match class="com.foobar.B">
-      <BugCode name="IC" />
-   </Match>
-
-Many kinds of bugs report what method they occur in.  For those bug instances,
-you can put Method clauses in the Match element and they should work
-as expected.
-
-=========
-Examples:
-=========
-
-  1. Match all bug reports for a class.
-
-     <Match class="com.foobar.MyClass" />
-
-  2. Match certain tests from a class.
-     <Match class="com.foobar.MyClass">
-       <BugCode name="DE,UrF,SIC" />
-     </Match>
-
-  3. Match certain tests from all classes.
-
-     <Match classregex=".*" >
-       <BugCode name="DE,UrF,SIC" />
-     </Match>
-
-  4. Match bug types from specified methods of a class.
-
-     <Match class="com.foobar.MyClass">
-       <Or>
-         <Method name="frob" params="int,java.lang.String" returns="void" />
-         <Method name="blat" params="" returns="boolean" />
-       </Or>
-       <BugCode name="DC" />
-     </Match>
-
-=================
-Complete Example:
-=================
-
-<FindBugsFilter>
-     <Match class="com.foobar.ClassNotToBeAnalyzed" />
-
-     <Match class="com.foobar.ClassWithSomeBugsMatched">
-       <BugCode name="DE,UrF,SIC" />
-     </Match>
-
-     <!-- Match all XYZ violations. -->
-     <Match classregex=".*" >
-       <BugCode name="XYZ" />
-     </Match>
-
-     <!-- Match all doublecheck violations in these methods of "AnotherClass". -->
-     <Match class="com.foobar.AnotherClass">
-       <Or>
-         <Method name="nonOverloadedMethod" />
-         <Method name="frob" params="int,java.lang.String" returns="void" />
-         <Method name="blat" params="" returns="boolean" />
-       </Or>
-       <BugCode name="DC" />
-     </Match>
-</FindBugsFilter>
diff --git a/tools/findbugs/doc/allBugDescriptions.html b/tools/findbugs/doc/allBugDescriptions.html
deleted file mode 100644
index a9e94e0..0000000
--- a/tools/findbugs/doc/allBugDescriptions.html
+++ /dev/null
@@ -1,5500 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html><head><title>FindBugs Bug Descriptions (Unabridged)</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css"/>
-<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
-</head><body>
-
-<table width="100%"><tr>
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-<td align="left" valign="top">
-<h1>FindBugs Bug Descriptions (Unabridged)</h1>
-<p>This document lists all of the bug patterns reported by the
-latest development version of 
-<a href="http://findbugs.sourceforge.net">FindBugs</a>.&nbsp; Note that this may include
-bug patterns not available in any released version of FindBugs,
-as well as bug patterns that are not enabled by default.
-<h2>Summary</h2>
-<table width="100%">
-<tr bgcolor="#b9b9fe"><th>Description</th><th>Category</th></tr>
-<tr bgcolor="#eeeeee"><td><a href="#AM_CREATES_EMPTY_JAR_FILE_ENTRY">AM: Creates an empty jar file entry</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#AM_CREATES_EMPTY_ZIP_FILE_ENTRY">AM: Creates an empty zip file entry</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_EQUALS_METHOD_SHOULD_WORK_FOR_ALL_OBJECTS">BC: Equals method should not assume anything about the type of its argument</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BIT_SIGNED_CHECK">BIT: Check for sign of bitwise operation</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#CN_IDIOM">CN: Class implements Cloneable but does not define or use clone method</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#CN_IDIOM_NO_SUPER_CALL">CN: clone method does not call super.clone()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE">CN: Class defines clone() but doesn't implement Cloneable</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#CO_ABSTRACT_SELF">Co: Abstract class defines covariant compareTo() method</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#CO_SELF_NO_OBJECT">Co: Covariant compareTo() method defined</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DE_MIGHT_DROP">DE: Method might drop exception</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DE_MIGHT_IGNORE">DE: Method might ignore exception</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_ENTRY_SETS_MAY_REUSE_ENTRY_OBJECTS">DMI: Adding elements of an entry set may fail due to reuse of Entry objects</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_RANDOM_USED_ONLY_ONCE">DMI: Random object created and used only once</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_USING_REMOVEALL_TO_CLEAR_COLLECTION">DMI: Don't use removeAll to clear a collection</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_EXIT">Dm: Method invokes System.exit(...)</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_RUN_FINALIZERS_ON_EXIT">Dm: Method invokes dangerous method runFinalizersOnExit</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ES_COMPARING_PARAMETER_STRING_WITH_EQ">ES: Comparison of String parameter using == or !=</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ES_COMPARING_STRINGS_WITH_EQ">ES: Comparison of String objects using == or !=</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_ABSTRACT_SELF">Eq: Abstract class defines covariant equals() method</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS">Eq: Equals checks for incompatible operand</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_COMPARETO_USE_OBJECT_EQUALS">Eq: Class defines compareTo(...) and uses Object.equals()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_GETCLASS_AND_CLASS_CONSTANT">Eq: equals method fails for subtypes</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_SELF_NO_OBJECT">Eq: Covariant equals() method defined</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FI_EMPTY">FI: Empty finalizer should be deleted</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FI_EXPLICIT_INVOCATION">FI: Explicit invocation of finalizer</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FI_FINALIZER_NULLS_FIELDS">FI: Finalizer nulls fields</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FI_FINALIZER_ONLY_NULLS_FIELDS">FI: Finalizer only nulls fields</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FI_MISSING_SUPER_CALL">FI: Finalizer does not call superclass finalizer</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FI_NULLIFY_SUPER">FI: Finalizer nullifies superclass finalizer</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FI_USELESS">FI: Finalizer does nothing but call superclass finalizer</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_USES_NEWLINE">FS: Format string should use %n rather than \n</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#GC_UNCHECKED_TYPE_IN_GENERIC_CALL">GC: Unchecked type in generic call</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HE_EQUALS_NO_HASHCODE">HE: Class defines equals() but not hashCode()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#HE_EQUALS_USE_HASHCODE">HE: Class defines equals() and uses Object.hashCode()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HE_HASHCODE_NO_EQUALS">HE: Class defines hashCode() but not equals()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#HE_HASHCODE_USE_OBJECT_EQUALS">HE: Class defines hashCode() and uses Object.equals()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HE_INHERITS_EQUALS_USE_HASHCODE">HE: Class inherits equals() and uses Object.hashCode()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION">IC: Superclass uses subclass during initialization</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IMSE_DONT_CATCH_IMSE">IMSE: Dubious catching of IllegalMonitorStateException</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ISC_INSTANTIATE_STATIC_CLASS">ISC: Needless instantiation of class that only supplies static methods</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IT_NO_SUCH_ELEMENT">It: Iterator next() method can't throw NoSuchElementException</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#J2EE_STORE_OF_NON_SERIALIZABLE_OBJECT_INTO_SESSION">J2EE: Store of non serializable object into HttpSession</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#JCIP_FIELD_ISNT_FINAL_IN_IMMUTABLE_CLASS">JCIP: Fields of immutable classes should be final</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_BOOLEAN_RETURN_NULL">NP: Method with Boolean return type returns explicit null</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_CLONE_COULD_RETURN_NULL">NP: Clone method may return null</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_EQUALS_SHOULD_HANDLE_NULL_ARGUMENT">NP: equals() method does not check for null argument</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_TOSTRING_COULD_RETURN_NULL">NP: toString method may return null</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_CLASS_NAMING_CONVENTION">Nm: Class names should start with an upper case letter</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_CLASS_NOT_EXCEPTION">Nm: Class is not derived from an Exception, even though it is named as such</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_CONFUSING">Nm: Confusing method names</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_FIELD_NAMING_CONVENTION">Nm: Field names should start with a lower case letter</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_FUTURE_KEYWORD_USED_AS_IDENTIFIER">Nm: Use of identifier that is a keyword in later versions of Java</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_FUTURE_KEYWORD_USED_AS_MEMBER_IDENTIFIER">Nm: Use of identifier that is a keyword in later versions of Java</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_METHOD_NAMING_CONVENTION">Nm: Method names should start with a lower case letter</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_SAME_SIMPLE_NAME_AS_INTERFACE">Nm: Class names shouldn't shadow simple name of implemented interface</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_SAME_SIMPLE_NAME_AS_SUPERCLASS">Nm: Class names shouldn't shadow simple name of superclass</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_VERY_CONFUSING_INTENTIONAL">Nm: Very confusing method names (but perhaps intentional)</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_WRONG_PACKAGE_INTENTIONAL">Nm: Method doesn't override method in superclass due to wrong package for parameter</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ODR_OPEN_DATABASE_RESOURCE">ODR: Method may fail to close database resource</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ODR_OPEN_DATABASE_RESOURCE_EXCEPTION_PATH">ODR: Method may fail to close database resource on exception</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#OS_OPEN_STREAM">OS: Method may fail to close stream</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#OS_OPEN_STREAM_EXCEPTION_PATH">OS: Method may fail to close stream on exception</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#PZ_DONT_REUSE_ENTRY_OBJECTS_IN_ITERATORS">PZ: Don't reuse entry objects in iterators</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RC_REF_COMPARISON_BAD_PRACTICE">RC: Suspicious reference comparison to constant</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN">RC: Suspicious reference comparison of Boolean values</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RR_NOT_CHECKED">RR: Method ignores results of InputStream.read()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SR_NOT_CHECKED">RR: Method ignores results of InputStream.skip()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_NEGATING_RESULT_OF_COMPARETO">RV: Negating the result of compareTo()/compare()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_RETURN_VALUE_IGNORED_BAD_PRACTICE">RV: Method ignores exceptional return value</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SI_INSTANCE_BEFORE_FINALS_ASSIGNED">SI: Static initializer creates instance before all static final fields assigned</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SW_SWING_METHODS_INVOKED_IN_SWING_THREAD">SW: Certain swing methods needs to be invoked in Swing thread</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_BAD_FIELD">Se: Non-transient non-serializable instance field in serializable class</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_BAD_FIELD_INNER_CLASS">Se: Non-serializable class has a serializable inner class</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_BAD_FIELD_STORE">Se: Non-serializable value stored into instance field of a serializable class</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_COMPARATOR_SHOULD_BE_SERIALIZABLE">Se: Comparator doesn't implement Serializable</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_INNER_CLASS">Se: Serializable inner class</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_NONFINAL_SERIALVERSIONID">Se: serialVersionUID isn't final</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_NONLONG_SERIALVERSIONID">Se: serialVersionUID isn't long</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_NONSTATIC_SERIALVERSIONID">Se: serialVersionUID isn't static</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_NO_SUITABLE_CONSTRUCTOR">Se: Class is Serializable but its superclass doesn't define a void constructor</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_NO_SUITABLE_CONSTRUCTOR_FOR_EXTERNALIZATION">Se: Class is Externalizable but doesn't define a void constructor</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_READ_RESOLVE_MUST_RETURN_OBJECT">Se: The readResolve method must be declared with a return type of Object. </a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_TRANSIENT_FIELD_NOT_RESTORED">Se: Transient field that isn't set by deserialization. </a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_NO_SERIALVERSIONID">SnVI: Class is Serializable, but doesn't define serialVersionUID</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UI_INHERITANCE_UNSAFE_GETRESOURCE">UI: Usage of GetResource may be unsafe if class is extended</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BAC_BAD_APPLET_CONSTRUCTOR">BAC: Bad Applet Constructor relies on uninitialized AppletStub</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_IMPOSSIBLE_CAST">BC: Impossible cast</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BC_IMPOSSIBLE_DOWNCAST">BC: Impossible downcast</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY">BC: Impossible downcast of toArray() result</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BC_IMPOSSIBLE_INSTANCEOF">BC: instanceof will always return false</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BIT_ADD_OF_SIGNED_BYTE">BIT: Bitwise add of signed byte value</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BIT_AND">BIT: Incompatible bit masks</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BIT_AND_ZZ">BIT: Check to see if ((...) & 0) == 0</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BIT_IOR">BIT: Incompatible bit masks</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BIT_IOR_OF_SIGNED_BYTE">BIT: Bitwise OR of signed byte value</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BIT_SIGNED_CHECK_HIGH_BIT">BIT: Check for sign of bitwise operation</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BOA_BADLY_OVERRIDDEN_ADAPTER">BOA: Class overrides a method implemented in super class Adapter wrongly</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ICAST_BAD_SHIFT_AMOUNT">BSHIFT: 32 bit int shifted by an amount not in the range -31..31</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BX_UNBOXED_AND_COERCED_FOR_TERNARY_OPERATOR">Bx: Primitive value is unboxed and coerced for ternary operator</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#CO_COMPARETO_RESULTS_MIN_VALUE">Co: compareTo()/compare() returns Integer.MIN_VALUE</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DLS_DEAD_LOCAL_INCREMENT_IN_RETURN">DLS: Useless increment in return statement</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DLS_DEAD_STORE_OF_CLASS_LITERAL">DLS: Dead store of class literal</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DLS_OVERWRITTEN_INCREMENT">DLS: Overwritten increment</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_ARGUMENTS_WRONG_ORDER">DMI: Reversed method arguments</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_BAD_MONTH">DMI: Bad constant value for month</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_BIGDECIMAL_CONSTRUCTED_FROM_DOUBLE">DMI: BigDecimal constructed from double that isn't represented precisely</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_CALLING_NEXT_FROM_HASNEXT">DMI: hasNext method invokes next</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_COLLECTIONS_SHOULD_NOT_CONTAIN_THEMSELVES">DMI: Collections should not contain themselves</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_DOH">DMI: D'oh! A nonsensical method invocation</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_INVOKING_HASHCODE_ON_ARRAY">DMI: Invocation of hashCode on an array</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_LONG_BITS_TO_DOUBLE_INVOKED_ON_INT">DMI: Double.longBitsToDouble invoked on an int</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_VACUOUS_SELF_COLLECTION_CALL">DMI: Vacuous call to collections</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_ANNOTATION_IS_NOT_VISIBLE_TO_REFLECTION">Dm: Can't use reflection to check for presence of annotation without runtime retention</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_FUTILE_ATTEMPT_TO_CHANGE_MAXPOOL_SIZE_OF_SCHEDULED_THREAD_POOL_EXECUTOR">Dm: Futile attempt to change max pool size of ScheduledThreadPoolExecutor</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_SCHEDULED_THREAD_POOL_EXECUTOR_WITH_ZERO_CORE_THREADS">Dm: Creation of ScheduledThreadPoolExecutor with zero core threads</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_VACUOUS_CALL_TO_EASYMOCK_METHOD">Dm: Useless/vacuous call to EasyMock method</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EC_ARRAY_AND_NONARRAY">EC: equals() used to compare array and nonarray</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EC_BAD_ARRAY_COMPARE">EC: Invocation of equals() on an array, which is equivalent to ==</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EC_INCOMPATIBLE_ARRAY_COMPARE">EC: equals(...) used to compare incompatible arrays</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EC_NULL_ARG">EC: Call to equals(null)</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EC_UNRELATED_CLASS_AND_INTERFACE">EC: Call to equals() comparing unrelated class and interface</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EC_UNRELATED_INTERFACES">EC: Call to equals() comparing different interface types</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EC_UNRELATED_TYPES">EC: Call to equals() comparing different types</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EC_UNRELATED_TYPES_USING_POINTER_EQUALITY">EC: Using pointer equality to compare different types</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_ALWAYS_FALSE">Eq: equals method always returns false</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_ALWAYS_TRUE">Eq: equals method always returns true</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_COMPARING_CLASS_NAMES">Eq: equals method compares class names rather than class objects</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_DONT_DEFINE_EQUALS_FOR_ENUM">Eq: Covariant equals() method defined for enum</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_OTHER_NO_OBJECT">Eq: equals() method defined that doesn't override equals(Object)</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_OTHER_USE_OBJECT">Eq: equals() method defined that doesn't override Object.equals(Object)</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC">Eq: equals method overrides equals in superclass and may not be symmetric</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_SELF_USE_OBJECT">Eq: Covariant equals() method defined, Object.equals(Object) inherited</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FB_MISSING_EXPECTED_WARNING">FB: Missing expected or desired warning from FindBugs</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FB_UNEXPECTED_WARNING">FB: Unexpected/undesired warning from FindBugs</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FE_TEST_IF_EQUAL_TO_NOT_A_NUMBER">FE: Doomed test for equality to NaN</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FL_MATH_USING_FLOAT_PRECISION">FL: Method performs math using floating point precision</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_BAD_ARGUMENT">FS: Format string placeholder incompatible with passed argument</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VA_FORMAT_STRING_BAD_CONVERSION">FS: The type of a supplied argument doesn't match format specifier</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED">FS: MessageFormat supplied where printf style format expected</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VA_FORMAT_STRING_EXTRA_ARGUMENTS_PASSED">FS: More arguments are passed than are actually used in the format string</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_ILLEGAL">FS: Illegal format string</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VA_FORMAT_STRING_MISSING_ARGUMENT">FS: Format string references missing argument</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_NO_PREVIOUS_ARGUMENT">FS: No previous argument for format string</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#GC_UNRELATED_TYPES">GC: No relationship between generic parameter and method argument</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HE_SIGNATURE_DECLARES_HASHING_OF_UNHASHABLE_CLASS">HE: Signature declares use of unhashable class in hashed construct</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#HE_USE_OF_UNHASHABLE_CLASS">HE: Use of class without a hashCode() method in a hashed data structure</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ICAST_INT_2_LONG_AS_INSTANT">ICAST: int value converted to long and used as absolute time</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ICAST_INT_CAST_TO_DOUBLE_PASSED_TO_CEIL">ICAST: Integral value cast to double and then passed to Math.ceil</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ICAST_INT_CAST_TO_FLOAT_PASSED_TO_ROUND">ICAST: int value cast to float and then passed to Math.round</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IJU_ASSERT_METHOD_INVOKED_FROM_RUN_METHOD">IJU: JUnit assertion in run method will not be noticed by JUnit</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IJU_BAD_SUITE_METHOD">IJU: TestCase declares a bad suite method </a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IJU_NO_TESTS">IJU: TestCase has no tests</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IJU_SETUP_NO_SUPER">IJU: TestCase defines setUp that doesn't call super.setUp()</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IJU_SUITE_NOT_STATIC">IJU: TestCase implements a non-static suite method </a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IJU_TEARDOWN_NO_SUPER">IJU: TestCase defines tearDown that doesn't call super.tearDown()</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IL_CONTAINER_ADDED_TO_ITSELF">IL: A collection is added to itself</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IL_INFINITE_LOOP">IL: An apparent infinite loop</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IL_INFINITE_RECURSIVE_LOOP">IL: An apparent infinite recursive loop</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IM_MULTIPLYING_RESULT_OF_IREM">IM: Integer multiply of result of integer remainder</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#INT_BAD_COMPARISON_WITH_INT_VALUE">INT: Bad comparison of int value with long constant</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#INT_BAD_COMPARISON_WITH_NONNEGATIVE_VALUE">INT: Bad comparison of nonnegative value with negative constant</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#INT_BAD_COMPARISON_WITH_SIGNED_BYTE">INT: Bad comparison of signed byte</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IO_APPENDING_TO_OBJECT_OUTPUT_STREAM">IO: Doomed attempt to append to an object output stream</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN">IP: A parameter is dead upon entry to a method but overwritten</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MF_CLASS_MASKS_FIELD">MF: Class defines field that masks a superclass field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MF_METHOD_MASKS_FIELD">MF: Method defines a variable that obscures a field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_ALWAYS_NULL">NP: Null pointer dereference</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_ALWAYS_NULL_EXCEPTION">NP: Null pointer dereference in method on exception path</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_ARGUMENT_MIGHT_BE_NULL">NP: Method does not check for null argument</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_CLOSING_NULL">NP: close() invoked on a value that is always null</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_GUARANTEED_DEREF">NP: Null value is guaranteed to be dereferenced</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_GUARANTEED_DEREF_ON_EXCEPTION_PATH">NP: Value is null and guaranteed to be dereferenced on exception path</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR">NP: Nonnull field is not initialized</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_NONNULL_PARAM_VIOLATION">NP: Method call passes null to a nonnull parameter </a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NONNULL_RETURN_VIOLATION">NP: Method may return null, but is declared @NonNull</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_NULL_INSTANCEOF">NP: A known null value is checked to see if it is an instance of a type</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NULL_ON_SOME_PATH">NP: Possible null pointer dereference</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_NULL_ON_SOME_PATH_EXCEPTION">NP: Possible null pointer dereference in method on exception path</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NULL_PARAM_DEREF">NP: Method call passes null for nonnull parameter</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS">NP: Method call passes null for nonnull parameter</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NULL_PARAM_DEREF_NONVIRTUAL">NP: Non-virtual method call passes null for nonnull parameter</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_STORE_INTO_NONNULL_FIELD">NP: Store of null value into field annotated NonNull</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_UNWRITTEN_FIELD">NP: Read of unwritten field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_BAD_EQUAL">Nm: Class defines equal(Object); should it be equals(Object)?</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_LCASE_HASHCODE">Nm: Class defines hashcode(); should it be hashCode()?</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_LCASE_TOSTRING">Nm: Class defines tostring(); should it be toString()?</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_METHOD_CONSTRUCTOR_CONFUSION">Nm: Apparent method/constructor confusion</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_VERY_CONFUSING">Nm: Very confusing method names</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_WRONG_PACKAGE">Nm: Method doesn't override method in superclass due to wrong package for parameter</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#QBA_QUESTIONABLE_BOOLEAN_ASSIGNMENT">QBA: Method assigns boolean literal in boolean expression</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RC_REF_COMPARISON">RC: Suspicious reference comparison</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE">RCN: Nullcheck of value previously dereferenced</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RE_BAD_SYNTAX_FOR_REGULAR_EXPRESSION">RE: Invalid syntax for regular expression</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RE_CANT_USE_FILE_SEPARATOR_AS_REGULAR_EXPRESSION">RE: File.separator used for regular expression</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RE_POSSIBLE_UNINTENDED_PATTERN">RE: "." or "|" used for regular expression</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_01_TO_INT">RV: Random value from 0 to 1 is coerced to the integer 0</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_ABSOLUTE_VALUE_OF_HASHCODE">RV: Bad attempt to compute absolute value of signed 32-bit hashcode </a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_ABSOLUTE_VALUE_OF_RANDOM_INT">RV: Bad attempt to compute absolute value of signed random integer</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_CHECK_COMPARETO_FOR_SPECIFIC_RETURN_VALUE">RV: Code checks for specific values returned by compareTo</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_EXCEPTION_NOT_THROWN">RV: Exception created and dropped rather than thrown</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_RETURN_VALUE_IGNORED">RV: Method ignores return value</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RpC_REPEATED_CONDITIONAL_TEST">RpC: Repeated conditional tests</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SA_FIELD_SELF_ASSIGNMENT">SA: Self assignment of field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SA_FIELD_SELF_COMPARISON">SA: Self comparison of field with itself</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SA_FIELD_SELF_COMPUTATION">SA: Nonsensical self computation involving a field (e.g., x & x)</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SA_LOCAL_SELF_ASSIGNMENT_INSTEAD_OF_FIELD">SA: Self assignment of local rather than assignment to field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SA_LOCAL_SELF_COMPARISON">SA: Self comparison of value with itself</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SA_LOCAL_SELF_COMPUTATION">SA: Nonsensical self computation involving a variable (e.g., x & x)</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH">SF: Dead store due to switch statement fall through</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH_TO_THROW">SF: Dead store due to switch statement fall through to throw</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SIC_THREADLOCAL_DEADLY_EMBRACE">SIC: Deadly embrace of non-static inner class and thread local</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SIO_SUPERFLUOUS_INSTANCEOF">SIO: Unnecessary type check done using instanceof operator</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SQL_BAD_PREPARED_STATEMENT_ACCESS">SQL: Method attempts to access a prepared statement parameter with index 0</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SQL_BAD_RESULTSET_ACCESS">SQL: Method attempts to access a result set field with index 0</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#STI_INTERRUPTED_ON_CURRENTTHREAD">STI: Unneeded use of currentThread() call, to call interrupted() </a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#STI_INTERRUPTED_ON_UNKNOWNTHREAD">STI: Static Thread.interrupted() method invoked on thread instance</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_METHOD_MUST_BE_PRIVATE">Se: Method must be private in order for serialization to work</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_READ_RESOLVE_IS_STATIC">Se: The readResolve method must not be declared as a static method.  </a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#TQ_ALWAYS_VALUE_USED_WHERE_NEVER_REQUIRED">TQ: Value annotated as carrying a type qualifier used where a value that must not carry that qualifier is required</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TQ_COMPARING_VALUES_WITH_INCOMPATIBLE_TYPE_QUALIFIERS">TQ: Comparing values with incompatible type qualifiers</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#TQ_MAYBE_SOURCE_VALUE_REACHES_ALWAYS_SINK">TQ: Value that might not carry a type qualifier is always used in a way requires that type qualifier</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TQ_MAYBE_SOURCE_VALUE_REACHES_NEVER_SINK">TQ: Value that might carry a type qualifier is always used in a way prohibits it from having that type qualifier</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#TQ_NEVER_VALUE_USED_WHERE_ALWAYS_REQUIRED">TQ: Value annotated as never carrying a type qualifier used where value carrying that qualifier is required</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED">TQ: Value without a type qualifier used where a value is required to have that qualifier</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UMAC_UNCALLABLE_METHOD_OF_ANONYMOUS_CLASS">UMAC: Uncallable method defined in anonymous class</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UR_UNINIT_READ">UR: Uninitialized read of field in constructor</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR">UR: Uninitialized read of field method called from constructor of superclass</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_INVOKING_TOSTRING_ON_ANONYMOUS_ARRAY">USELESS_STRING: Invocation of toString on an unnamed array</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_INVOKING_TOSTRING_ON_ARRAY">USELESS_STRING: Invocation of toString on an array</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VA_FORMAT_STRING_BAD_CONVERSION_FROM_ARRAY">USELESS_STRING: Array formatted in useless way using format string</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UWF_NULL_FIELD">UwF: Field only ever set to null</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UWF_UNWRITTEN_FIELD">UwF: Unwritten field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_PRIMITIVE_ARRAY_PASSED_TO_OBJECT_VARARG">VA: Primitive array passed to function expecting a variable number of object arguments</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VR_UNRESOLVABLE_REFERENCE">VR: Class makes reference to unresolvable class or method</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE">LG: Potential lost logger changes due to weak reference in OpenJDK</a></td><td>Experimental</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#OBL_UNSATISFIED_OBLIGATION">OBL: Method may fail to clean up stream or resource</a></td><td>Experimental</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE">OBL: Method may fail to clean up stream or resource on checked exception</a></td><td>Experimental</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TESTING">TEST: Testing</a></td><td>Experimental</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_CONVERT_CASE">Dm: Consider using Locale parameterized version of invoked method</a></td><td>Internationalization</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_DEFAULT_ENCODING">Dm: Reliance on default encoding</a></td><td>Internationalization</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED">DP: Classloaders should only be created inside doPrivileged block</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DP_DO_INSIDE_DO_PRIVILEGED">DP: Method invoked that should be only be invoked inside a doPrivileged block</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EI_EXPOSE_REP">EI: May expose internal representation by returning reference to mutable object</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EI_EXPOSE_REP2">EI2: May expose internal representation by incorporating reference to mutable object</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FI_PUBLIC_SHOULD_BE_PROTECTED">FI: Finalizer should be protected, not public</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EI_EXPOSE_STATIC_REP2">MS: May expose internal static state by storing a mutable object into a static field</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MS_CANNOT_BE_FINAL">MS: Field isn't final and can't be protected from malicious code</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MS_EXPOSE_REP">MS: Public static method may expose internal representation by returning array</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MS_FINAL_PKGPROTECT">MS: Field should be both final and package protected</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MS_MUTABLE_ARRAY">MS: Field is a mutable array</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MS_MUTABLE_HASHTABLE">MS: Field is a mutable Hashtable</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MS_OOI_PKGPROTECT">MS: Field should be moved out of an interface and made package protected</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MS_PKGPROTECT">MS: Field should be package protected</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MS_SHOULD_BE_FINAL">MS: Field isn't final but should be</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MS_SHOULD_BE_REFACTORED_TO_BE_FINAL">MS: Field isn't final but should be refactored to be so</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION">AT: Sequence of calls to concurrent abstraction may not be atomic</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DC_DOUBLECHECK">DC: Possible double check of field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DL_SYNCHRONIZATION_ON_BOOLEAN">DL: Synchronization on Boolean</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DL_SYNCHRONIZATION_ON_BOXED_PRIMITIVE">DL: Synchronization on boxed primitive</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DL_SYNCHRONIZATION_ON_SHARED_CONSTANT">DL: Synchronization on interned String </a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DL_SYNCHRONIZATION_ON_UNSHARED_BOXED_PRIMITIVE">DL: Synchronization on boxed primitive values</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_MONITOR_WAIT_ON_CONDITION">Dm: Monitor wait() called on Condition</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_USELESS_THREAD">Dm: A thread was created using the default empty run method</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ESync_EMPTY_SYNC">ESync: Empty synchronized block</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IS2_INCONSISTENT_SYNC">IS: Inconsistent synchronization</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IS_FIELD_NOT_GUARDED">IS: Field not guarded against concurrent access</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#JLM_JSR166_LOCK_MONITORENTER">JLM: Synchronization performed on Lock</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#JLM_JSR166_UTILCONCURRENT_MONITORENTER">JLM: Synchronization performed on util.concurrent instance</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#JML_JSR166_CALLING_WAIT_RATHER_THAN_AWAIT">JLM: Using monitor style wait methods on util.concurrent abstraction</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#LI_LAZY_INIT_STATIC">LI: Incorrect lazy initialization of static field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#LI_LAZY_INIT_UPDATE_STATIC">LI: Incorrect lazy initialization and update of static field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ML_SYNC_ON_FIELD_TO_GUARD_CHANGING_THAT_FIELD">ML: Synchronization on field in futile attempt to guard that field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ML_SYNC_ON_UPDATED_FIELD">ML: Method synchronizes on an updated field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MSF_MUTABLE_SERVLET_FIELD">MSF: Mutable servlet field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MWN_MISMATCHED_NOTIFY">MWN: Mismatched notify()</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MWN_MISMATCHED_WAIT">MWN: Mismatched wait()</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NN_NAKED_NOTIFY">NN: Naked notify</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_SYNC_AND_NULL_CHECK_FIELD">NP: Synchronize and null check on the same field.</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NO_NOTIFY_NOT_NOTIFYALL">No: Using notify() rather than notifyAll()</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RS_READOBJECT_SYNC">RS: Class's readObject() method is synchronized</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED">RV: Return value of putIfAbsent ignored, value passed to putIfAbsent reused</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RU_INVOKE_RUN">Ru: Invokes run on a thread (did you mean to start it instead?)</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SC_START_IN_CTOR">SC: Constructor invokes Thread.start()</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SP_SPIN_ON_FIELD">SP: Method spins on field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#STCAL_INVOKE_ON_STATIC_CALENDAR_INSTANCE">STCAL: Call to static Calendar</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE">STCAL: Call to static DateFormat</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#STCAL_STATIC_CALENDAR_INSTANCE">STCAL: Static Calendar field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#STCAL_STATIC_SIMPLE_DATE_FORMAT_INSTANCE">STCAL: Static DateFormat</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SWL_SLEEP_WITH_LOCK_HELD">SWL: Method calls Thread.sleep() with a lock held</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TLW_TWO_LOCK_WAIT">TLW: Wait with two locks held</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UG_SYNC_SET_UNSYNC_GET">UG: Unsynchronized get method, synchronized set method</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UL_UNRELEASED_LOCK">UL: Method does not release lock on all paths</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UL_UNRELEASED_LOCK_EXCEPTION_PATH">UL: Method does not release lock on all exception paths</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UW_UNCOND_WAIT">UW: Unconditional wait</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VO_VOLATILE_INCREMENT">VO: An increment to a volatile field isn't atomic</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VO_VOLATILE_REFERENCE_TO_ARRAY">VO: A volatile reference to an array doesn't treat the array elements as volatile</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#WL_USING_GETCLASS_RATHER_THAN_CLASS_LITERAL">WL: Synchronization on getClass rather than class literal</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#WS_WRITEOBJECT_SYNC">WS: Class's writeObject() method is synchronized but nothing else is</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#WA_AWAIT_NOT_IN_LOOP">Wa: Condition.await() not in loop </a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#WA_NOT_IN_LOOP">Wa: Wait not in loop </a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NOISE_FIELD_REFERENCE">NOISE: Bogus warning about a field reference</a></td><td>Bogus random noise</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NOISE_METHOD_CALL">NOISE: Bogus warning about a method call</a></td><td>Bogus random noise</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NOISE_NULL_DEREFERENCE">NOISE: Bogus warning about a null pointer dereference</a></td><td>Bogus random noise</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NOISE_OPERATION">NOISE: Bogus warning about an operation</a></td><td>Bogus random noise</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BX_BOXING_IMMEDIATELY_UNBOXED">Bx: Primitive value is boxed and then immediately unboxed</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BX_BOXING_IMMEDIATELY_UNBOXED_TO_PERFORM_COERCION">Bx: Primitive value is boxed then unboxed to perform primitive coercion</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BX_UNBOXING_IMMEDIATELY_REBOXED">Bx: Boxed value is unboxed and then immediately reboxed</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_BOXED_PRIMITIVE_FOR_PARSING">Bx: Boxing/unboxing to parse a primitive</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_BOXED_PRIMITIVE_TOSTRING">Bx: Method allocates a boxed primitive just to call toString</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_FP_NUMBER_CTOR">Bx: Method invokes inefficient floating-point Number constructor; use static valueOf instead</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_NUMBER_CTOR">Bx: Method invokes inefficient Number constructor; use static valueOf instead</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_BLOCKING_METHODS_ON_URL">Dm: The equals and hashCode methods of URL are blocking</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_COLLECTION_OF_URLS">Dm: Maps and sets of URLs can be performance hogs</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_BOOLEAN_CTOR">Dm: Method invokes inefficient Boolean constructor; use Boolean.valueOf(...) instead</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_GC">Dm: Explicit garbage collection; extremely dubious except in benchmarking code</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_NEW_FOR_GETCLASS">Dm: Method allocates an object, only to get the class object</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_NEXTINT_VIA_NEXTDOUBLE">Dm: Use the nextInt method of Random rather than nextDouble to generate a random integer</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_STRING_CTOR">Dm: Method invokes inefficient new String(String) constructor</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_STRING_TOSTRING">Dm: Method invokes toString() method on a String</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_STRING_VOID_CTOR">Dm: Method invokes inefficient new String() constructor</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HSC_HUGE_SHARED_STRING_CONSTANT">HSC: Huge string constants is duplicated across multiple class files</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IMA_INEFFICIENT_MEMBER_ACCESS">IMA: Method accesses a private member variable of owning class</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ITA_INEFFICIENT_TO_ARRAY">ITA: Method uses toArray() with zero-length array argument</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SBSC_USE_STRINGBUFFER_CONCATENATION">SBSC: Method concatenates strings using + in a loop</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SIC_INNER_SHOULD_BE_STATIC">SIC: Should be a static inner class</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SIC_INNER_SHOULD_BE_STATIC_ANON">SIC: Could be refactored into a named static inner class</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SIC_INNER_SHOULD_BE_STATIC_NEEDS_THIS">SIC: Could be refactored into a static inner class</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SS_SHOULD_BE_STATIC">SS: Unread field: should this field be static?</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UM_UNNECESSARY_MATH">UM: Method calls static Math class method on a constant value</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UPM_UNCALLED_PRIVATE_METHOD">UPM: Private method is never called</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#URF_UNREAD_FIELD">UrF: Unread field</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UUF_UNUSED_FIELD">UuF: Unused field</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#WMI_WRONG_MAP_ITERATOR">WMI: Inefficient use of keySet iterator instead of entrySet iterator</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_CONSTANT_DB_PASSWORD">Dm: Hardcoded constant database password</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_EMPTY_DB_PASSWORD">Dm: Empty database password</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#HRS_REQUEST_PARAMETER_TO_COOKIE">HRS: HTTP cookie formed from untrusted input</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HRS_REQUEST_PARAMETER_TO_HTTP_HEADER">HRS: HTTP Response splitting vulnerability</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#PT_ABSOLUTE_PATH_TRAVERSAL">PT: Absolute path traversal in servlet</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#PT_RELATIVE_PATH_TRAVERSAL">PT: Relative path traversal in servlet</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SQL_NONCONSTANT_STRING_PASSED_TO_EXECUTE">SQL: Nonconstant string passed to execute method on an SQL statement</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRING">SQL: A prepared statement is generated from a nonconstant String</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#XSS_REQUEST_PARAMETER_TO_JSP_WRITER">XSS: JSP reflected cross site scripting vulnerability</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#XSS_REQUEST_PARAMETER_TO_SEND_ERROR">XSS: Servlet reflected cross site scripting vulnerability in error page</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#XSS_REQUEST_PARAMETER_TO_SERVLET_WRITER">XSS: Servlet reflected cross site scripting vulnerability</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_BAD_CAST_TO_ABSTRACT_COLLECTION">BC: Questionable cast to abstract collection </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BC_BAD_CAST_TO_CONCRETE_COLLECTION">BC: Questionable cast to concrete collection</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_UNCONFIRMED_CAST">BC: Unchecked/unconfirmed cast</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BC_UNCONFIRMED_CAST_OF_RETURN_VALUE">BC: Unchecked/unconfirmed cast of return value from method</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_VACUOUS_INSTANCEOF">BC: instanceof will always return true</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ICAST_QUESTIONABLE_UNSIGNED_RIGHT_SHIFT">BSHIFT: Unsigned right shift cast to short/byte</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#CD_CIRCULAR_DEPENDENCY">CD: Test for circular dependencies among classes</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#CI_CONFUSED_INHERITANCE">CI: Class is final but declares protected field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DB_DUPLICATE_BRANCHES">DB: Method uses the same code for two branches</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DB_DUPLICATE_SWITCH_CLAUSES">DB: Method uses the same code for two switch clauses</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DLS_DEAD_LOCAL_STORE">DLS: Dead store to local variable</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DLS_DEAD_LOCAL_STORE_IN_RETURN">DLS: Useless assignment in return statement</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DLS_DEAD_LOCAL_STORE_OF_NULL">DLS: Dead store of null to local variable</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DLS_DEAD_LOCAL_STORE_SHADOWS_FIELD">DLS: Dead store to local variable that shadows field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_HARDCODED_ABSOLUTE_FILENAME">DMI: Code contains a hard coded reference to an absolute pathname</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_NONSERIALIZABLE_OBJECT_WRITTEN">DMI: Non serializable object written to ObjectOutput</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_USELESS_SUBSTRING">DMI: Invocation of substring(0), which returns the original value</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_THREAD_PASSED_WHERE_RUNNABLE_EXPECTED">Dm: Thread passed where Runnable expected</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_UNSUPPORTED_METHOD">Dm: Call to unsupported method</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_DOESNT_OVERRIDE_EQUALS">Eq: Class doesn't override equals in superclass</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_UNUSUAL">Eq: Unusual equals method </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FE_FLOATING_POINT_EQUALITY">FE: Test for floating point equality</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_BAD_CONVERSION_TO_BOOLEAN">FS: Non-Boolean argument formatted using %b format specifier</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IA_AMBIGUOUS_INVOCATION_OF_INHERITED_OR_OUTER_METHOD">IA: Potentially ambiguous invocation of either an inherited or outer method</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IC_INIT_CIRCULARITY">IC: Initialization circularity</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ICAST_IDIV_CAST_TO_DOUBLE">ICAST: Integral division result cast to double or float</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ICAST_INTEGER_MULTIPLY_CAST_TO_LONG">ICAST: Result of integer multiplication cast to long</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IM_AVERAGE_COMPUTATION_COULD_OVERFLOW">IM: Computation of average could overflow</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IM_BAD_CHECK_FOR_ODD">IM: Check for oddness that won't work for negative numbers </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#INT_BAD_REM_BY_1">INT: Integer remainder modulo 1</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#INT_VACUOUS_BIT_OPERATION">INT: Vacuous bit mask operation on integer value</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#INT_VACUOUS_COMPARISON">INT: Vacuous comparison of integer value</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MTIA_SUSPECT_SERVLET_INSTANCE_FIELD">MTIA: Class extends Servlet class and uses instance variables</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MTIA_SUSPECT_STRUTS_INSTANCE_FIELD">MTIA: Class extends Struts Action class and uses instance variables</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_DEREFERENCE_OF_READLINE_VALUE">NP: Dereference of the result of readLine() without nullcheck</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_IMMEDIATE_DEREFERENCE_OF_READLINE">NP: Immediate dereference of the result of readLine()</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_LOAD_OF_KNOWN_NULL_VALUE">NP: Load of known null value</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION">NP: Method tightens nullness annotation on parameter</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_METHOD_RETURN_RELAXING_ANNOTATION">NP: Method relaxes nullness annotation on return value</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE">NP: Possible null pointer dereference due to return value of called method</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NULL_ON_SOME_PATH_MIGHT_BE_INFEASIBLE">NP: Possible null pointer dereference on branch that might be infeasible</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE">NP: Parameter must be nonnull but is marked as nullable</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD">NP: Read of unwritten public or protected field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NS_DANGEROUS_NON_SHORT_CIRCUIT">NS: Potentially dangerous use of non-short-circuit logic</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NS_NON_SHORT_CIRCUIT">NS: Questionable use of non-short-circuit logic</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#PS_PUBLIC_SEMAPHORES">PS: Class exposes synchronization and semaphores in its public interface</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#PZLA_PREFER_ZERO_LENGTH_ARRAYS">PZLA: Consider returning a zero length array rather than null</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#QF_QUESTIONABLE_FOR_LOOP">QF: Complicated, subtle or wrong increment in for-loop </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RCN_REDUNDANT_COMPARISON_OF_NULL_AND_NONNULL_VALUE">RCN: Redundant comparison of non-null value to null</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RCN_REDUNDANT_COMPARISON_TWO_NULL_VALUES">RCN: Redundant comparison of two null values</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE">RCN: Redundant nullcheck of value known to be non-null</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE">RCN: Redundant nullcheck of value known to be null</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#REC_CATCH_EXCEPTION">REC: Exception is caught when Exception is not thrown</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RI_REDUNDANT_INTERFACES">RI: Class implements same interface as superclass</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_CHECK_FOR_POSITIVE_INDEXOF">RV: Method checks to see if result of String.indexOf is positive</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_DONT_JUST_NULL_CHECK_READLINE">RV: Method discards result of readLine after checking if it is nonnull</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_REM_OF_HASHCODE">RV: Remainder of hashCode could be negative</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_REM_OF_RANDOM_INT">RV: Remainder of 32-bit signed random integer</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_RETURN_VALUE_IGNORED_INFERRED">RV: Method ignores return value, is this OK?</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SA_FIELD_DOUBLE_ASSIGNMENT">SA: Double assignment of field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SA_LOCAL_DOUBLE_ASSIGNMENT">SA: Double assignment of local variable </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SA_LOCAL_SELF_ASSIGNMENT">SA: Self assignment of local variable</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SF_SWITCH_FALLTHROUGH">SF: Switch statement found where one case falls through to the next case</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SF_SWITCH_NO_DEFAULT">SF: Switch statement found where default case is missing</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD">ST: Write to static field from instance method</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_PRIVATE_READ_RESOLVE_NOT_INHERITED">Se: Private readResolve method not inherited by subclasses</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_TRANSIENT_FIELD_OF_NONSERIALIZABLE_CLASS">Se: Transient field of class that isn't Serializable. </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_ALWAYS_SINK">TQ: Value required to have type qualifier, but marked as unknown</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_NEVER_SINK">TQ: Value required to not have type qualifier, but marked as unknown</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UCF_USELESS_CONTROL_FLOW">UCF: Useless control flow</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UCF_USELESS_CONTROL_FLOW_NEXT_LINE">UCF: Useless control flow to next line</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#USM_USELESS_ABSTRACT_METHOD">USM: Abstract Method is already defined in implemented interface</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#USM_USELESS_SUBCLASS_METHOD">USM: Method superfluously delegates to parent class method</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD">UrF: Unread public/protected field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD">UuF: Unused public or protected field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR">UwF: Field not initialized in constructor but dereferenced without null check</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD">UwF: Unwritten public or protected field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#XFB_XML_FACTORY_BYPASS">XFB: Method directly allocates a specific implementation of xml interfaces</a></td><td>Dodgy code</td></tr>
-</table>
-<h2>Descriptions</h2>
-<h3><a name="AM_CREATES_EMPTY_JAR_FILE_ENTRY">AM: Creates an empty jar file entry (AM_CREATES_EMPTY_JAR_FILE_ENTRY)</a></h3>
-
-
-<p>The code calls <code>putNextEntry()</code>, immediately
-followed by a call to <code>closeEntry()</code>. This results
-in an empty JarFile entry. The contents of the entry
-should be written to the JarFile between the calls to
-<code>putNextEntry()</code> and
-<code>closeEntry()</code>.</p>
-
-    
-<h3><a name="AM_CREATES_EMPTY_ZIP_FILE_ENTRY">AM: Creates an empty zip file entry (AM_CREATES_EMPTY_ZIP_FILE_ENTRY)</a></h3>
-
-
-<p>The code calls <code>putNextEntry()</code>, immediately
-followed by a call to <code>closeEntry()</code>. This results
-in an empty ZipFile entry. The contents of the entry
-should be written to the ZipFile between the calls to
-<code>putNextEntry()</code> and
-<code>closeEntry()</code>.</p>
-
-    
-<h3><a name="BC_EQUALS_METHOD_SHOULD_WORK_FOR_ALL_OBJECTS">BC: Equals method should not assume anything about the type of its argument (BC_EQUALS_METHOD_SHOULD_WORK_FOR_ALL_OBJECTS)</a></h3>
-
-
-<p>
-The <code>equals(Object o)</code> method shouldn't make any assumptions
-about the type of <code>o</code>. It should simply return
-false if <code>o</code> is not the same type as <code>this</code>.
-</p>
-
-    
-<h3><a name="BIT_SIGNED_CHECK">BIT: Check for sign of bitwise operation (BIT_SIGNED_CHECK)</a></h3>
-
-
-<p> This method compares an expression such as</p>
-<pre>((event.detail &amp; SWT.SELECTED) &gt; 0)</pre>.
-<p>Using bit arithmetic and then comparing with the greater than operator can
-lead to unexpected results (of course depending on the value of
-SWT.SELECTED). If SWT.SELECTED is a negative number, this is a candidate
-for a bug. Even when SWT.SELECTED is not negative, it seems good practice
-to use '!= 0' instead of '&gt; 0'.
-</p>
-<p>
-<em>Boris Bokowski</em>
-</p>
-
-    
-<h3><a name="CN_IDIOM">CN: Class implements Cloneable but does not define or use clone method (CN_IDIOM)</a></h3>
-
-
-<p>
-   Class implements Cloneable but does not define or
-   use the clone method.</p>
-
-    
-<h3><a name="CN_IDIOM_NO_SUPER_CALL">CN: clone method does not call super.clone() (CN_IDIOM_NO_SUPER_CALL)</a></h3>
-
-
-<p> This non-final class defines a clone() method that does not call super.clone().
-If this class ("<i>A</i>") is extended by a subclass ("<i>B</i>"),
-and the subclass <i>B</i> calls super.clone(), then it is likely that
-<i>B</i>'s clone() method will return an object of type <i>A</i>,
-which violates the standard contract for clone().</p>
-
-<p> If all clone() methods call super.clone(), then they are guaranteed
-to use Object.clone(), which always returns an object of the correct type.</p>
-
-    
-<h3><a name="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE">CN: Class defines clone() but doesn't implement Cloneable (CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE)</a></h3>
-
-
-<p> This class defines a clone() method but the class doesn't implement Cloneable.
-There are some situations in which this is OK (e.g., you want to control how subclasses
-can clone themselves), but just make sure that this is what you intended.
-</p>
-
-    
-<h3><a name="CO_ABSTRACT_SELF">Co: Abstract class defines covariant compareTo() method (CO_ABSTRACT_SELF)</a></h3>
-
-
-  <p> This class defines a covariant version of <code>compareTo()</code>.&nbsp;
-  To correctly override the <code>compareTo()</code> method in the
-  <code>Comparable</code> interface, the parameter of <code>compareTo()</code>
-  must have type <code>java.lang.Object</code>.</p>
-
-    
-<h3><a name="CO_SELF_NO_OBJECT">Co: Covariant compareTo() method defined (CO_SELF_NO_OBJECT)</a></h3>
-
-
-  <p> This class defines a covariant version of <code>compareTo()</code>.&nbsp;
-  To correctly override the <code>compareTo()</code> method in the
-  <code>Comparable</code> interface, the parameter of <code>compareTo()</code>
-  must have type <code>java.lang.Object</code>.</p>
-
-    
-<h3><a name="DE_MIGHT_DROP">DE: Method might drop exception (DE_MIGHT_DROP)</a></h3>
-
-
-  <p> This method might drop an exception.&nbsp; In general, exceptions
-  should be handled or reported in some way, or they should be thrown
-  out of the method.</p>
-
-    
-<h3><a name="DE_MIGHT_IGNORE">DE: Method might ignore exception (DE_MIGHT_IGNORE)</a></h3>
-
-
-  <p> This method might ignore an exception.&nbsp; In general, exceptions
-  should be handled or reported in some way, or they should be thrown
-  out of the method.</p>
-
-    
-<h3><a name="DMI_ENTRY_SETS_MAY_REUSE_ENTRY_OBJECTS">DMI: Adding elements of an entry set may fail due to reuse of Entry objects (DMI_ENTRY_SETS_MAY_REUSE_ENTRY_OBJECTS)</a></h3>
-
-     
-     <p> The entrySet() method is allowed to return a view of the
-     underlying Map in which a single Entry object is reused and returned
-     during the iteration.  As of Java 1.6, both IdentityHashMap
-     and EnumMap did so. When iterating through such a Map,
-     the Entry value is only valid until you advance to the next iteration.
-     If, for example, you try to pass such an entrySet to an addAll method,
-     things will go badly wrong.
-    </p>
-     
-    
-<h3><a name="DMI_RANDOM_USED_ONLY_ONCE">DMI: Random object created and used only once (DMI_RANDOM_USED_ONLY_ONCE)</a></h3>
-
-
-<p> This code creates a java.util.Random object, uses it to generate one random number, and then discards
-the Random object. This produces mediocre quality random numbers and is inefficient.
-If possible, rewrite the code so that the Random object is created once and saved, and each time a new random number
-is required invoke a method on the existing Random object to obtain it.
-</p>
-
-<p>If it is important that the generated Random numbers not be guessable, you <em>must</em> not create a new Random for each random
-number; the values are too easily guessable. You should strongly consider using a java.security.SecureRandom instead
-(and avoid allocating a new SecureRandom for each random number needed).
-</p>
-
-    
-<h3><a name="DMI_USING_REMOVEALL_TO_CLEAR_COLLECTION">DMI: Don't use removeAll to clear a collection (DMI_USING_REMOVEALL_TO_CLEAR_COLLECTION)</a></h3>
-
-     
-     <p> If you want to remove all elements from a collection <code>c</code>, use <code>c.clear</code>,
-not <code>c.removeAll(c)</code>. Calling  <code>c.removeAll(c)</code> to clear a collection
-is less clear, susceptible to errors from typos, less efficient and
-for some collections, might throw a <code>ConcurrentModificationException</code>.
-    </p>
-     
-    
-<h3><a name="DM_EXIT">Dm: Method invokes System.exit(...) (DM_EXIT)</a></h3>
-
-
-  <p> Invoking System.exit shuts down the entire Java virtual machine. This
-   should only been done when it is appropriate. Such calls make it
-   hard or impossible for your code to be invoked by other code.
-   Consider throwing a RuntimeException instead.</p>
-
-    
-<h3><a name="DM_RUN_FINALIZERS_ON_EXIT">Dm: Method invokes dangerous method runFinalizersOnExit (DM_RUN_FINALIZERS_ON_EXIT)</a></h3>
-
-
-  <p> <em>Never call System.runFinalizersOnExit
-or Runtime.runFinalizersOnExit for any reason: they are among the most
-dangerous methods in the Java libraries.</em> -- Joshua Bloch</p>
-
-    
-<h3><a name="ES_COMPARING_PARAMETER_STRING_WITH_EQ">ES: Comparison of String parameter using == or != (ES_COMPARING_PARAMETER_STRING_WITH_EQ)</a></h3>
-
-
-  <p>This code compares a <code>java.lang.String</code> parameter for reference
-equality using the == or != operators. Requiring callers to
-pass only String constants or interned strings to a method is unnecessarily
-fragile, and rarely leads to measurable performance gains. Consider
-using the <code>equals(Object)</code> method instead.</p>
-
-    
-<h3><a name="ES_COMPARING_STRINGS_WITH_EQ">ES: Comparison of String objects using == or != (ES_COMPARING_STRINGS_WITH_EQ)</a></h3>
-
-
-  <p>This code compares <code>java.lang.String</code> objects for reference
-equality using the == or != operators.
-Unless both strings are either constants in a source file, or have been
-interned using the <code>String.intern()</code> method, the same string
-value may be represented by two different String objects. Consider
-using the <code>equals(Object)</code> method instead.</p>
-
-    
-<h3><a name="EQ_ABSTRACT_SELF">Eq: Abstract class defines covariant equals() method (EQ_ABSTRACT_SELF)</a></h3>
-
-
-  <p> This class defines a covariant version of <code>equals()</code>.&nbsp;
-  To correctly override the <code>equals()</code> method in
-  <code>java.lang.Object</code>, the parameter of <code>equals()</code>
-  must have type <code>java.lang.Object</code>.</p>
-
-    
-<h3><a name="EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS">Eq: Equals checks for incompatible operand (EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS)</a></h3>
-
-
-  <p> This equals method is checking to see if the argument is some incompatible type
-(i.e., a class that is neither a supertype nor subtype of the class that defines
-the equals method). For example, the Foo class might have an equals method
-that looks like:
-</p>
-<pre>
-public boolean equals(Object o) {
-  if (o instanceof Foo)
-    return name.equals(((Foo)o).name);
-  else if (o instanceof String)
-    return name.equals(o);
-  else return false;
-</pre>
-
-<p>This is considered bad practice, as it makes it very hard to implement an equals method that
-is symmetric and transitive. Without those properties, very unexpected behavoirs are possible.
-</p>
-
-    
-<h3><a name="EQ_COMPARETO_USE_OBJECT_EQUALS">Eq: Class defines compareTo(...) and uses Object.equals() (EQ_COMPARETO_USE_OBJECT_EQUALS)</a></h3>
-
-
-  <p> This class defines a <code>compareTo(...)</code> method but inherits its
-  <code>equals()</code> method from <code>java.lang.Object</code>.
-    Generally, the value of compareTo should return zero if and only if
-    equals returns true. If this is violated, weird and unpredictable
-    failures will occur in classes such as PriorityQueue.
-    In Java 5 the PriorityQueue.remove method uses the compareTo method,
-    while in Java 6 it uses the equals method.
-
-<p>From the JavaDoc for the compareTo method in the Comparable interface:
-<blockquote>
-It is strongly recommended, but not strictly required that <code>(x.compareTo(y)==0) == (x.equals(y))</code>.
-Generally speaking, any class that implements the Comparable interface and violates this condition
-should clearly indicate this fact. The recommended language
-is "Note: this class has a natural ordering that is inconsistent with equals."
-</blockquote>
-
-    
-<h3><a name="EQ_GETCLASS_AND_CLASS_CONSTANT">Eq: equals method fails for subtypes (EQ_GETCLASS_AND_CLASS_CONSTANT)</a></h3>
-
-
-  <p> This class has an equals method that will be broken if it is inherited by subclasses.
-It compares a class literal with the class of the argument (e.g., in class <code>Foo</code>
-it might check if <code>Foo.class == o.getClass()</code>).
-It is better to check if <code>this.getClass() == o.getClass()</code>.
-</p>
-
-    
-<h3><a name="EQ_SELF_NO_OBJECT">Eq: Covariant equals() method defined (EQ_SELF_NO_OBJECT)</a></h3>
-
-
-  <p> This class defines a covariant version of <code>equals()</code>.&nbsp;
-  To correctly override the <code>equals()</code> method in
-  <code>java.lang.Object</code>, the parameter of <code>equals()</code>
-  must have type <code>java.lang.Object</code>.</p>
-
-    
-<h3><a name="FI_EMPTY">FI: Empty finalizer should be deleted (FI_EMPTY)</a></h3>
-
-
-  <p> Empty <code>finalize()</code> methods are useless, so they should
-  be deleted.</p>
-
-    
-<h3><a name="FI_EXPLICIT_INVOCATION">FI: Explicit invocation of finalizer (FI_EXPLICIT_INVOCATION)</a></h3>
-
-
-  <p> This method contains an explicit invocation of the <code>finalize()</code>
-  method on an object.&nbsp; Because finalizer methods are supposed to be
-  executed once, and only by the VM, this is a bad idea.</p>
-<p>If a connected set of objects beings finalizable, then the VM will invoke the
-finalize method on all the finalizable object, possibly at the same time in different threads.
-Thus, it is a particularly bad idea, in the finalize method for a class X, invoke finalize
-on objects referenced by X, because they may already be getting finalized in a separate thread.
-
-    
-<h3><a name="FI_FINALIZER_NULLS_FIELDS">FI: Finalizer nulls fields (FI_FINALIZER_NULLS_FIELDS)</a></h3>
-
-
-  <p> This finalizer nulls out fields.  This is usually an error, as it does not aid garbage collection,
-  and the object is going to be garbage collected anyway.
-
-    
-<h3><a name="FI_FINALIZER_ONLY_NULLS_FIELDS">FI: Finalizer only nulls fields (FI_FINALIZER_ONLY_NULLS_FIELDS)</a></h3>
-
-
-  <p> This finalizer does nothing except null out fields. This is completely pointless, and requires that
-the object be garbage collected, finalized, and then garbage collected again. You should just remove the finalize
-method.
-
-    
-<h3><a name="FI_MISSING_SUPER_CALL">FI: Finalizer does not call superclass finalizer (FI_MISSING_SUPER_CALL)</a></h3>
-
-
-  <p> This <code>finalize()</code> method does not make a call to its
-  superclass's <code>finalize()</code> method.&nbsp; So, any finalizer
-  actions defined for the superclass will not be performed.&nbsp;
-  Add a call to <code>super.finalize()</code>.</p>
-
-    
-<h3><a name="FI_NULLIFY_SUPER">FI: Finalizer nullifies superclass finalizer (FI_NULLIFY_SUPER)</a></h3>
-
-
-  <p> This empty <code>finalize()</code> method explicitly negates the
-  effect of any finalizer defined by its superclass.&nbsp; Any finalizer
-  actions defined for the superclass will not be performed.&nbsp;
-  Unless this is intended, delete this method.</p>
-
-    
-<h3><a name="FI_USELESS">FI: Finalizer does nothing but call superclass finalizer (FI_USELESS)</a></h3>
-
-
-  <p> The only thing this <code>finalize()</code> method does is call
-  the superclass's <code>finalize()</code> method, making it
-  redundant.&nbsp; Delete it.</p>
-
-    
-<h3><a name="VA_FORMAT_STRING_USES_NEWLINE">FS: Format string should use %n rather than \n (VA_FORMAT_STRING_USES_NEWLINE)</a></h3>
-
-
-<p>
-This format string include a newline character (\n). In format strings, it is generally
- preferable better to use %n, which will produce the platform-specific line separator.
-</p>
-
-     
-<h3><a name="GC_UNCHECKED_TYPE_IN_GENERIC_CALL">GC: Unchecked type in generic call (GC_UNCHECKED_TYPE_IN_GENERIC_CALL)</a></h3>
-
-     
-     <p> This call to a generic collection method passes an argument
-    while compile type Object where a specific type from
-    the generic type parameters is expected.
-    Thus, neither the standard Java type system nor static analysis
-    can provide useful information on whether the
-    object being passed as a parameter is of an appropriate type.
-    </p>
-     
-    
-<h3><a name="HE_EQUALS_NO_HASHCODE">HE: Class defines equals() but not hashCode() (HE_EQUALS_NO_HASHCODE)</a></h3>
-
-
-  <p> This class overrides <code>equals(Object)</code>, but does not
-  override <code>hashCode()</code>.&nbsp; Therefore, the class may violate the
-  invariant that equal objects must have equal hashcodes.</p>
-
-    
-<h3><a name="HE_EQUALS_USE_HASHCODE">HE: Class defines equals() and uses Object.hashCode() (HE_EQUALS_USE_HASHCODE)</a></h3>
-
-
-  <p> This class overrides <code>equals(Object)</code>, but does not
-  override <code>hashCode()</code>, and inherits the implementation of
-  <code>hashCode()</code> from <code>java.lang.Object</code> (which returns
-  the identity hash code, an arbitrary value assigned to the object
-  by the VM).&nbsp; Therefore, the class is very likely to violate the
-  invariant that equal objects must have equal hashcodes.</p>
-
-<p>If you don't think instances of this class will ever be inserted into a HashMap/HashTable,
-the recommended <code>hashCode</code> implementation to use is:</p>
-<pre>public int hashCode() {
-  assert false : "hashCode not designed";
-  return 42; // any arbitrary constant will do
-  }</pre>
-
-    
-<h3><a name="HE_HASHCODE_NO_EQUALS">HE: Class defines hashCode() but not equals() (HE_HASHCODE_NO_EQUALS)</a></h3>
-
-
-  <p> This class defines a <code>hashCode()</code> method but not an
-  <code>equals()</code> method.&nbsp; Therefore, the class may
-  violate the invariant that equal objects must have equal hashcodes.</p>
-
-    
-<h3><a name="HE_HASHCODE_USE_OBJECT_EQUALS">HE: Class defines hashCode() and uses Object.equals() (HE_HASHCODE_USE_OBJECT_EQUALS)</a></h3>
-
-
-  <p> This class defines a <code>hashCode()</code> method but inherits its
-  <code>equals()</code> method from <code>java.lang.Object</code>
-  (which defines equality by comparing object references).&nbsp; Although
-  this will probably satisfy the contract that equal objects must have
-  equal hashcodes, it is probably not what was intended by overriding
-  the <code>hashCode()</code> method.&nbsp; (Overriding <code>hashCode()</code>
-  implies that the object's identity is based on criteria more complicated
-  than simple reference equality.)</p>
-<p>If you don't think instances of this class will ever be inserted into a HashMap/HashTable,
-the recommended <code>hashCode</code> implementation to use is:</p>
-<pre>public int hashCode() {
-  assert false : "hashCode not designed";
-  return 42; // any arbitrary constant will do
-  }</pre>
-
-    
-<h3><a name="HE_INHERITS_EQUALS_USE_HASHCODE">HE: Class inherits equals() and uses Object.hashCode() (HE_INHERITS_EQUALS_USE_HASHCODE)</a></h3>
-
-
-  <p> This class inherits <code>equals(Object)</code> from an abstract
-  superclass, and <code>hashCode()</code> from
-<code>java.lang.Object</code> (which returns
-  the identity hash code, an arbitrary value assigned to the object
-  by the VM).&nbsp; Therefore, the class is very likely to violate the
-  invariant that equal objects must have equal hashcodes.</p>
-
-  <p>If you don't want to define a hashCode method, and/or don't
-   believe the object will ever be put into a HashMap/Hashtable,
-   define the <code>hashCode()</code> method
-   to throw <code>UnsupportedOperationException</code>.</p>
-
-    
-<h3><a name="IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION">IC: Superclass uses subclass during initialization (IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION)</a></h3>
-
-
-  <p> During the initialization of a class, the class makes an active use of a subclass.
-That subclass will not yet be initialized at the time of this use.
-For example, in the following code, <code>foo</code> will be null.</p>
-
-<pre>
-public class CircularClassInitialization {
-    static class InnerClassSingleton extends CircularClassInitialization {
-        static InnerClassSingleton singleton = new InnerClassSingleton();
-    }
-
-    static CircularClassInitialization foo = InnerClassSingleton.singleton;
-}
-</pre>
-
-
-    
-<h3><a name="IMSE_DONT_CATCH_IMSE">IMSE: Dubious catching of IllegalMonitorStateException (IMSE_DONT_CATCH_IMSE)</a></h3>
-
-
-<p>IllegalMonitorStateException is generally only
-   thrown in case of a design flaw in your code (calling wait or
-   notify on an object you do not hold a lock on).</p>
-
-    
-<h3><a name="ISC_INSTANTIATE_STATIC_CLASS">ISC: Needless instantiation of class that only supplies static methods (ISC_INSTANTIATE_STATIC_CLASS)</a></h3>
-
-
-<p> This class allocates an object that is based on a class that only supplies static methods. This object
-does not need to be created, just access the static methods directly using the class name as a qualifier.</p>
-
-        
-<h3><a name="IT_NO_SUCH_ELEMENT">It: Iterator next() method can't throw NoSuchElementException (IT_NO_SUCH_ELEMENT)</a></h3>
-
-
-  <p> This class implements the <code>java.util.Iterator</code> interface.&nbsp;
-  However, its <code>next()</code> method is not capable of throwing
-  <code>java.util.NoSuchElementException</code>.&nbsp; The <code>next()</code>
-  method should be changed so it throws <code>NoSuchElementException</code>
-  if is called when there are no more elements to return.</p>
-
-    
-<h3><a name="J2EE_STORE_OF_NON_SERIALIZABLE_OBJECT_INTO_SESSION">J2EE: Store of non serializable object into HttpSession (J2EE_STORE_OF_NON_SERIALIZABLE_OBJECT_INTO_SESSION)</a></h3>
-
-
-<p>
-This code seems to be storing a non-serializable object into an HttpSession.
-If this session is passivated or migrated, an error will result.
-</p>
-
-    
-<h3><a name="JCIP_FIELD_ISNT_FINAL_IN_IMMUTABLE_CLASS">JCIP: Fields of immutable classes should be final (JCIP_FIELD_ISNT_FINAL_IN_IMMUTABLE_CLASS)</a></h3>
-
-
-  <p> The class is annotated with net.jcip.annotations.Immutable or javax.annotation.concurrent.Immutable,
-  and the rules for those annotations require that all fields are final.
-   .</p>
-
-    
-<h3><a name="NP_BOOLEAN_RETURN_NULL">NP: Method with Boolean return type returns explicit null (NP_BOOLEAN_RETURN_NULL)</a></h3>
-
-       
-       <p>
-    A method that returns either Boolean.TRUE, Boolean.FALSE or null is an accident waiting to happen.
-    This method can be invoked as though it returned a value of type boolean, and
-    the compiler will insert automatic unboxing of the Boolean value. If a null value is returned,
-    this will result in a NullPointerException.
-       </p>
-       
-       
-<h3><a name="NP_CLONE_COULD_RETURN_NULL">NP: Clone method may return null (NP_CLONE_COULD_RETURN_NULL)</a></h3>
-
-      
-      <p>
-    This clone method seems to return null in some circumstances, but clone is never
-    allowed to return a null value.  If you are convinced this path is unreachable, throw an AssertionError
-    instead.
-      </p>
-      
-   
-<h3><a name="NP_EQUALS_SHOULD_HANDLE_NULL_ARGUMENT">NP: equals() method does not check for null argument (NP_EQUALS_SHOULD_HANDLE_NULL_ARGUMENT)</a></h3>
-
-      
-      <p>
-      This implementation of equals(Object) violates the contract defined
-      by java.lang.Object.equals() because it does not check for null
-      being passed as the argument.  All equals() methods should return
-      false if passed a null value.
-      </p>
-      
-   
-<h3><a name="NP_TOSTRING_COULD_RETURN_NULL">NP: toString method may return null (NP_TOSTRING_COULD_RETURN_NULL)</a></h3>
-
-      
-      <p>
-    This toString method seems to return null in some circumstances. A liberal reading of the
-    spec could be interpreted as allowing this, but it is probably a bad idea and could cause
-    other code to break. Return the empty string or some other appropriate string rather than null.
-      </p>
-      
-   
-<h3><a name="NM_CLASS_NAMING_CONVENTION">Nm: Class names should start with an upper case letter (NM_CLASS_NAMING_CONVENTION)</a></h3>
-
-
-  <p> Class names should be nouns, in mixed case with the first letter of each internal word capitalized. Try to keep your class names simple and descriptive. Use whole words-avoid acronyms and abbreviations (unless the abbreviation is much more widely used than the long form, such as URL or HTML).
-</p>
-
-    
-<h3><a name="NM_CLASS_NOT_EXCEPTION">Nm: Class is not derived from an Exception, even though it is named as such (NM_CLASS_NOT_EXCEPTION)</a></h3>
-
-
-<p> This class is not derived from another exception, but ends with 'Exception'. This will
-be confusing to users of this class.</p>
-
-    
-<h3><a name="NM_CONFUSING">Nm: Confusing method names (NM_CONFUSING)</a></h3>
-
-
-  <p> The referenced methods have names that differ only by capitalization.</p>
-
-    
-<h3><a name="NM_FIELD_NAMING_CONVENTION">Nm: Field names should start with a lower case letter (NM_FIELD_NAMING_CONVENTION)</a></h3>
-
-
-  <p>
-Names of fields that are not final should be in mixed case with a lowercase first letter and the first letters of subsequent words capitalized.
-</p>
-
-    
-<h3><a name="NM_FUTURE_KEYWORD_USED_AS_IDENTIFIER">Nm: Use of identifier that is a keyword in later versions of Java (NM_FUTURE_KEYWORD_USED_AS_IDENTIFIER)</a></h3>
-
-
-<p>The identifier is a word that is reserved as a keyword in later versions of Java, and your code will need to be changed
-in order to compile it in later versions of Java.</p>
-
-
-    
-<h3><a name="NM_FUTURE_KEYWORD_USED_AS_MEMBER_IDENTIFIER">Nm: Use of identifier that is a keyword in later versions of Java (NM_FUTURE_KEYWORD_USED_AS_MEMBER_IDENTIFIER)</a></h3>
-
-
-<p>This identifier is used as a keyword in later versions of Java. This code, and
-any code that references this API,
-will need to be changed in order to compile it in later versions of Java.</p>
-
-
-    
-<h3><a name="NM_METHOD_NAMING_CONVENTION">Nm: Method names should start with a lower case letter (NM_METHOD_NAMING_CONVENTION)</a></h3>
-
-
-  <p>
-Methods should be verbs, in mixed case with the first letter lowercase, with the first letter of each internal word capitalized.
-</p>
-
-    
-<h3><a name="NM_SAME_SIMPLE_NAME_AS_INTERFACE">Nm: Class names shouldn't shadow simple name of implemented interface (NM_SAME_SIMPLE_NAME_AS_INTERFACE)</a></h3>
-
-
-  <p> This class/interface has a simple name that is identical to that of an implemented/extended interface, except
-that the interface is in a different package (e.g., <code>alpha.Foo</code> extends <code>beta.Foo</code>).
-This can be exceptionally confusing, create lots of situations in which you have to look at import statements
-to resolve references and creates many
-opportunities to accidently define methods that do not override methods in their superclasses.
-</p>
-
-    
-<h3><a name="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS">Nm: Class names shouldn't shadow simple name of superclass (NM_SAME_SIMPLE_NAME_AS_SUPERCLASS)</a></h3>
-
-
-  <p> This class has a simple name that is identical to that of its superclass, except
-that its superclass is in a different package (e.g., <code>alpha.Foo</code> extends <code>beta.Foo</code>).
-This can be exceptionally confusing, create lots of situations in which you have to look at import statements
-to resolve references and creates many
-opportunities to accidently define methods that do not override methods in their superclasses.
-</p>
-
-    
-<h3><a name="NM_VERY_CONFUSING_INTENTIONAL">Nm: Very confusing method names (but perhaps intentional) (NM_VERY_CONFUSING_INTENTIONAL)</a></h3>
-
-
-  <p> The referenced methods have names that differ only by capitalization.
-This is very confusing because if the capitalization were
-identical then one of the methods would override the other. From the existence of other methods, it
-seems that the existence of both of these methods is intentional, but is sure is confusing.
-You should try hard to eliminate one of them, unless you are forced to have both due to frozen APIs.
-</p>
-
-    
-<h3><a name="NM_WRONG_PACKAGE_INTENTIONAL">Nm: Method doesn't override method in superclass due to wrong package for parameter (NM_WRONG_PACKAGE_INTENTIONAL)</a></h3>
-
-
-  <p> The method in the subclass doesn't override a similar method in a superclass because the type of a parameter doesn't exactly match
-the type of the corresponding parameter in the superclass. For example, if you have:</p>
-
-<blockquote>
-<pre>
-import alpha.Foo;
-public class A {
-  public int f(Foo x) { return 17; }
-}
-----
-import beta.Foo;
-public class B extends A {
-  public int f(Foo x) { return 42; }
-  public int f(alpha.Foo x) { return 27; }
-}
-</pre>
-</blockquote>
-
-<p>The <code>f(Foo)</code> method defined in class <code>B</code> doesn't
-override the
-<code>f(Foo)</code> method defined in class <code>A</code>, because the argument
-types are <code>Foo</code>'s from different packages.
-</p>
-
-<p>In this case, the subclass does define a method with a signature identical to the method in the superclass,
-so this is presumably understood. However, such methods are exceptionally confusing. You should strongly consider
-removing or deprecating the method with the similar but not identical signature.
-</p>
-
-    
-<h3><a name="ODR_OPEN_DATABASE_RESOURCE">ODR: Method may fail to close database resource (ODR_OPEN_DATABASE_RESOURCE)</a></h3>
-
-
-<p> The method creates a database resource (such as a database connection
-or row set), does not assign it to any
-fields, pass it to other methods, or return it, and does not appear to close
-the object on all paths out of the method.&nbsp; Failure to
-close database resources on all paths out of a method may
-result in poor performance, and could cause the application to
-have problems communicating with the database.
-</p>
-
-    
-<h3><a name="ODR_OPEN_DATABASE_RESOURCE_EXCEPTION_PATH">ODR: Method may fail to close database resource on exception (ODR_OPEN_DATABASE_RESOURCE_EXCEPTION_PATH)</a></h3>
-
-
-<p> The method creates a database resource (such as a database connection
-or row set), does not assign it to any
-fields, pass it to other methods, or return it, and does not appear to close
-the object on all exception paths out of the method.&nbsp; Failure to
-close database resources on all paths out of a method may
-result in poor performance, and could cause the application to
-have problems communicating with the database.</p>
-
-    
-<h3><a name="OS_OPEN_STREAM">OS: Method may fail to close stream (OS_OPEN_STREAM)</a></h3>
-
-
-<p> The method creates an IO stream object, does not assign it to any
-fields, pass it to other methods that might close it,
-or return it, and does not appear to close
-the stream on all paths out of the method.&nbsp; This may result in
-a file descriptor leak.&nbsp; It is generally a good
-idea to use a <code>finally</code> block to ensure that streams are
-closed.</p>
-
-    
-<h3><a name="OS_OPEN_STREAM_EXCEPTION_PATH">OS: Method may fail to close stream on exception (OS_OPEN_STREAM_EXCEPTION_PATH)</a></h3>
-
-
-<p> The method creates an IO stream object, does not assign it to any
-fields, pass it to other methods, or return it, and does not appear to close
-it on all possible exception paths out of the method.&nbsp;
-This may result in a file descriptor leak.&nbsp; It is generally a good
-idea to use a <code>finally</code> block to ensure that streams are
-closed.</p>
-
-    
-<h3><a name="PZ_DONT_REUSE_ENTRY_OBJECTS_IN_ITERATORS">PZ: Don't reuse entry objects in iterators (PZ_DONT_REUSE_ENTRY_OBJECTS_IN_ITERATORS)</a></h3>
-
-     
-     <p> The entrySet() method is allowed to return a view of the
-     underlying Map in which an Iterator and Map.Entry. This clever
-     idea was used in several Map implementations, but introduces the possibility
-     of nasty coding mistakes. If a map <code>m</code> returns
-     such an iterator for an entrySet, then
-     <code>c.addAll(m.entrySet())</code> will go badly wrong. All of
-     the Map implementations in OpenJDK 1.7 have been rewritten to avoid this,
-     you should to.
-    </p>
-     
-    
-<h3><a name="RC_REF_COMPARISON_BAD_PRACTICE">RC: Suspicious reference comparison to constant (RC_REF_COMPARISON_BAD_PRACTICE)</a></h3>
-
-
-<p> This method compares a reference value to a constant using the == or != operator,
-where the correct way to compare instances of this type is generally
-with the equals() method.
-It is possible to create distinct instances that are equal but do not compare as == since
-they are different objects.
-Examples of classes which should generally
-not be compared by reference are java.lang.Integer, java.lang.Float, etc.</p>
-
-    
-<h3><a name="RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN">RC: Suspicious reference comparison of Boolean values (RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN)</a></h3>
-
-
-<p> This method compares two Boolean values using the == or != operator.
-Normally, there are only two Boolean values (Boolean.TRUE and Boolean.FALSE),
-but it is possible to create other Boolean objects using the <code>new Boolean(b)</code>
-constructor. It is best to avoid such objects, but if they do exist,
-then checking Boolean objects for equality using == or != will give results
-than are different than you would get using <code>.equals(...)</code>
-</p>
-
-    
-<h3><a name="RR_NOT_CHECKED">RR: Method ignores results of InputStream.read() (RR_NOT_CHECKED)</a></h3>
-
-
-  <p> This method ignores the return value of one of the variants of
-  <code>java.io.InputStream.read()</code> which can return multiple bytes.&nbsp;
-  If the return value is not checked, the caller will not be able to correctly
-  handle the case where fewer bytes were read than the caller requested.&nbsp;
-  This is a particularly insidious kind of bug, because in many programs,
-  reads from input streams usually do read the full amount of data requested,
-  causing the program to fail only sporadically.</p>
-
-    
-<h3><a name="SR_NOT_CHECKED">RR: Method ignores results of InputStream.skip() (SR_NOT_CHECKED)</a></h3>
-
-
-  <p> This method ignores the return value of
-  <code>java.io.InputStream.skip()</code> which can skip multiple bytes.&nbsp;
-  If the return value is not checked, the caller will not be able to correctly
-  handle the case where fewer bytes were skipped than the caller requested.&nbsp;
-  This is a particularly insidious kind of bug, because in many programs,
-  skips from input streams usually do skip the full amount of data requested,
-  causing the program to fail only sporadically. With Buffered streams, however,
-  skip() will only skip data in the buffer, and will routinely fail to skip the
-  requested number of bytes.</p>
-
-    
-<h3><a name="RV_NEGATING_RESULT_OF_COMPARETO">RV: Negating the result of compareTo()/compare() (RV_NEGATING_RESULT_OF_COMPARETO)</a></h3>
-
-
-  <p> This code negatives the return value of a compareTo or compare method.
-This is a questionable or bad programming practice, since if the return
-value is Integer.MIN_VALUE, negating the return value won't
-negate the sign of the result. You can achieve the same intended result
-by reversing the order of the operands rather than by negating the results.
-</p>
-
-    
-<h3><a name="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE">RV: Method ignores exceptional return value (RV_RETURN_VALUE_IGNORED_BAD_PRACTICE)</a></h3>
-
-
-   <p> This method returns a value that is not checked. The return value should be checked
-since it can indicate an unusual or unexpected function execution. For
-example, the <code>File.delete()</code> method returns false
-if the file could not be successfully deleted (rather than
-throwing an Exception).
-If you don't check the result, you won't notice if the method invocation
-signals unexpected behavior by returning an atypical return value.
-</p>
-
-    
-<h3><a name="SI_INSTANCE_BEFORE_FINALS_ASSIGNED">SI: Static initializer creates instance before all static final fields assigned (SI_INSTANCE_BEFORE_FINALS_ASSIGNED)</a></h3>
-
-
-<p> The class's static initializer creates an instance of the class
-before all of the static final fields are assigned.</p>
-
-    
-<h3><a name="SW_SWING_METHODS_INVOKED_IN_SWING_THREAD">SW: Certain swing methods needs to be invoked in Swing thread (SW_SWING_METHODS_INVOKED_IN_SWING_THREAD)</a></h3>
-
-
-<p>(<a href="http://web.archive.org/web/20090526170426/http://java.sun.com/developer/JDCTechTips/2003/tt1208.html">From JDC Tech Tip</a>): The Swing methods
-show(), setVisible(), and pack() will create the associated peer for the frame.
-With the creation of the peer, the system creates the event dispatch thread.
-This makes things problematic because the event dispatch thread could be notifying
-listeners while pack and validate are still processing. This situation could result in
-two threads going through the Swing component-based GUI -- it's a serious flaw that
-could result in deadlocks or other related threading issues. A pack call causes
-components to be realized. As they are being realized (that is, not necessarily
-visible), they could trigger listener notification on the event dispatch thread.</p>
-
-
-    
-<h3><a name="SE_BAD_FIELD">Se: Non-transient non-serializable instance field in serializable class (SE_BAD_FIELD)</a></h3>
-
-
-<p> This Serializable class defines a non-primitive instance field which is neither transient,
-Serializable, or <code>java.lang.Object</code>, and does not appear to implement
-the <code>Externalizable</code> interface or the
-<code>readObject()</code> and <code>writeObject()</code> methods.&nbsp;
-Objects of this class will not be deserialized correctly if a non-Serializable
-object is stored in this field.</p>
-
-    
-<h3><a name="SE_BAD_FIELD_INNER_CLASS">Se: Non-serializable class has a serializable inner class (SE_BAD_FIELD_INNER_CLASS)</a></h3>
-
-
-<p> This Serializable class is an inner class of a non-serializable class.
-Thus, attempts to serialize it will also attempt to associate instance of the outer
-class with which it is associated, leading to a runtime error.
-</p>
-<p>If possible, making the inner class a static inner class should solve the
-problem. Making the outer class serializable might also work, but that would
-mean serializing an instance of the inner class would always also serialize the instance
-of the outer class, which it often not what you really want.
-
-    
-<h3><a name="SE_BAD_FIELD_STORE">Se: Non-serializable value stored into instance field of a serializable class (SE_BAD_FIELD_STORE)</a></h3>
-
-
-<p> A non-serializable value is stored into a non-transient field
-of a serializable class.</p>
-
-    
-<h3><a name="SE_COMPARATOR_SHOULD_BE_SERIALIZABLE">Se: Comparator doesn't implement Serializable (SE_COMPARATOR_SHOULD_BE_SERIALIZABLE)</a></h3>
-
-
-  <p> This class implements the <code>Comparator</code> interface. You
-should consider whether or not it should also implement the <code>Serializable</code>
-interface. If a comparator is used to construct an ordered collection
-such as a <code>TreeMap</code>, then the <code>TreeMap</code>
-will be serializable only if the comparator is also serializable.
-As most comparators have little or no state, making them serializable
-is generally easy and good defensive programming.
-</p>
-
-    
-<h3><a name="SE_INNER_CLASS">Se: Serializable inner class (SE_INNER_CLASS)</a></h3>
-
-
-<p> This Serializable class is an inner class.  Any attempt to serialize
-it will also serialize the associated outer instance. The outer instance is serializable,
-so this won't fail, but it might serialize a lot more data than intended.
-If possible, making the inner class a static inner class (also known as a nested class) should solve the
-problem.
-
-    
-<h3><a name="SE_NONFINAL_SERIALVERSIONID">Se: serialVersionUID isn't final (SE_NONFINAL_SERIALVERSIONID)</a></h3>
-
-
-  <p> This class defines a <code>serialVersionUID</code> field that is not final.&nbsp;
-  The field should be made final
-   if it is intended to specify
-   the version UID for purposes of serialization.</p>
-
-    
-<h3><a name="SE_NONLONG_SERIALVERSIONID">Se: serialVersionUID isn't long (SE_NONLONG_SERIALVERSIONID)</a></h3>
-
-
-  <p> This class defines a <code>serialVersionUID</code> field that is not long.&nbsp;
-  The field should be made long
-   if it is intended to specify
-   the version UID for purposes of serialization.</p>
-
-    
-<h3><a name="SE_NONSTATIC_SERIALVERSIONID">Se: serialVersionUID isn't static (SE_NONSTATIC_SERIALVERSIONID)</a></h3>
-
-
-  <p> This class defines a <code>serialVersionUID</code> field that is not static.&nbsp;
-  The field should be made static
-   if it is intended to specify
-   the version UID for purposes of serialization.</p>
-
-    
-<h3><a name="SE_NO_SUITABLE_CONSTRUCTOR">Se: Class is Serializable but its superclass doesn't define a void constructor (SE_NO_SUITABLE_CONSTRUCTOR)</a></h3>
-
-
-  <p> This class implements the <code>Serializable</code> interface
-   and its superclass does not. When such an object is deserialized,
-   the fields of the superclass need to be initialized by
-   invoking the void constructor of the superclass.
-   Since the superclass does not have one,
-   serialization and deserialization will fail at runtime.</p>
-
-    
-<h3><a name="SE_NO_SUITABLE_CONSTRUCTOR_FOR_EXTERNALIZATION">Se: Class is Externalizable but doesn't define a void constructor (SE_NO_SUITABLE_CONSTRUCTOR_FOR_EXTERNALIZATION)</a></h3>
-
-
-  <p> This class implements the <code>Externalizable</code> interface, but does
-  not define a void constructor. When Externalizable objects are deserialized,
-   they first need to be constructed by invoking the void
-   constructor. Since this class does not have one,
-   serialization and deserialization will fail at runtime.</p>
-
-    
-<h3><a name="SE_READ_RESOLVE_MUST_RETURN_OBJECT">Se: The readResolve method must be declared with a return type of Object.  (SE_READ_RESOLVE_MUST_RETURN_OBJECT)</a></h3>
-
-
-  <p> In order for the readResolve method to be recognized by the serialization
-mechanism, it must be declared to have a return type of Object.
-</p>
-
-    
-<h3><a name="SE_TRANSIENT_FIELD_NOT_RESTORED">Se: Transient field that isn't set by deserialization.  (SE_TRANSIENT_FIELD_NOT_RESTORED)</a></h3>
-
-
-  <p> This class contains a field that is updated at multiple places in the class, thus it seems to be part of the state of the class. However, since the field is marked as transient and not set in readObject or readResolve, it will contain the default value in any
-deserialized instance of the class.
-</p>
-
-    
-<h3><a name="SE_NO_SERIALVERSIONID">SnVI: Class is Serializable, but doesn't define serialVersionUID (SE_NO_SERIALVERSIONID)</a></h3>
-
-
-  <p> This class implements the <code>Serializable</code> interface, but does
-  not define a <code>serialVersionUID</code> field.&nbsp;
-  A change as simple as adding a reference to a .class object
-    will add synthetic fields to the class,
-   which will unfortunately change the implicit
-   serialVersionUID (e.g., adding a reference to <code>String.class</code>
-   will generate a static field <code>class$java$lang$String</code>).
-   Also, different source code to bytecode compilers may use different
-   naming conventions for synthetic variables generated for
-   references to class objects or inner classes.
-   To ensure interoperability of Serializable across versions,
-   consider adding an explicit serialVersionUID.</p>
-
-    
-<h3><a name="UI_INHERITANCE_UNSAFE_GETRESOURCE">UI: Usage of GetResource may be unsafe if class is extended (UI_INHERITANCE_UNSAFE_GETRESOURCE)</a></h3>
-
-
-<p>Calling <code>this.getClass().getResource(...)</code> could give
-results other than expected if this class is extended by a class in
-another package.</p>
-
-    
-<h3><a name="BAC_BAD_APPLET_CONSTRUCTOR">BAC: Bad Applet Constructor relies on uninitialized AppletStub (BAC_BAD_APPLET_CONSTRUCTOR)</a></h3>
-
-
-<p>
-This constructor calls methods in the parent Applet that rely on the AppletStub. Since the AppletStub
-isn't initialized until the init() method of this applet is called, these methods will not perform
-correctly.
-</p>
-
-    
-<h3><a name="BC_IMPOSSIBLE_CAST">BC: Impossible cast (BC_IMPOSSIBLE_CAST)</a></h3>
-
-
-<p>
-This cast will always throw a ClassCastException.
-FindBugs tracks type information from instanceof checks,
-and also uses more precise information about the types
-of values returned from methods and loaded from fields.
-Thus, it may have more precise information that just
-the declared type of a variable, and can use this to determine
-that a cast will always throw an exception at runtime.
-
-</p>
-
-    
-<h3><a name="BC_IMPOSSIBLE_DOWNCAST">BC: Impossible downcast (BC_IMPOSSIBLE_DOWNCAST)</a></h3>
-
-
-<p>
-This cast will always throw a ClassCastException.
-The analysis believes it knows
-the precise type of the value being cast, and the attempt to
-downcast it to a subtype will always fail by throwing a ClassCastException.
-</p>
-
-    
-<h3><a name="BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY">BC: Impossible downcast of toArray() result (BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY)</a></h3>
-
-
-<p>
-This code is casting the result of calling <code>toArray()</code> on a collection
-to a type more specific than <code>Object[]</code>, as in:</p>
-<pre>
-String[] getAsArray(Collection&lt;String&gt; c) {
-  return (String[]) c.toArray();
-  }
-</pre>
-<p>This will usually fail by throwing a ClassCastException. The <code>toArray()</code>
-of almost all collections return an <code>Object[]</code>. They can't really do anything else,
-since the Collection object has no reference to the declared generic type of the collection.
-<p>The correct way to do get an array of a specific type from a collection is to use
-  <code>c.toArray(new String[]);</code>
-  or <code>c.toArray(new String[c.size()]);</code> (the latter is slightly more efficient).
-<p>There is one common/known exception exception to this. The <code>toArray()</code>
-method of lists returned by <code>Arrays.asList(...)</code> will return a covariantly
-typed array. For example, <code>Arrays.asArray(new String[] { "a" }).toArray()</code>
-will return a <code>String []</code>. FindBugs attempts to detect and suppress
-such cases, but may miss some.
-</p>
-
-    
-<h3><a name="BC_IMPOSSIBLE_INSTANCEOF">BC: instanceof will always return false (BC_IMPOSSIBLE_INSTANCEOF)</a></h3>
-
-
-<p>
-This instanceof test will always return false. Although this is safe, make sure it isn't
-an indication of some misunderstanding or some other logic error.
-</p>
-
-    
-<h3><a name="BIT_ADD_OF_SIGNED_BYTE">BIT: Bitwise add of signed byte value (BIT_ADD_OF_SIGNED_BYTE)</a></h3>
-
-
-<p> Adds a byte value and a value which is known to have the 8 lower bits clear.
-Values loaded from a byte array are sign extended to 32 bits
-before any any bitwise operations are performed on the value.
-Thus, if <code>b[0]</code> contains the value <code>0xff</code>, and
-<code>x</code> is initially 0, then the code
-<code>((x &lt;&lt; 8) + b[0])</code>  will sign extend <code>0xff</code>
-to get <code>0xffffffff</code>, and thus give the value
-<code>0xffffffff</code> as the result.
-</p>
-
-<p>In particular, the following code for packing a byte array into an int is badly wrong: </p>
-<pre>
-int result = 0;
-for(int i = 0; i &lt; 4; i++)
-  result = ((result &lt;&lt; 8) + b[i]);
-</pre>
-
-<p>The following idiom will work instead: </p>
-<pre>
-int result = 0;
-for(int i = 0; i &lt; 4; i++)
-  result = ((result &lt;&lt; 8) + (b[i] &amp; 0xff));
-</pre>
-
-
-    
-<h3><a name="BIT_AND">BIT: Incompatible bit masks (BIT_AND)</a></h3>
-
-
-<p> This method compares an expression of the form (e &amp; C) to D,
-which will always compare unequal
-due to the specific values of constants C and D.
-This may indicate a logic error or typo.</p>
-
-    
-<h3><a name="BIT_AND_ZZ">BIT: Check to see if ((...) & 0) == 0 (BIT_AND_ZZ)</a></h3>
-
-
-<p> This method compares an expression of the form (e &amp; 0) to 0,
-which will always compare equal.
-This may indicate a logic error or typo.</p>
-
-    
-<h3><a name="BIT_IOR">BIT: Incompatible bit masks (BIT_IOR)</a></h3>
-
-
-<p> This method compares an expression of the form (e | C) to D.
-which will always compare unequal
-due to the specific values of constants C and D.
-This may indicate a logic error or typo.</p>
-
-<p> Typically, this bug occurs because the code wants to perform
-a membership test in a bit set, but uses the bitwise OR
-operator ("|") instead of bitwise AND ("&amp;").</p>
-
-    
-<h3><a name="BIT_IOR_OF_SIGNED_BYTE">BIT: Bitwise OR of signed byte value (BIT_IOR_OF_SIGNED_BYTE)</a></h3>
-
-
-<p> Loads a byte value (e.g., a value loaded from a byte array or returned by a method
-with return type byte)  and performs a bitwise OR with
-that value. Byte values are sign extended to 32 bits
-before any any bitwise operations are performed on the value.
-Thus, if <code>b[0]</code> contains the value <code>0xff</code>, and
-<code>x</code> is initially 0, then the code
-<code>((x &lt;&lt; 8) | b[0])</code>  will sign extend <code>0xff</code>
-to get <code>0xffffffff</code>, and thus give the value
-<code>0xffffffff</code> as the result.
-</p>
-
-<p>In particular, the following code for packing a byte array into an int is badly wrong: </p>
-<pre>
-int result = 0;
-for(int i = 0; i &lt; 4; i++)
-  result = ((result &lt;&lt; 8) | b[i]);
-</pre>
-
-<p>The following idiom will work instead: </p>
-<pre>
-int result = 0;
-for(int i = 0; i &lt; 4; i++)
-  result = ((result &lt;&lt; 8) | (b[i] &amp; 0xff));
-</pre>
-
-
-    
-<h3><a name="BIT_SIGNED_CHECK_HIGH_BIT">BIT: Check for sign of bitwise operation (BIT_SIGNED_CHECK_HIGH_BIT)</a></h3>
-
-
-<p> This method compares an expression such as</p>
-<pre>((event.detail &amp; SWT.SELECTED) &gt; 0)</pre>.
-<p>Using bit arithmetic and then comparing with the greater than operator can
-lead to unexpected results (of course depending on the value of
-SWT.SELECTED). If SWT.SELECTED is a negative number, this is a candidate
-for a bug. Even when SWT.SELECTED is not negative, it seems good practice
-to use '!= 0' instead of '&gt; 0'.
-</p>
-<p>
-<em>Boris Bokowski</em>
-</p>
-
-    
-<h3><a name="BOA_BADLY_OVERRIDDEN_ADAPTER">BOA: Class overrides a method implemented in super class Adapter wrongly (BOA_BADLY_OVERRIDDEN_ADAPTER)</a></h3>
-
-
-<p> This method overrides a method found in a parent class, where that class is an Adapter that implements
-a listener defined in the java.awt.event or javax.swing.event package. As a result, this method will not
-get called when the event occurs.</p>
-
-    
-<h3><a name="ICAST_BAD_SHIFT_AMOUNT">BSHIFT: 32 bit int shifted by an amount not in the range -31..31 (ICAST_BAD_SHIFT_AMOUNT)</a></h3>
-
-
-<p>
-The code performs shift of a 32 bit int by a constant amount outside
-the range -31..31.
-The effect of this is to use the lower 5 bits of the integer
-value to decide how much to shift by (e.g., shifting by 40 bits is the same as shifting by 8 bits,
-and shifting by 32 bits is the same as shifting by zero bits). This probably isn't what was expected,
-and it is at least confusing.
-</p>
-
-    
-<h3><a name="BX_UNBOXED_AND_COERCED_FOR_TERNARY_OPERATOR">Bx: Primitive value is unboxed and coerced for ternary operator (BX_UNBOXED_AND_COERCED_FOR_TERNARY_OPERATOR)</a></h3>
-
-
-  <p>A wrapped primitive value is unboxed and converted to another primitive type as part of the
-evaluation of a conditional ternary operator (the <code> b ? e1 : e2</code> operator). The
-semantics of Java mandate that if <code>e1</code> and <code>e2</code> are wrapped
-numeric values, the values are unboxed and converted/coerced to their common type (e.g,
-if <code>e1</code> is of type <code>Integer</code>
-and <code>e2</code> is of type <code>Float</code>, then <code>e1</code> is unboxed,
-converted to a floating point value, and boxed. See JLS Section 15.25.
-</p>
-
-    
-<h3><a name="CO_COMPARETO_RESULTS_MIN_VALUE">Co: compareTo()/compare() returns Integer.MIN_VALUE (CO_COMPARETO_RESULTS_MIN_VALUE)</a></h3>
-
-
-  <p> In some situation, this compareTo or compare method returns
-the  constant Integer.MIN_VALUE, which is an exceptionally bad practice.
-  The only thing that matters about the return value of compareTo is the sign of the result.
-    But people will sometimes negate the return value of compareTo, expecting that this will negate
-    the sign of the result. And it will, except in the case where the value returned is Integer.MIN_VALUE.
-    So just return -1 rather than Integer.MIN_VALUE.
-
-    
-<h3><a name="DLS_DEAD_LOCAL_INCREMENT_IN_RETURN">DLS: Useless increment in return statement (DLS_DEAD_LOCAL_INCREMENT_IN_RETURN)</a></h3>
-
-      
-<p>This statement has a return such as <code>return x++;</code>. 
-A postfix increment/decrement does not impact the value of the expression,
-so this increment/decrement has no effect. 
-Please verify that this statement does the right thing.
-</p>
-
-    
-<h3><a name="DLS_DEAD_STORE_OF_CLASS_LITERAL">DLS: Dead store of class literal (DLS_DEAD_STORE_OF_CLASS_LITERAL)</a></h3>
-
-
-<p>
-This instruction assigns a class literal to a variable and then never uses it.
-<a href="//java.sun.com/j2se/1.5.0/compatibility.html#literal">The behavior of this differs in Java 1.4 and in Java 5.</a>
-In Java 1.4 and earlier, a reference to <code>Foo.class</code> would force the static initializer
-for <code>Foo</code> to be executed, if it has not been executed already.
-In Java 5 and later, it does not.
-</p>
-<p>See Sun's <a href="//java.sun.com/j2se/1.5.0/compatibility.html#literal">article on Java SE compatibility</a>
-for more details and examples, and suggestions on how to force class initialization in Java 5.
-</p>
-
-    
-<h3><a name="DLS_OVERWRITTEN_INCREMENT">DLS: Overwritten increment (DLS_OVERWRITTEN_INCREMENT)</a></h3>
-
-
-<p>
-The code performs an increment operation (e.g., <code>i++</code>) and then
-immediately overwrites it. For example, <code>i = i++</code> immediately
-overwrites the incremented value with the original value.
-</p>
-
-    
-<h3><a name="DMI_ARGUMENTS_WRONG_ORDER">DMI: Reversed method arguments (DMI_ARGUMENTS_WRONG_ORDER)</a></h3>
-
-
-<p> The arguments to this method call seem to be in the wrong order.
-For example, a call <code>Preconditions.checkNotNull("message", message)</code>
-has reserved arguments: the value to be checked is the first argument.
-</p>
-
-    
-<h3><a name="DMI_BAD_MONTH">DMI: Bad constant value for month (DMI_BAD_MONTH)</a></h3>
-
-
-<p>
-This code passes a constant month
-value outside the expected range of 0..11 to a method.
-</p>
-
-    
-<h3><a name="DMI_BIGDECIMAL_CONSTRUCTED_FROM_DOUBLE">DMI: BigDecimal constructed from double that isn't represented precisely (DMI_BIGDECIMAL_CONSTRUCTED_FROM_DOUBLE)</a></h3>
-
-      
-    <p>
-This code creates a BigDecimal from a double value that doesn't translate well to a
-decimal number.
-For example, one might assume that writing new BigDecimal(0.1) in Java creates a BigDecimal which is exactly equal to 0.1 (an unscaled value of 1, with a scale of 1), but it is actually equal to 0.1000000000000000055511151231257827021181583404541015625.
-You probably want to use the BigDecimal.valueOf(double d) method, which uses the String representation
-of the double to create the BigDecimal (e.g., BigDecimal.valueOf(0.1) gives 0.1).
-</p>
-
-
-    
-<h3><a name="DMI_CALLING_NEXT_FROM_HASNEXT">DMI: hasNext method invokes next (DMI_CALLING_NEXT_FROM_HASNEXT)</a></h3>
-
-
-<p>
-The hasNext() method invokes the next() method. This is almost certainly wrong,
-since the hasNext() method is not supposed to change the state of the iterator,
-and the next method is supposed to change the state of the iterator.
-</p>
-
-    
-<h3><a name="DMI_COLLECTIONS_SHOULD_NOT_CONTAIN_THEMSELVES">DMI: Collections should not contain themselves (DMI_COLLECTIONS_SHOULD_NOT_CONTAIN_THEMSELVES)</a></h3>
-
-     
-     <p> This call to a generic collection's method would only make sense if a collection contained
-itself (e.g., if <code>s.contains(s)</code> were true). This is unlikely to be true and would cause
-problems if it were true (such as the computation of the hash code resulting in infinite recursion).
-It is likely that the wrong value is being passed as a parameter.
-    </p>
-     
-    
-<h3><a name="DMI_DOH">DMI: D'oh! A nonsensical method invocation (DMI_DOH)</a></h3>
-
-      
-    <p>
-This partical method invocation doesn't make sense, for reasons that should be apparent from inspection.
-</p>
-
-
-    
-<h3><a name="DMI_INVOKING_HASHCODE_ON_ARRAY">DMI: Invocation of hashCode on an array (DMI_INVOKING_HASHCODE_ON_ARRAY)</a></h3>
-
-
-<p>
-The code invokes hashCode on an array. Calling hashCode on
-an array returns the same value as System.identityHashCode, and ingores
-the contents and length of the array. If you need a hashCode that
-depends on the contents of an array <code>a</code>,
-use <code>java.util.Arrays.hashCode(a)</code>.
-
-</p>
-
-    
-<h3><a name="DMI_LONG_BITS_TO_DOUBLE_INVOKED_ON_INT">DMI: Double.longBitsToDouble invoked on an int (DMI_LONG_BITS_TO_DOUBLE_INVOKED_ON_INT)</a></h3>
-
-
-<p> The Double.longBitsToDouble method is invoked, but a 32 bit int value is passed
-    as an argument. This almostly certainly is not intended and is unlikely
-    to give the intended result.
-</p>
-
-    
-<h3><a name="DMI_VACUOUS_SELF_COLLECTION_CALL">DMI: Vacuous call to collections (DMI_VACUOUS_SELF_COLLECTION_CALL)</a></h3>
-
-     
-     <p> This call doesn't make sense. For any collection <code>c</code>, calling <code>c.containsAll(c)</code> should
-always be true, and <code>c.retainAll(c)</code> should have no effect.
-    </p>
-     
-    
-<h3><a name="DMI_ANNOTATION_IS_NOT_VISIBLE_TO_REFLECTION">Dm: Can't use reflection to check for presence of annotation without runtime retention (DMI_ANNOTATION_IS_NOT_VISIBLE_TO_REFLECTION)</a></h3>
-
-
-  <p> Unless an annotation has itself been annotated with  @Retention(RetentionPolicy.RUNTIME), the annotation can't be observed using reflection
-(e.g., by using the isAnnotationPresent method).
-   .</p>
-
-    
-<h3><a name="DMI_FUTILE_ATTEMPT_TO_CHANGE_MAXPOOL_SIZE_OF_SCHEDULED_THREAD_POOL_EXECUTOR">Dm: Futile attempt to change max pool size of ScheduledThreadPoolExecutor (DMI_FUTILE_ATTEMPT_TO_CHANGE_MAXPOOL_SIZE_OF_SCHEDULED_THREAD_POOL_EXECUTOR)</a></h3>
-
-      
-    <p>(<a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html">Javadoc</a>)
-While ScheduledThreadPoolExecutor inherits from ThreadPoolExecutor, a few of the inherited tuning methods are not useful for it. In particular, because it acts as a fixed-sized pool using corePoolSize threads and an unbounded queue, adjustments to maximumPoolSize have no useful effect.
-    </p>
-
-
-    
-<h3><a name="DMI_SCHEDULED_THREAD_POOL_EXECUTOR_WITH_ZERO_CORE_THREADS">Dm: Creation of ScheduledThreadPoolExecutor with zero core threads (DMI_SCHEDULED_THREAD_POOL_EXECUTOR_WITH_ZERO_CORE_THREADS)</a></h3>
-
-      
-    <p>(<a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html#ScheduledThreadPoolExecutor(int)">Javadoc</a>)
-A ScheduledThreadPoolExecutor with zero core threads will never execute anything; changes to the max pool size are ignored.
-</p>
-
-
-    
-<h3><a name="DMI_VACUOUS_CALL_TO_EASYMOCK_METHOD">Dm: Useless/vacuous call to EasyMock method (DMI_VACUOUS_CALL_TO_EASYMOCK_METHOD)</a></h3>
-
-      
-    <p>This call doesn't pass any objects to the EasyMock method, so the call doesn't do anything.
-</p>
-
-
-    
-<h3><a name="EC_ARRAY_AND_NONARRAY">EC: equals() used to compare array and nonarray (EC_ARRAY_AND_NONARRAY)</a></h3>
-
-
-<p>
-This method invokes the .equals(Object o) to compare an array and a reference that doesn't seem
-to be an array. If things being compared are of different types, they are guaranteed to be unequal
-and the comparison is almost certainly an error. Even if they are both arrays, the equals method
-on arrays only determines of the two arrays are the same object.
-To compare the
-contents of the arrays, use java.util.Arrays.equals(Object[], Object[]).
-</p>
-
-    
-<h3><a name="EC_BAD_ARRAY_COMPARE">EC: Invocation of equals() on an array, which is equivalent to == (EC_BAD_ARRAY_COMPARE)</a></h3>
-
-
-<p>
-This method invokes the .equals(Object o) method on an array. Since arrays do not override the equals
-method of Object, calling equals on an array is the same as comparing their addresses. To compare the
-contents of the arrays, use <code>java.util.Arrays.equals(Object[], Object[])</code>.
-To compare the addresses of the arrays, it would be
-less confusing to explicitly check pointer equality using <code>==</code>.
-</p>
-
-    
-<h3><a name="EC_INCOMPATIBLE_ARRAY_COMPARE">EC: equals(...) used to compare incompatible arrays (EC_INCOMPATIBLE_ARRAY_COMPARE)</a></h3>
-
-
-<p>
-This method invokes the .equals(Object o) to compare two arrays, but the arrays of
-of incompatible types (e.g., String[] and StringBuffer[], or String[] and int[]).
-They will never be equal. In addition, when equals(...) is used to compare arrays it
-only checks to see if they are the same array, and ignores the contents of the arrays.
-</p>
-
-    
-<h3><a name="EC_NULL_ARG">EC: Call to equals(null) (EC_NULL_ARG)</a></h3>
-
-
-<p> This method calls equals(Object), passing a null value as
-the argument. According to the contract of the equals() method,
-this call should always return <code>false</code>.</p>
-
-    
-<h3><a name="EC_UNRELATED_CLASS_AND_INTERFACE">EC: Call to equals() comparing unrelated class and interface (EC_UNRELATED_CLASS_AND_INTERFACE)</a></h3>
-
-      
-<p>
-This method calls equals(Object) on two references,  one of which is a class
-and the other an interface, where neither the class nor any of its
-non-abstract subclasses implement the interface.
-Therefore, the objects being compared
-are unlikely to be members of the same class at runtime
-(unless some application classes were not analyzed, or dynamic class
-loading can occur at runtime).
-According to the contract of equals(),
-objects of different
-classes should always compare as unequal; therefore, according to the
-contract defined by java.lang.Object.equals(Object),
-the result of this comparison will always be false at runtime.
-</p>
-      
-   
-<h3><a name="EC_UNRELATED_INTERFACES">EC: Call to equals() comparing different interface types (EC_UNRELATED_INTERFACES)</a></h3>
-
-
-<p> This method calls equals(Object) on two references of unrelated
-interface types, where neither is a subtype of the other,
-and there are no known non-abstract classes which implement both interfaces.
-Therefore, the objects being compared
-are unlikely to be members of the same class at runtime
-(unless some application classes were not analyzed, or dynamic class
-loading can occur at runtime).
-According to the contract of equals(),
-objects of different
-classes should always compare as unequal; therefore, according to the
-contract defined by java.lang.Object.equals(Object),
-the result of this comparison will always be false at runtime.
-</p>
-
-    
-<h3><a name="EC_UNRELATED_TYPES">EC: Call to equals() comparing different types (EC_UNRELATED_TYPES)</a></h3>
-
-
-<p> This method calls equals(Object) on two references of different
-class types with no common subclasses.
-Therefore, the objects being compared
-are unlikely to be members of the same class at runtime
-(unless some application classes were not analyzed, or dynamic class
-loading can occur at runtime).
-According to the contract of equals(),
-objects of different
-classes should always compare as unequal; therefore, according to the
-contract defined by java.lang.Object.equals(Object),
-the result of this comparison will always be false at runtime.
-</p>
-
-    
-<h3><a name="EC_UNRELATED_TYPES_USING_POINTER_EQUALITY">EC: Using pointer equality to compare different types (EC_UNRELATED_TYPES_USING_POINTER_EQUALITY)</a></h3>
-
-
-<p> This method uses using pointer equality to compare two references that seem to be of
-different types.  The result of this comparison will always be false at runtime.
-</p>
-
-    
-<h3><a name="EQ_ALWAYS_FALSE">Eq: equals method always returns false (EQ_ALWAYS_FALSE)</a></h3>
-
-
-  <p> This class defines an equals method that always returns false. This means that an object is not equal to itself, and it is impossible to create useful Maps or Sets of this class. More fundamentally, it means
-that equals is not reflexive, one of the requirements of the equals method.</p>
-<p>The likely intended semantics are object identity: that an object is equal to itself. This is the behavior inherited from class <code>Object</code>. If you need to override an equals inherited from a different
-superclass, you can use use:</p>
-<pre>
-public boolean equals(Object o) { return this == o; }
-</pre>
-
-    
-<h3><a name="EQ_ALWAYS_TRUE">Eq: equals method always returns true (EQ_ALWAYS_TRUE)</a></h3>
-
-
-  <p> This class defines an equals method that always returns true. This is imaginative, but not very smart.
-Plus, it means that the equals method is not symmetric.
-</p>
-
-    
-<h3><a name="EQ_COMPARING_CLASS_NAMES">Eq: equals method compares class names rather than class objects (EQ_COMPARING_CLASS_NAMES)</a></h3>
-
-
-  <p> This method checks to see if two objects are the same class by checking to see if the names
-of their classes are equal. You can have different classes with the same name if they are loaded by
-different class loaders. Just check to see if the class objects are the same.
-</p>
-
-    
-<h3><a name="EQ_DONT_DEFINE_EQUALS_FOR_ENUM">Eq: Covariant equals() method defined for enum (EQ_DONT_DEFINE_EQUALS_FOR_ENUM)</a></h3>
-
-
-  <p> This class defines an enumeration, and equality on enumerations are defined
-using object identity. Defining a covariant equals method for an enumeration
-value is exceptionally bad practice, since it would likely result
-in having two different enumeration values that compare as equals using
-the covariant enum method, and as not equal when compared normally.
-Don't do it.
-</p>
-
-    
-<h3><a name="EQ_OTHER_NO_OBJECT">Eq: equals() method defined that doesn't override equals(Object) (EQ_OTHER_NO_OBJECT)</a></h3>
-
-
-  <p> This class defines an <code>equals()</code>
-  method, that doesn't override the normal <code>equals(Object)</code> method
-  defined in the base <code>java.lang.Object</code> class.&nbsp; Instead, it
-  inherits an <code>equals(Object)</code> method from a superclass.
-  The class should probably define a <code>boolean equals(Object)</code> method.
-  </p>
-
-    
-<h3><a name="EQ_OTHER_USE_OBJECT">Eq: equals() method defined that doesn't override Object.equals(Object) (EQ_OTHER_USE_OBJECT)</a></h3>
-
-
-  <p> This class defines an <code>equals()</code>
-  method, that doesn't override the normal <code>equals(Object)</code> method
-  defined in the base <code>java.lang.Object</code> class.&nbsp;
-  The class should probably define a <code>boolean equals(Object)</code> method.
-  </p>
-
-    
-<h3><a name="EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC">Eq: equals method overrides equals in superclass and may not be symmetric (EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC)</a></h3>
-
-
-  <p> This class defines an equals method that overrides an equals method in a superclass. Both equals methods
-methods use <code>instanceof</code> in the determination of whether two objects are equal. This is fraught with peril,
-since it is important that the equals method is symmetrical (in other words, <code>a.equals(b) == b.equals(a)</code>).
-If B is a subtype of A, and A's equals method checks that the argument is an instanceof A, and B's equals method
-checks that the argument is an instanceof B, it is quite likely that the equivalence relation defined by these
-methods is not symmetric.
-</p>
-
-    
-<h3><a name="EQ_SELF_USE_OBJECT">Eq: Covariant equals() method defined, Object.equals(Object) inherited (EQ_SELF_USE_OBJECT)</a></h3>
-
-
-  <p> This class defines a covariant version of the <code>equals()</code>
-  method, but inherits the normal <code>equals(Object)</code> method
-  defined in the base <code>java.lang.Object</code> class.&nbsp;
-  The class should probably define a <code>boolean equals(Object)</code> method.
-  </p>
-
-    
-<h3><a name="FB_MISSING_EXPECTED_WARNING">FB: Missing expected or desired warning from FindBugs (FB_MISSING_EXPECTED_WARNING)</a></h3>
-
-          
-          <p>FindBugs didn't generate generated a warning that, according to a @ExpectedWarning annotated,
-            is expected or desired</p>
-          
-      
-<h3><a name="FB_UNEXPECTED_WARNING">FB: Unexpected/undesired warning from FindBugs (FB_UNEXPECTED_WARNING)</a></h3>
-
-          
-          <p>FindBugs generated a warning that, according to a @NoWarning annotated,
-            is unexpected or undesired</p>
-          
-      
-<h3><a name="FE_TEST_IF_EQUAL_TO_NOT_A_NUMBER">FE: Doomed test for equality to NaN (FE_TEST_IF_EQUAL_TO_NOT_A_NUMBER)</a></h3>
-
-   
-    <p>
-    This code checks to see if a floating point value is equal to the special
-    Not A Number value (e.g., <code>if (x == Double.NaN)</code>). However,
-    because of the special semantics of <code>NaN</code>, no value
-    is equal to <code>Nan</code>, including <code>NaN</code>. Thus,
-    <code>x == Double.NaN</code> always evaluates to false.
-
-    To check to see if a value contained in <code>x</code>
-    is the special Not A Number value, use
-    <code>Double.isNaN(x)</code> (or <code>Float.isNaN(x)</code> if
-    <code>x</code> is floating point precision).
-    </p>
-    
-     
-<h3><a name="FL_MATH_USING_FLOAT_PRECISION">FL: Method performs math using floating point precision (FL_MATH_USING_FLOAT_PRECISION)</a></h3>
-
-
-<p>
-   The method performs math operations using floating point precision.
-   Floating point precision is very imprecise. For example,
-   16777216.0f + 1.0f = 16777216.0f. Consider using double math instead.</p>
-
-    
-<h3><a name="VA_FORMAT_STRING_BAD_ARGUMENT">FS: Format string placeholder incompatible with passed argument (VA_FORMAT_STRING_BAD_ARGUMENT)</a></h3>
-
-
-<p>
-The format string placeholder is incompatible with the corresponding
-argument. For example,
-<code>
-  System.out.println("%d\n", "hello");
-</code>
-<p>The %d placeholder requires a numeric argument, but a string value is
-passed instead.
-A runtime exception will occur when
-this statement is executed.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_BAD_CONVERSION">FS: The type of a supplied argument doesn't match format specifier (VA_FORMAT_STRING_BAD_CONVERSION)</a></h3>
-
-
-<p>
-One of the arguments is uncompatible with the corresponding format string specifier.
-As a result, this will generate a runtime exception when executed.
-For example, <code>String.format("%d", "1")</code> will generate an exception, since
-the String "1" is incompatible with the format specifier %d.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED">FS: MessageFormat supplied where printf style format expected (VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED)</a></h3>
-
-
-<p>
-A method is called that expects a Java printf format string and a list of arguments.
-However, the format string doesn't contain any format specifiers (e.g., %s) but
-does contain message format elements (e.g., {0}).  It is likely
-that the code is supplying a MessageFormat string when a printf-style format string
-is required. At runtime, all of the arguments will be ignored
-and the format string will be returned exactly as provided without any formatting.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_EXTRA_ARGUMENTS_PASSED">FS: More arguments are passed than are actually used in the format string (VA_FORMAT_STRING_EXTRA_ARGUMENTS_PASSED)</a></h3>
-
-
-<p>
-A format-string method with a variable number of arguments is called,
-but more arguments are passed than are actually used by the format string.
-This won't cause a runtime exception, but the code may be silently omitting
-information that was intended to be included in the formatted string.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_ILLEGAL">FS: Illegal format string (VA_FORMAT_STRING_ILLEGAL)</a></h3>
-
-
-<p>
-The format string is syntactically invalid,
-and a runtime exception will occur when
-this statement is executed.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_MISSING_ARGUMENT">FS: Format string references missing argument (VA_FORMAT_STRING_MISSING_ARGUMENT)</a></h3>
-
-
-<p>
-Not enough arguments are passed to satisfy a placeholder in the format string.
-A runtime exception will occur when
-this statement is executed.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_NO_PREVIOUS_ARGUMENT">FS: No previous argument for format string (VA_FORMAT_STRING_NO_PREVIOUS_ARGUMENT)</a></h3>
-
-
-<p>
-The format string specifies a relative index to request that the argument for the previous format specifier
-be reused. However, there is no previous argument.
-For example,
-</p>
-<p><code>formatter.format("%&lt;s %s", "a", "b")</code>
-</p>
-<p>would throw a MissingFormatArgumentException when executed.
-</p>
-
-     
-<h3><a name="GC_UNRELATED_TYPES">GC: No relationship between generic parameter and method argument (GC_UNRELATED_TYPES)</a></h3>
-
-     
-     <p> This call to a generic collection method contains an argument
-     with an incompatible class from that of the collection's parameter
-    (i.e., the type of the argument is neither a supertype nor a subtype
-        of the corresponding generic type argument).
-     Therefore, it is unlikely that the collection contains any objects
-    that are equal to the method argument used here.
-    Most likely, the wrong value is being passed to the method.</p>
-    <p>In general, instances of two unrelated classes are not equal.
-    For example, if the <code>Foo</code> and <code>Bar</code> classes
-    are not related by subtyping, then an instance of <code>Foo</code>
-        should not be equal to an instance of <code>Bar</code>.
-    Among other issues, doing so will likely result in an equals method
-    that is not symmetrical. For example, if you define the <code>Foo</code> class
-    so that a <code>Foo</code> can be equal to a <code>String</code>,
-    your equals method isn't symmetrical since a <code>String</code> can only be equal
-    to a <code>String</code>.
-    </p>
-    <p>In rare cases, people do define nonsymmetrical equals methods and still manage to make
-    their code work. Although none of the APIs document or guarantee it, it is typically
-    the case that if you check if a <code>Collection&lt;String&gt;</code> contains
-    a <code>Foo</code>, the equals method of argument (e.g., the equals method of the
-    <code>Foo</code> class) used to perform the equality checks.
-    </p>
-     
-    
-<h3><a name="HE_SIGNATURE_DECLARES_HASHING_OF_UNHASHABLE_CLASS">HE: Signature declares use of unhashable class in hashed construct (HE_SIGNATURE_DECLARES_HASHING_OF_UNHASHABLE_CLASS)</a></h3>
-
-
-  <p> A method, field or class declares a generic signature where a non-hashable class
-is used in context where a hashable class is required.
-A class that declares an equals method but inherits a hashCode() method
-from Object is unhashable, since it doesn't fulfill the requirement that
-equal objects have equal hashCodes.
-</p>
-
-    
-<h3><a name="HE_USE_OF_UNHASHABLE_CLASS">HE: Use of class without a hashCode() method in a hashed data structure (HE_USE_OF_UNHASHABLE_CLASS)</a></h3>
-
-
-  <p> A class defines an equals(Object)  method but not a hashCode() method,
-and thus doesn't fulfill the requirement that equal objects have equal hashCodes.
-An instance of this class is used in a hash data structure, making the need to
-fix this problem of highest importance.
-
-    
-<h3><a name="ICAST_INT_2_LONG_AS_INSTANT">ICAST: int value converted to long and used as absolute time (ICAST_INT_2_LONG_AS_INSTANT)</a></h3>
-
-
-<p>
-This code converts a 32-bit int value to a 64-bit long value, and then
-passes that value for a method parameter that requires an absolute time value.
-An absolute time value is the number
-of milliseconds since the standard base time known as "the epoch", namely January 1, 1970, 00:00:00 GMT.
-For example, the following method, intended to convert seconds since the epoc into a Date, is badly
-broken:</p>
-<pre>
-Date getDate(int seconds) { return new Date(seconds * 1000); }
-</pre>
-<p>The multiplication is done using 32-bit arithmetic, and then converted to a 64-bit value.
-When a 32-bit value is converted to 64-bits and used to express an absolute time
-value, only dates in December 1969 and January 1970 can be represented.</p>
-
-<p>Correct implementations for the above method are:</p>
-
-<pre>
-// Fails for dates after 2037
-Date getDate(int seconds) { return new Date(seconds * 1000L); }
-
-// better, works for all dates
-Date getDate(long seconds) { return new Date(seconds * 1000); }
-</pre>
-
-    
-<h3><a name="ICAST_INT_CAST_TO_DOUBLE_PASSED_TO_CEIL">ICAST: Integral value cast to double and then passed to Math.ceil (ICAST_INT_CAST_TO_DOUBLE_PASSED_TO_CEIL)</a></h3>
-
-
-<p>
-This code converts an integral value (e.g., int or long)
-to a double precision
-floating point number and then
-passing the result to the Math.ceil() function, which rounds a double to
-the next higher integer value. This operation should always be a no-op,
-since the converting an integer to a double should give a number with no fractional part.
-It is likely that the operation that generated the value to be passed
-to Math.ceil was intended to be performed using double precision
-floating point arithmetic.
-</p>
-
-
-    
-<h3><a name="ICAST_INT_CAST_TO_FLOAT_PASSED_TO_ROUND">ICAST: int value cast to float and then passed to Math.round (ICAST_INT_CAST_TO_FLOAT_PASSED_TO_ROUND)</a></h3>
-
-
-<p>
-This code converts an int value to a float precision
-floating point number and then
-passing the result to the Math.round() function, which returns the int/long closest
-to the argument. This operation should always be a no-op,
-since the converting an integer to a float should give a number with no fractional part.
-It is likely that the operation that generated the value to be passed
-to Math.round was intended to be performed using
-floating point arithmetic.
-</p>
-
-
-    
-<h3><a name="IJU_ASSERT_METHOD_INVOKED_FROM_RUN_METHOD">IJU: JUnit assertion in run method will not be noticed by JUnit (IJU_ASSERT_METHOD_INVOKED_FROM_RUN_METHOD)</a></h3>
-
-
-<p> A JUnit assertion is performed in a run method. Failed JUnit assertions
-just result in exceptions being thrown.
-Thus, if this exception occurs in a thread other than the thread that invokes
-the test method, the exception will terminate the thread but not result
-in the test failing.
-</p>
-
-    
-<h3><a name="IJU_BAD_SUITE_METHOD">IJU: TestCase declares a bad suite method  (IJU_BAD_SUITE_METHOD)</a></h3>
-
-
-<p> Class is a JUnit TestCase and defines a suite() method.
-However, the suite method needs to be declared as either</p>
-<pre>public static junit.framework.Test suite()</pre>
-or
-<pre>public static junit.framework.TestSuite suite()</pre>
-
-    
-<h3><a name="IJU_NO_TESTS">IJU: TestCase has no tests (IJU_NO_TESTS)</a></h3>
-
-
-<p> Class is a JUnit TestCase but has not implemented any test methods</p>
-
-    
-<h3><a name="IJU_SETUP_NO_SUPER">IJU: TestCase defines setUp that doesn't call super.setUp() (IJU_SETUP_NO_SUPER)</a></h3>
-
-
-<p> Class is a JUnit TestCase and implements the setUp method. The setUp method should call
-super.setUp(), but doesn't.</p>
-
-    
-<h3><a name="IJU_SUITE_NOT_STATIC">IJU: TestCase implements a non-static suite method  (IJU_SUITE_NOT_STATIC)</a></h3>
-
-
-<p> Class is a JUnit TestCase and implements the suite() method.
- The suite method should be declared as being static, but isn't.</p>
-
-    
-<h3><a name="IJU_TEARDOWN_NO_SUPER">IJU: TestCase defines tearDown that doesn't call super.tearDown() (IJU_TEARDOWN_NO_SUPER)</a></h3>
-
-
-<p> Class is a JUnit TestCase and implements the tearDown method. The tearDown method should call
-super.tearDown(), but doesn't.</p>
-
-    
-<h3><a name="IL_CONTAINER_ADDED_TO_ITSELF">IL: A collection is added to itself (IL_CONTAINER_ADDED_TO_ITSELF)</a></h3>
-
-
-<p>A collection is added to itself. As a result, computing the hashCode of this
-set will throw a StackOverflowException.
-</p>
-
-    
-<h3><a name="IL_INFINITE_LOOP">IL: An apparent infinite loop (IL_INFINITE_LOOP)</a></h3>
-
-
-<p>This loop doesn't seem to have a way to terminate (other than by perhaps
-throwing an exception).</p>
-
-    
-<h3><a name="IL_INFINITE_RECURSIVE_LOOP">IL: An apparent infinite recursive loop (IL_INFINITE_RECURSIVE_LOOP)</a></h3>
-
-
-<p>This method unconditionally invokes itself. This would seem to indicate
-an infinite recursive loop that will result in a stack overflow.</p>
-
-    
-<h3><a name="IM_MULTIPLYING_RESULT_OF_IREM">IM: Integer multiply of result of integer remainder (IM_MULTIPLYING_RESULT_OF_IREM)</a></h3>
-
-
-<p>
-The code multiplies the result of an integer remaining by an integer constant.
-Be sure you don't have your operator precedence confused. For example
-i % 60 * 1000 is (i % 60) * 1000, not i % (60 * 1000).
-</p>
-
-    
-<h3><a name="INT_BAD_COMPARISON_WITH_INT_VALUE">INT: Bad comparison of int value with long constant (INT_BAD_COMPARISON_WITH_INT_VALUE)</a></h3>
-
-
-<p> This code compares an int value with a long constant that is outside
-the range of values that can be represented as an int value.
-This comparison is vacuous and possibily to be incorrect.
-</p>
-
-    
-<h3><a name="INT_BAD_COMPARISON_WITH_NONNEGATIVE_VALUE">INT: Bad comparison of nonnegative value with negative constant (INT_BAD_COMPARISON_WITH_NONNEGATIVE_VALUE)</a></h3>
-
-
-<p> This code compares a value that is guaranteed to be non-negative with a negative constant.
-</p>
-
-    
-<h3><a name="INT_BAD_COMPARISON_WITH_SIGNED_BYTE">INT: Bad comparison of signed byte (INT_BAD_COMPARISON_WITH_SIGNED_BYTE)</a></h3>
-
-
-<p> Signed bytes can only have a value in the range -128 to 127. Comparing
-a signed byte with a value outside that range is vacuous and likely to be incorrect.
-To convert a signed byte <code>b</code> to an unsigned value in the range 0..255,
-use <code>0xff &amp; b</code>
-</p>
-
-    
-<h3><a name="IO_APPENDING_TO_OBJECT_OUTPUT_STREAM">IO: Doomed attempt to append to an object output stream (IO_APPENDING_TO_OBJECT_OUTPUT_STREAM)</a></h3>
-
-      
-      <p>
-     This code opens a file in append mode and then wraps the result in an object output stream.
-     This won't allow you to append to an existing object output stream stored in a file. If you want to be
-     able to append to an object output stream, you need to keep the object output stream open.
-      </p>
-      <p>The only situation in which opening a file in append mode and the writing an object output stream
-      could work is if on reading the file you plan to open it in random access mode and seek to the byte offset
-      where the append started.
-      </p>
-
-      <p>
-      TODO: example.
-      </p>
-      
-    
-<h3><a name="IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN">IP: A parameter is dead upon entry to a method but overwritten (IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN)</a></h3>
-
-
-<p>
-The initial value of this parameter is ignored, and the parameter
-is overwritten here. This often indicates a mistaken belief that
-the write to the parameter will be conveyed back to
-the caller.
-</p>
-
-    
-<h3><a name="MF_CLASS_MASKS_FIELD">MF: Class defines field that masks a superclass field (MF_CLASS_MASKS_FIELD)</a></h3>
-
-
-<p> This class defines a field with the same name as a visible
-instance field in a superclass.  This is confusing, and
-may indicate an error if methods update or access one of
-the fields when they wanted the other.</p>
-
-    
-<h3><a name="MF_METHOD_MASKS_FIELD">MF: Method defines a variable that obscures a field (MF_METHOD_MASKS_FIELD)</a></h3>
-
-
-<p> This method defines a local variable with the same name as a field
-in this class or a superclass.  This may cause the method to
-read an uninitialized value from the field, leave the field uninitialized,
-or both.</p>
-
-    
-<h3><a name="NP_ALWAYS_NULL">NP: Null pointer dereference (NP_ALWAYS_NULL)</a></h3>
-
-
-<p> A null pointer is dereferenced here.&nbsp; This will lead to a
-<code>NullPointerException</code> when the code is executed.</p>
-
-    
-<h3><a name="NP_ALWAYS_NULL_EXCEPTION">NP: Null pointer dereference in method on exception path (NP_ALWAYS_NULL_EXCEPTION)</a></h3>
-
-
-<p> A pointer which is null on an exception path is dereferenced here.&nbsp;
-This will lead to a <code>NullPointerException</code> when the code is executed.&nbsp;
-Note that because FindBugs currently does not prune infeasible exception paths,
-this may be a false warning.</p>
-
-<p> Also note that FindBugs considers the default case of a switch statement to
-be an exception path, since the default case is often infeasible.</p>
-
-    
-<h3><a name="NP_ARGUMENT_MIGHT_BE_NULL">NP: Method does not check for null argument (NP_ARGUMENT_MIGHT_BE_NULL)</a></h3>
-
-      
-      <p>
-    A parameter to this method has been identified as a value that should
-    always be checked to see whether or not it is null, but it is being dereferenced
-    without a preceding null check.
-      </p>
-      
-   
-<h3><a name="NP_CLOSING_NULL">NP: close() invoked on a value that is always null (NP_CLOSING_NULL)</a></h3>
-
-
-<p> close() is being invoked on a value that is always null. If this statement is executed,
-a null pointer exception will occur. But the big risk here you never close
-something that should be closed.
-
-    
-<h3><a name="NP_GUARANTEED_DEREF">NP: Null value is guaranteed to be dereferenced (NP_GUARANTEED_DEREF)</a></h3>
-
-          
-              <p>
-              There is a statement or branch that if executed guarantees that
-              a value is null at this point, and that
-              value that is guaranteed to be dereferenced
-              (except on forward paths involving runtime exceptions).
-              </p>
-        <p>Note that a check such as
-            <code>if (x == null) throw new NullPointerException();</code>
-            is treated as a dereference of <code>x</code>.
-          
-      
-<h3><a name="NP_GUARANTEED_DEREF_ON_EXCEPTION_PATH">NP: Value is null and guaranteed to be dereferenced on exception path (NP_GUARANTEED_DEREF_ON_EXCEPTION_PATH)</a></h3>
-
-          
-              <p>
-              There is a statement or branch on an exception path
-                that if executed guarantees that
-              a value is null at this point, and that
-              value that is guaranteed to be dereferenced
-              (except on forward paths involving runtime exceptions).
-              </p>
-          
-      
-<h3><a name="NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR">NP: Nonnull field is not initialized (NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR)</a></h3>
-
-       
-       <p> The field is marked as nonnull, but isn't written to by the constructor.
-    The field might be initialized elsewhere during constructor, or might always
-    be initialized before use.
-       </p>
-       
-       
-<h3><a name="NP_NONNULL_PARAM_VIOLATION">NP: Method call passes null to a nonnull parameter  (NP_NONNULL_PARAM_VIOLATION)</a></h3>
-
-      
-      <p>
-      This method passes a null value as the parameter of a method which
-    must be nonnull. Either this parameter has been explicitly marked
-    as @Nonnull, or analysis has determined that this parameter is
-    always dereferenced.
-      </p>
-      
-   
-<h3><a name="NP_NONNULL_RETURN_VIOLATION">NP: Method may return null, but is declared @NonNull (NP_NONNULL_RETURN_VIOLATION)</a></h3>
-
-      
-      <p>
-      This method may return a null value, but the method (or a superclass method
-      which it overrides) is declared to return @NonNull.
-      </p>
-      
-   
-<h3><a name="NP_NULL_INSTANCEOF">NP: A known null value is checked to see if it is an instance of a type (NP_NULL_INSTANCEOF)</a></h3>
-
-
-<p>
-This instanceof test will always return false, since the value being checked is guaranteed to be null.
-Although this is safe, make sure it isn't
-an indication of some misunderstanding or some other logic error.
-</p>
-
-    
-<h3><a name="NP_NULL_ON_SOME_PATH">NP: Possible null pointer dereference (NP_NULL_ON_SOME_PATH)</a></h3>
-
-
-<p> There is a branch of statement that, <em>if executed,</em>  guarantees that
-a null value will be dereferenced, which
-would generate a <code>NullPointerException</code> when the code is executed.
-Of course, the problem might be that the branch or statement is infeasible and that
-the null pointer exception can't ever be executed; deciding that is beyond the ability of FindBugs.
-</p>
-
-    
-<h3><a name="NP_NULL_ON_SOME_PATH_EXCEPTION">NP: Possible null pointer dereference in method on exception path (NP_NULL_ON_SOME_PATH_EXCEPTION)</a></h3>
-
-
-<p> A reference value which is null on some exception control path is
-dereferenced here.&nbsp; This may lead to a <code>NullPointerException</code>
-when the code is executed.&nbsp;
-Note that because FindBugs currently does not prune infeasible exception paths,
-this may be a false warning.</p>
-
-<p> Also note that FindBugs considers the default case of a switch statement to
-be an exception path, since the default case is often infeasible.</p>
-
-    
-<h3><a name="NP_NULL_PARAM_DEREF">NP: Method call passes null for nonnull parameter (NP_NULL_PARAM_DEREF)</a></h3>
-
-      
-      <p>
-      This method call passes a null value for a nonnull method parameter.
-    Either the parameter is annotated as a parameter that should
-    always be nonnull, or analysis has shown that it will always be
-    dereferenced.
-      </p>
-      
-   
-<h3><a name="NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS">NP: Method call passes null for nonnull parameter (NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS)</a></h3>
-
-      
-      <p>
-      A possibly-null value is passed at a call site where all known
-      target methods require the parameter to be nonnull.
-    Either the parameter is annotated as a parameter that should
-    always be nonnull, or analysis has shown that it will always be
-    dereferenced.
-      </p>
-      
-   
-<h3><a name="NP_NULL_PARAM_DEREF_NONVIRTUAL">NP: Non-virtual method call passes null for nonnull parameter (NP_NULL_PARAM_DEREF_NONVIRTUAL)</a></h3>
-
-      
-      <p>
-      A possibly-null value is passed to a nonnull method parameter.
-    Either the parameter is annotated as a parameter that should
-    always be nonnull, or analysis has shown that it will always be
-    dereferenced.
-      </p>
-      
-   
-<h3><a name="NP_STORE_INTO_NONNULL_FIELD">NP: Store of null value into field annotated NonNull (NP_STORE_INTO_NONNULL_FIELD)</a></h3>
-
-      
-<p> A value that could be null is stored into a field that has been annotated as NonNull. </p>
-
-    
-<h3><a name="NP_UNWRITTEN_FIELD">NP: Read of unwritten field (NP_UNWRITTEN_FIELD)</a></h3>
-
-
-  <p> The program is dereferencing a field that does not seem to ever have a non-null value written to it.
-Unless the field is initialized via some mechanism not seen by the analysis,
-dereferencing this value will generate a null pointer exception.
-</p>
-
-    
-<h3><a name="NM_BAD_EQUAL">Nm: Class defines equal(Object); should it be equals(Object)? (NM_BAD_EQUAL)</a></h3>
-
-
-<p> This class defines a method <code>equal(Object)</code>.&nbsp; This method does
-not override the <code>equals(Object)</code> method in <code>java.lang.Object</code>,
-which is probably what was intended.</p>
-
-    
-<h3><a name="NM_LCASE_HASHCODE">Nm: Class defines hashcode(); should it be hashCode()? (NM_LCASE_HASHCODE)</a></h3>
-
-
-  <p> This class defines a method called <code>hashcode()</code>.&nbsp; This method
-  does not override the <code>hashCode()</code> method in <code>java.lang.Object</code>,
-  which is probably what was intended.</p>
-
-    
-<h3><a name="NM_LCASE_TOSTRING">Nm: Class defines tostring(); should it be toString()? (NM_LCASE_TOSTRING)</a></h3>
-
-
-  <p> This class defines a method called <code>tostring()</code>.&nbsp; This method
-  does not override the <code>toString()</code> method in <code>java.lang.Object</code>,
-  which is probably what was intended.</p>
-
-    
-<h3><a name="NM_METHOD_CONSTRUCTOR_CONFUSION">Nm: Apparent method/constructor confusion (NM_METHOD_CONSTRUCTOR_CONFUSION)</a></h3>
-
-
-  <p> This regular method has the same name as the class it is defined in. It is likely that this was intended to be a constructor.
-      If it was intended to be a constructor, remove the declaration of a void return value.
-    If you had accidently defined this method, realized the mistake, defined a proper constructor
-    but can't get rid of this method due to backwards compatibility, deprecate the method.
-</p>
-
-    
-<h3><a name="NM_VERY_CONFUSING">Nm: Very confusing method names (NM_VERY_CONFUSING)</a></h3>
-
-
-  <p> The referenced methods have names that differ only by capitalization.
-This is very confusing because if the capitalization were
-identical then one of the methods would override the other.
-</p>
-
-    
-<h3><a name="NM_WRONG_PACKAGE">Nm: Method doesn't override method in superclass due to wrong package for parameter (NM_WRONG_PACKAGE)</a></h3>
-
-
-  <p> The method in the subclass doesn't override a similar method in a superclass because the type of a parameter doesn't exactly match
-the type of the corresponding parameter in the superclass. For example, if you have:</p>
-
-<blockquote>
-<pre>
-import alpha.Foo;
-public class A {
-  public int f(Foo x) { return 17; }
-}
-----
-import beta.Foo;
-public class B extends A {
-  public int f(Foo x) { return 42; }
-}
-</pre>
-</blockquote>
-
-<p>The <code>f(Foo)</code> method defined in class <code>B</code> doesn't
-override the
-<code>f(Foo)</code> method defined in class <code>A</code>, because the argument
-types are <code>Foo</code>'s from different packages.
-</p>
-
-    
-<h3><a name="QBA_QUESTIONABLE_BOOLEAN_ASSIGNMENT">QBA: Method assigns boolean literal in boolean expression (QBA_QUESTIONABLE_BOOLEAN_ASSIGNMENT)</a></h3>
-
-      
-      <p>
-      This method assigns a literal boolean value (true or false) to a boolean variable inside
-      an if or while expression. Most probably this was supposed to be a boolean comparison using
-      ==, not an assignment using =.
-      </p>
-      
-    
-<h3><a name="RC_REF_COMPARISON">RC: Suspicious reference comparison (RC_REF_COMPARISON)</a></h3>
-
-
-<p> This method compares two reference values using the == or != operator,
-where the correct way to compare instances of this type is generally
-with the equals() method.
-It is possible to create distinct instances that are equal but do not compare as == since
-they are different objects.
-Examples of classes which should generally
-not be compared by reference are java.lang.Integer, java.lang.Float, etc.</p>
-
-    
-<h3><a name="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE">RCN: Nullcheck of value previously dereferenced (RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE)</a></h3>
-
-
-<p> A value is checked here to see whether it is null, but this value can't
-be null because it was previously dereferenced and if it were null a null pointer
-exception would have occurred at the earlier dereference.
-Essentially, this code and the previous dereference
-disagree as to whether this value is allowed to be null. Either the check is redundant
-or the previous dereference is erroneous.</p>
-
-    
-<h3><a name="RE_BAD_SYNTAX_FOR_REGULAR_EXPRESSION">RE: Invalid syntax for regular expression (RE_BAD_SYNTAX_FOR_REGULAR_EXPRESSION)</a></h3>
-
-
-<p>
-The code here uses a regular expression that is invalid according to the syntax
-for regular expressions. This statement will throw a PatternSyntaxException when
-executed.
-</p>
-
-    
-<h3><a name="RE_CANT_USE_FILE_SEPARATOR_AS_REGULAR_EXPRESSION">RE: File.separator used for regular expression (RE_CANT_USE_FILE_SEPARATOR_AS_REGULAR_EXPRESSION)</a></h3>
-
-
-<p>
-The code here uses <code>File.separator</code>
-where a regular expression is required. This will fail on Windows
-platforms, where the <code>File.separator</code> is a backslash, which is interpreted in a
-regular expression as an escape character. Amoung other options, you can just use
-<code>File.separatorChar=='\\' ? "\\\\" : File.separator</code> instead of
-<code>File.separator</code>
-
-</p>
-
-    
-<h3><a name="RE_POSSIBLE_UNINTENDED_PATTERN">RE: "." or "|" used for regular expression (RE_POSSIBLE_UNINTENDED_PATTERN)</a></h3>
-
-
-<p>
-A String function is being invoked and "." or "|" is being passed
-to a parameter that takes a regular expression as an argument. Is this what you intended?
-For example
-<li>s.replaceAll(".", "/") will return a String in which <em>every</em> character has been replaced by a '/' character
-<li>s.split(".") <em>always</em> returns a zero length array of String
-<li>"ab|cd".replaceAll("|", "/") will return "/a/b/|/c/d/"
-<li>"ab|cd".split("|") will return array with six (!) elements: [, a, b, |, c, d]
-</p>
-
-    
-<h3><a name="RV_01_TO_INT">RV: Random value from 0 to 1 is coerced to the integer 0 (RV_01_TO_INT)</a></h3>
-
-
-  <p>A random value from 0 to 1 is being coerced to the integer value 0. You probably
-want to multiple the random value by something else before coercing it to an integer, or use the <code>Random.nextInt(n)</code> method.
-</p>
-
-    
-<h3><a name="RV_ABSOLUTE_VALUE_OF_HASHCODE">RV: Bad attempt to compute absolute value of signed 32-bit hashcode  (RV_ABSOLUTE_VALUE_OF_HASHCODE)</a></h3>
-
-
-<p> This code generates a hashcode and then computes
-the absolute value of that hashcode.  If the hashcode
-is <code>Integer.MIN_VALUE</code>, then the result will be negative as well (since
-<code>Math.abs(Integer.MIN_VALUE) == Integer.MIN_VALUE</code>).
-</p>
-<p>One out of 2^32 strings have a hashCode of Integer.MIN_VALUE,
-including "polygenelubricants" "GydZG_" and ""DESIGNING WORKHOUSES".
-</p>
-
-    
-<h3><a name="RV_ABSOLUTE_VALUE_OF_RANDOM_INT">RV: Bad attempt to compute absolute value of signed random integer (RV_ABSOLUTE_VALUE_OF_RANDOM_INT)</a></h3>
-
-
-<p> This code generates a random signed integer and then computes
-the absolute value of that random integer.  If the number returned by the random number
-generator is <code>Integer.MIN_VALUE</code>, then the result will be negative as well (since
-<code>Math.abs(Integer.MIN_VALUE) == Integer.MIN_VALUE</code>). (Same problem arised for long values as well).
-</p>
-
-    
-<h3><a name="RV_CHECK_COMPARETO_FOR_SPECIFIC_RETURN_VALUE">RV: Code checks for specific values returned by compareTo (RV_CHECK_COMPARETO_FOR_SPECIFIC_RETURN_VALUE)</a></h3>
-
-
-   <p> This code invoked a compareTo or compare method, and checks to see if the return value is a specific value,
-such as 1 or -1. When invoking these methods, you should only check the sign of the result, not for any specific
-non-zero value. While many or most compareTo and compare methods only return -1, 0 or 1, some of them
-will return other values.
-
-    
-<h3><a name="RV_EXCEPTION_NOT_THROWN">RV: Exception created and dropped rather than thrown (RV_EXCEPTION_NOT_THROWN)</a></h3>
-
-
-   <p> This code creates an exception (or error) object, but doesn't do anything with it. For example,
-something like </p>
-<blockquote>
-<pre>
-if (x &lt; 0)
-  new IllegalArgumentException("x must be nonnegative");
-</pre>
-</blockquote>
-<p>It was probably the intent of the programmer to throw the created exception:</p>
-<blockquote>
-<pre>
-if (x &lt; 0)
-  throw new IllegalArgumentException("x must be nonnegative");
-</pre>
-</blockquote>
-
-    
-<h3><a name="RV_RETURN_VALUE_IGNORED">RV: Method ignores return value (RV_RETURN_VALUE_IGNORED)</a></h3>
-
-
-   <p> The return value of this method should be checked. One common
-cause of this warning is to invoke a method on an immutable object,
-thinking that it updates the object. For example, in the following code
-fragment,</p>
-<blockquote>
-<pre>
-String dateString = getHeaderField(name);
-dateString.trim();
-</pre>
-</blockquote>
-<p>the programmer seems to be thinking that the trim() method will update
-the String referenced by dateString. But since Strings are immutable, the trim()
-function returns a new String value, which is being ignored here. The code
-should be corrected to: </p>
-<blockquote>
-<pre>
-String dateString = getHeaderField(name);
-dateString = dateString.trim();
-</pre>
-</blockquote>
-
-    
-<h3><a name="RpC_REPEATED_CONDITIONAL_TEST">RpC: Repeated conditional tests (RpC_REPEATED_CONDITIONAL_TEST)</a></h3>
-
-
-<p>The code contains a conditional test is performed twice, one right after the other
-(e.g., <code>x == 0 || x == 0</code>). Perhaps the second occurrence is intended to be something else
-(e.g., <code>x == 0 || y == 0</code>).
-</p>
-
-    
-<h3><a name="SA_FIELD_SELF_ASSIGNMENT">SA: Self assignment of field (SA_FIELD_SELF_ASSIGNMENT)</a></h3>
-
-
-<p> This method contains a self assignment of a field; e.g.
-</p>
-<pre>
-  int x;
-  public void foo() {
-    x = x;
-  }
-</pre>
-<p>Such assignments are useless, and may indicate a logic error or typo.</p>
-
-    
-<h3><a name="SA_FIELD_SELF_COMPARISON">SA: Self comparison of field with itself (SA_FIELD_SELF_COMPARISON)</a></h3>
-
-
-<p> This method compares a field with itself, and may indicate a typo or
-a logic error.  Make sure that you are comparing the right things.
-</p>
-
-    
-<h3><a name="SA_FIELD_SELF_COMPUTATION">SA: Nonsensical self computation involving a field (e.g., x & x) (SA_FIELD_SELF_COMPUTATION)</a></h3>
-
-
-<p> This method performs a nonsensical computation of a field with another
-reference to the same field (e.g., x&x or x-x). Because of the nature
-of the computation, this operation doesn't seem to make sense,
-and may indicate a typo or
-a logic error.  Double check the computation.
-</p>
-
-    
-<h3><a name="SA_LOCAL_SELF_ASSIGNMENT_INSTEAD_OF_FIELD">SA: Self assignment of local rather than assignment to field (SA_LOCAL_SELF_ASSIGNMENT_INSTEAD_OF_FIELD)</a></h3>
-
-
-<p> This method contains a self assignment of a local variable, and there
-is a field with an identical name.
-assignment appears to have been ; e.g.</p>
-<pre>
-  int foo;
-  public void setFoo(int foo) {
-    foo = foo;
-  }
-</pre>
-<p>The assignment is useless. Did you mean to assign to the field instead?</p>
-
-    
-<h3><a name="SA_LOCAL_SELF_COMPARISON">SA: Self comparison of value with itself (SA_LOCAL_SELF_COMPARISON)</a></h3>
-
-
-<p> This method compares a local variable with itself, and may indicate a typo or
-a logic error.  Make sure that you are comparing the right things.
-</p>
-
-    
-<h3><a name="SA_LOCAL_SELF_COMPUTATION">SA: Nonsensical self computation involving a variable (e.g., x & x) (SA_LOCAL_SELF_COMPUTATION)</a></h3>
-
-
-<p> This method performs a nonsensical computation of a local variable with another
-reference to the same variable (e.g., x&x or x-x). Because of the nature
-of the computation, this operation doesn't seem to make sense,
-and may indicate a typo or
-a logic error.  Double check the computation.
-</p>
-
-    
-<h3><a name="SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH">SF: Dead store due to switch statement fall through (SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH)</a></h3>
-
-
-  <p> A value stored in the previous switch case is overwritten here due to a switch fall through. It is likely that
-    you forgot to put a break or return at the end of the previous case.
-</p>
-
-    
-<h3><a name="SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH_TO_THROW">SF: Dead store due to switch statement fall through to throw (SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH_TO_THROW)</a></h3>
-
-
-  <p> A value stored in the previous switch case is ignored here due to a switch fall through to a place where
-    an exception is thrown. It is likely that
-    you forgot to put a break or return at the end of the previous case.
-</p>
-
-    
-<h3><a name="SIC_THREADLOCAL_DEADLY_EMBRACE">SIC: Deadly embrace of non-static inner class and thread local (SIC_THREADLOCAL_DEADLY_EMBRACE)</a></h3>
-
-
-  <p> This class is an inner class, but should probably be a static inner class.
-  As it is, there is a serious danger of a deadly embrace between the inner class
-  and the thread local in the outer class. Because the inner class isn't static,
-  it retains a reference to the outer class.
-  If the thread local contains a reference to an instance of the inner
-  class, the inner and outer instance will both be reachable
-  and not eligible for garbage collection.
-</p>
-
-    
-<h3><a name="SIO_SUPERFLUOUS_INSTANCEOF">SIO: Unnecessary type check done using instanceof operator (SIO_SUPERFLUOUS_INSTANCEOF)</a></h3>
-
-
-<p> Type check performed using the instanceof operator where it can be statically determined whether the object
-is of the type requested. </p>
-
-    
-<h3><a name="SQL_BAD_PREPARED_STATEMENT_ACCESS">SQL: Method attempts to access a prepared statement parameter with index 0 (SQL_BAD_PREPARED_STATEMENT_ACCESS)</a></h3>
-
-
-<p> A call to a setXXX method of a prepared statement was made where the
-parameter index is 0. As parameter indexes start at index 1, this is always a mistake.</p>
-
-    
-<h3><a name="SQL_BAD_RESULTSET_ACCESS">SQL: Method attempts to access a result set field with index 0 (SQL_BAD_RESULTSET_ACCESS)</a></h3>
-
-
-<p> A call to getXXX or updateXXX methods of a result set was made where the
-field index is 0. As ResultSet fields start at index 1, this is always a mistake.</p>
-
-    
-<h3><a name="STI_INTERRUPTED_ON_CURRENTTHREAD">STI: Unneeded use of currentThread() call, to call interrupted()  (STI_INTERRUPTED_ON_CURRENTTHREAD)</a></h3>
-
-
-<p>
-This method invokes the Thread.currentThread() call, just to call the interrupted() method. As interrupted() is a
-static method, is more simple and clear to use Thread.interrupted().
-</p>
-
-    
-<h3><a name="STI_INTERRUPTED_ON_UNKNOWNTHREAD">STI: Static Thread.interrupted() method invoked on thread instance (STI_INTERRUPTED_ON_UNKNOWNTHREAD)</a></h3>
-
-
-<p>
-This method invokes the Thread.interrupted() method on a Thread object that appears to be a Thread object that is
-not the current thread. As the interrupted() method is static, the interrupted method will be called on a different
-object than the one the author intended.
-</p>
-
-    
-<h3><a name="SE_METHOD_MUST_BE_PRIVATE">Se: Method must be private in order for serialization to work (SE_METHOD_MUST_BE_PRIVATE)</a></h3>
-
-
-  <p> This class implements the <code>Serializable</code> interface, and defines a method
-  for custom serialization/deserialization. But since that method isn't declared private,
-  it will be silently ignored by the serialization/deserialization API.</p>
-
-    
-<h3><a name="SE_READ_RESOLVE_IS_STATIC">Se: The readResolve method must not be declared as a static method.   (SE_READ_RESOLVE_IS_STATIC)</a></h3>
-
-
-  <p> In order for the readResolve method to be recognized by the serialization
-mechanism, it must not be declared as a static method.
-</p>
-
-    
-<h3><a name="TQ_ALWAYS_VALUE_USED_WHERE_NEVER_REQUIRED">TQ: Value annotated as carrying a type qualifier used where a value that must not carry that qualifier is required (TQ_ALWAYS_VALUE_USED_WHERE_NEVER_REQUIRED)</a></h3>
-
-      
-        <p>
-        A value specified as carrying a type qualifier annotation is
-        consumed in a location or locations requiring that the value not
-        carry that annotation.
-        </p>
-
-        <p>
-        More precisely, a value annotated with a type qualifier specifying when=ALWAYS
-        is guaranteed to reach a use or uses where the same type qualifier specifies when=NEVER.
-        </p>
-
-        <p>
-        For example, say that @NonNegative is a nickname for
-        the type qualifier annotation @Negative(when=When.NEVER).
-        The following code will generate this warning because
-        the return statement requires a @NonNegative value,
-        but receives one that is marked as @Negative.
-        </p>
-        <blockquote>
-<pre>
-public @NonNegative Integer example(@Negative Integer value) {
-    return value;
-}
-</pre>
-        </blockquote>
-      
-    
-<h3><a name="TQ_COMPARING_VALUES_WITH_INCOMPATIBLE_TYPE_QUALIFIERS">TQ: Comparing values with incompatible type qualifiers (TQ_COMPARING_VALUES_WITH_INCOMPATIBLE_TYPE_QUALIFIERS)</a></h3>
-
-      
-        <p>
-        A value specified as carrying a type qualifier annotation is
-        compared with a value that doesn't ever carry that qualifier.
-        </p>
-
-        <p>
-        More precisely, a value annotated with a type qualifier specifying when=ALWAYS
-        is compared with a value that where the same type qualifier specifies when=NEVER.
-        </p>
-
-        <p>
-        For example, say that @NonNegative is a nickname for
-        the type qualifier annotation @Negative(when=When.NEVER).
-        The following code will generate this warning because
-        the return statement requires a @NonNegative value,
-        but receives one that is marked as @Negative.
-        </p>
-        <blockquote>
-<pre>
-public boolean example(@Negative Integer value1, @NonNegative Integer value2) {
-    return value1.equals(value2);
-}
-</pre>
-        </blockquote>
-      
-    
-<h3><a name="TQ_MAYBE_SOURCE_VALUE_REACHES_ALWAYS_SINK">TQ: Value that might not carry a type qualifier is always used in a way requires that type qualifier (TQ_MAYBE_SOURCE_VALUE_REACHES_ALWAYS_SINK)</a></h3>
-
-      
-      <p>
-      A value that is annotated as possibility not being an instance of
-    the values denoted by the type qualifier, and the value is guaranteed to be used
-    in a way that requires values denoted by that type qualifier.
-      </p>
-      
-    
-<h3><a name="TQ_MAYBE_SOURCE_VALUE_REACHES_NEVER_SINK">TQ: Value that might carry a type qualifier is always used in a way prohibits it from having that type qualifier (TQ_MAYBE_SOURCE_VALUE_REACHES_NEVER_SINK)</a></h3>
-
-      
-      <p>
-      A value that is annotated as possibility being an instance of
-    the values denoted by the type qualifier, and the value is guaranteed to be used
-    in a way that prohibits values denoted by that type qualifier.
-      </p>
-      
-    
-<h3><a name="TQ_NEVER_VALUE_USED_WHERE_ALWAYS_REQUIRED">TQ: Value annotated as never carrying a type qualifier used where value carrying that qualifier is required (TQ_NEVER_VALUE_USED_WHERE_ALWAYS_REQUIRED)</a></h3>
-
-      
-        <p>
-        A value specified as not carrying a type qualifier annotation is guaranteed
-        to be consumed in a location or locations requiring that the value does
-        carry that annotation.
-        </p>
-
-        <p>
-        More precisely, a value annotated with a type qualifier specifying when=NEVER
-        is guaranteed to reach a use or uses where the same type qualifier specifies when=ALWAYS.
-        </p>
-
-        <p>
-        TODO: example
-        </p>
-      
-    
-<h3><a name="TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED">TQ: Value without a type qualifier used where a value is required to have that qualifier (TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED)</a></h3>
-
-      
-        <p>
-        A value is being used in a way that requires the value be annotation with a type qualifier.
-    The type qualifier is strict, so the tool rejects any values that do not have
-    the appropriate annotation.
-        </p>
-
-        <p>
-        To coerce a value to have a strict annotation, define an identity function where the return value is annotated
-    with the strict annotation.
-    This is the only way to turn a non-annotated value into a value with a strict type qualifier annotation.
-        </p>
-
-      
-    
-<h3><a name="UMAC_UNCALLABLE_METHOD_OF_ANONYMOUS_CLASS">UMAC: Uncallable method defined in anonymous class (UMAC_UNCALLABLE_METHOD_OF_ANONYMOUS_CLASS)</a></h3>
-
-
-<p> This anonymous class defined a method that is not directly invoked and does not override
-a method in a superclass. Since methods in other classes cannot directly invoke methods
-declared in an anonymous class, it seems that this method is uncallable. The method
-might simply be dead code, but it is also possible that the method is intended to
-override a method declared in a superclass, and due to an typo or other error the method does not,
-in fact, override the method it is intended to.
-</p>
-
-
-<h3><a name="UR_UNINIT_READ">UR: Uninitialized read of field in constructor (UR_UNINIT_READ)</a></h3>
-
-
-  <p> This constructor reads a field which has not yet been assigned a value.&nbsp;
-  This is often caused when the programmer mistakenly uses the field instead
-  of one of the constructor's parameters.</p>
-
-    
-<h3><a name="UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR">UR: Uninitialized read of field method called from constructor of superclass (UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR)</a></h3>
-
-
-  <p> This method is invoked in the constructor of of the superclass. At this point,
-    the fields of the class have not yet initialized.</p>
-<p>To make this more concrete, consider the following classes:</p>
-<pre>abstract class A {
-  int hashCode;
-  abstract Object getValue();
-  A() {
-    hashCode = getValue().hashCode();
-    }
-  }
-class B extends A {
-  Object value;
-  B(Object v) {
-    this.value = v;
-    }
-  Object getValue() {
-    return value;
-  }
-  }</pre>
-<p>When a <code>B</code> is constructed,
-the constructor for the <code>A</code> class is invoked
-<em>before</em> the constructor for <code>B</code> sets <code>value</code>.
-Thus, when the constructor for <code>A</code> invokes <code>getValue</code>,
-an uninitialized value is read for <code>value</code>
-</p>
-
-    
-<h3><a name="DMI_INVOKING_TOSTRING_ON_ANONYMOUS_ARRAY">USELESS_STRING: Invocation of toString on an unnamed array (DMI_INVOKING_TOSTRING_ON_ANONYMOUS_ARRAY)</a></h3>
-
-
-<p>
-The code invokes toString on an (anonymous) array.  Calling toString on an array generates a fairly useless result
-such as [C@16f0472. Consider using Arrays.toString to convert the array into a readable
-String that gives the contents of the array. See Programming Puzzlers, chapter 3, puzzle 12.
-</p>
-
-    
-<h3><a name="DMI_INVOKING_TOSTRING_ON_ARRAY">USELESS_STRING: Invocation of toString on an array (DMI_INVOKING_TOSTRING_ON_ARRAY)</a></h3>
-
-
-<p>
-The code invokes toString on an array, which will generate a fairly useless result
-such as [C@16f0472. Consider using Arrays.toString to convert the array into a readable
-String that gives the contents of the array. See Programming Puzzlers, chapter 3, puzzle 12.
-</p>
-
-    
-<h3><a name="VA_FORMAT_STRING_BAD_CONVERSION_FROM_ARRAY">USELESS_STRING: Array formatted in useless way using format string (VA_FORMAT_STRING_BAD_CONVERSION_FROM_ARRAY)</a></h3>
-
-
-<p>
-One of the arguments being formatted with a format string is an array. This will be formatted
-using a fairly useless format, such as [I@304282, which doesn't actually show the contents
-of the array.
-Consider wrapping the array using <code>Arrays.asList(...)</code> before handling it off to a formatted.
-</p>
-
-     
-<h3><a name="UWF_NULL_FIELD">UwF: Field only ever set to null (UWF_NULL_FIELD)</a></h3>
-
-
-  <p> All writes to this field are of the constant value null, and thus
-all reads of the field will return null.
-Check for errors, or remove it if it is useless.</p>
-
-    
-<h3><a name="UWF_UNWRITTEN_FIELD">UwF: Unwritten field (UWF_UNWRITTEN_FIELD)</a></h3>
-
-
-  <p> This field is never written.&nbsp; All reads of it will return the default
-value. Check for errors (should it have been initialized?), or remove it if it is useless.</p>
-
-    
-<h3><a name="VA_PRIMITIVE_ARRAY_PASSED_TO_OBJECT_VARARG">VA: Primitive array passed to function expecting a variable number of object arguments (VA_PRIMITIVE_ARRAY_PASSED_TO_OBJECT_VARARG)</a></h3>
-
-
-<p>
-This code passes a primitive array to a function that takes a variable number of object arguments.
-This creates an array of length one to hold the primitive array and passes it to the function.
-</p>
-
-    
-<h3><a name="VR_UNRESOLVABLE_REFERENCE">VR: Class makes reference to unresolvable class or method (VR_UNRESOLVABLE_REFERENCE)</a></h3>
-
-      
-      <p>
-      This class makes a reference to a class or method that can not be
-    resolved using against the libraries it is being analyzed with.
-      </p>
-      
-    
-<h3><a name="LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE">LG: Potential lost logger changes due to weak reference in OpenJDK (LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE)</a></h3>
-
-          
-<p>OpenJDK introduces a potential incompatibility.
- In particular, the java.util.logging.Logger behavior has
-  changed. Instead of using strong references, it now uses weak references
-  internally. That's a reasonable change, but unfortunately some code relies on
-  the old behavior - when changing logger configuration, it simply drops the
-  logger reference. That means that the garbage collector is free to reclaim
-  that memory, which means that the logger configuration is lost. For example,
-consider:
-</p>
-
-<pre>public static void initLogging() throws Exception {
- Logger logger = Logger.getLogger("edu.umd.cs");
- logger.addHandler(new FileHandler()); // call to change logger configuration
- logger.setUseParentHandlers(false); // another call to change logger configuration
-}</pre>
-
-<p>The logger reference is lost at the end of the method (it doesn't
-escape the method), so if you have a garbage collection cycle just
-after the call to initLogging, the logger configuration is lost
-(because Logger only keeps weak references).</p>
-
-<pre>public static void main(String[] args) throws Exception {
- initLogging(); // adds a file handler to the logger
- System.gc(); // logger configuration lost
- Logger.getLogger("edu.umd.cs").info("Some message"); // this isn't logged to the file as expected
-}</pre>
-<p><em>Ulf Ochsenfahrt and Eric Fellheimer</em></p>
-          
-      
-<h3><a name="OBL_UNSATISFIED_OBLIGATION">OBL: Method may fail to clean up stream or resource (OBL_UNSATISFIED_OBLIGATION)</a></h3>
-
-          
-          <p>
-          This method may fail to clean up (close, dispose of) a stream,
-          database object, or other
-          resource requiring an explicit cleanup operation.
-          </p>
-
-          <p>
-          In general, if a method opens a stream or other resource,
-          the method should use a try/finally block to ensure that
-          the stream or resource is cleaned up before the method
-          returns.
-          </p>
-
-          <p>
-          This bug pattern is essentially the same as the
-          OS_OPEN_STREAM and ODR_OPEN_DATABASE_RESOURCE
-          bug patterns, but is based on a different
-          (and hopefully better) static analysis technique.
-          We are interested is getting feedback about the
-          usefulness of this bug pattern.
-          To send feedback, either:
-          </p>
-          <ul>
-            <li>send email to findbugs@cs.umd.edu</li>
-            <li>file a bug report: <a href="http://findbugs.sourceforge.net/reportingBugs.html">http://findbugs.sourceforge.net/reportingBugs.html</a></li>
-          </ul>
-
-          <p>
-          In particular,
-          the false-positive suppression heuristics for this
-          bug pattern have not been extensively tuned, so
-          reports about false positives are helpful to us.
-          </p>
-
-          <p>
-          See Weimer and Necula, <i>Finding and Preventing Run-Time Error Handling Mistakes</i>, for
-          a description of the analysis technique.
-          </p>
-          
-      
-<h3><a name="OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE">OBL: Method may fail to clean up stream or resource on checked exception (OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE)</a></h3>
-
-          
-          <p>
-          This method may fail to clean up (close, dispose of) a stream,
-          database object, or other
-          resource requiring an explicit cleanup operation.
-          </p>
-
-          <p>
-          In general, if a method opens a stream or other resource,
-          the method should use a try/finally block to ensure that
-          the stream or resource is cleaned up before the method
-          returns.
-          </p>
-
-          <p>
-          This bug pattern is essentially the same as the
-          OS_OPEN_STREAM and ODR_OPEN_DATABASE_RESOURCE
-          bug patterns, but is based on a different
-          (and hopefully better) static analysis technique.
-          We are interested is getting feedback about the
-          usefulness of this bug pattern.
-          To send feedback, either:
-          </p>
-          <ul>
-            <li>send email to findbugs@cs.umd.edu</li>
-            <li>file a bug report: <a href="http://findbugs.sourceforge.net/reportingBugs.html">http://findbugs.sourceforge.net/reportingBugs.html</a></li>
-          </ul>
-
-          <p>
-          In particular,
-          the false-positive suppression heuristics for this
-          bug pattern have not been extensively tuned, so
-          reports about false positives are helpful to us.
-          </p>
-
-          <p>
-          See Weimer and Necula, <i>Finding and Preventing Run-Time Error Handling Mistakes</i>, for
-          a description of the analysis technique.
-          </p>
-          
-      
-<h3><a name="TESTING">TEST: Testing (TESTING)</a></h3>
-
-
-<p>This bug pattern is only generated by new, incompletely implemented
-bug detectors.</p>
-
-    
-<h3><a name="DM_CONVERT_CASE">Dm: Consider using Locale parameterized version of invoked method (DM_CONVERT_CASE)</a></h3>
-
-
-  <p> A String is being converted to upper or lowercase, using the platform's default encoding. This may
-      result in improper conversions when used with international characters. Use the </p>
-      <ul>
-    <li>String.toUpperCase( Locale l )</li>
-    <li>String.toLowerCase( Locale l )</li>
-    </ul>
-      <p>versions instead.</p>
-
-    
-<h3><a name="DM_DEFAULT_ENCODING">Dm: Reliance on default encoding (DM_DEFAULT_ENCODING)</a></h3>
-
-
-<p> Found a call to a method which will perform a byte to String (or String to byte) conversion, and will assume that the default platform encoding is suitable. This will cause the application behaviour to vary between platforms. Use an alternative API and specify a charset name or Charset object explicitly.  </p>
-
-      
-<h3><a name="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED">DP: Classloaders should only be created inside doPrivileged block (DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED)</a></h3>
-
-
-  <p> This code creates a classloader,  which needs permission if a security manage is installed.
-  If this code might be invoked by code that does not
-  have security permissions, then the classloader creation needs to occur inside a doPrivileged block.</p>
-
-    
-<h3><a name="DP_DO_INSIDE_DO_PRIVILEGED">DP: Method invoked that should be only be invoked inside a doPrivileged block (DP_DO_INSIDE_DO_PRIVILEGED)</a></h3>
-
-
-  <p> This code invokes a method that requires a security permission check.
-  If this code will be granted security permissions, but might be invoked by code that does not
-  have security permissions, then the invocation needs to occur inside a doPrivileged block.</p>
-
-    
-<h3><a name="EI_EXPOSE_REP">EI: May expose internal representation by returning reference to mutable object (EI_EXPOSE_REP)</a></h3>
-
-
-  <p> Returning a reference to a mutable object value stored in one of the object's fields
-  exposes the internal representation of the object.&nbsp;
-   If instances
-   are accessed by untrusted code, and unchecked changes to
-   the mutable object would compromise security or other
-   important properties, you will need to do something different.
-  Returning a new copy of the object is better approach in many situations.</p>
-
-    
-<h3><a name="EI_EXPOSE_REP2">EI2: May expose internal representation by incorporating reference to mutable object (EI_EXPOSE_REP2)</a></h3>
-
-
-  <p> This code stores a reference to an externally mutable object into the
-  internal representation of the object.&nbsp;
-   If instances
-   are accessed by untrusted code, and unchecked changes to
-   the mutable object would compromise security or other
-   important properties, you will need to do something different.
-  Storing a copy of the object is better approach in many situations.</p>
-
-    
-<h3><a name="FI_PUBLIC_SHOULD_BE_PROTECTED">FI: Finalizer should be protected, not public (FI_PUBLIC_SHOULD_BE_PROTECTED)</a></h3>
-
-
-  <p> A class's <code>finalize()</code> method should have protected access,
-   not public.</p>
-
-    
-<h3><a name="EI_EXPOSE_STATIC_REP2">MS: May expose internal static state by storing a mutable object into a static field (EI_EXPOSE_STATIC_REP2)</a></h3>
-
-
-  <p> This code stores a reference to an externally mutable object into a static
-   field.
-   If unchecked changes to
-   the mutable object would compromise security or other
-   important properties, you will need to do something different.
-  Storing a copy of the object is better approach in many situations.</p>
-
-    
-<h3><a name="MS_CANNOT_BE_FINAL">MS: Field isn't final and can't be protected from malicious code (MS_CANNOT_BE_FINAL)</a></h3>
-
-
-  <p>
- A mutable static field could be changed by malicious code or
-        by accident from another package.
-   Unfortunately, the way the field is used doesn't allow
-   any easy fix to this problem.</p>
-
-    
-<h3><a name="MS_EXPOSE_REP">MS: Public static method may expose internal representation by returning array (MS_EXPOSE_REP)</a></h3>
-
-
-  <p> A public static method returns a reference to
-   an array that is part of the static state of the class.
-   Any code that calls this method can freely modify
-   the underlying array.
-   One fix is to return a copy of the array.</p>
-
-    
-<h3><a name="MS_FINAL_PKGPROTECT">MS: Field should be both final and package protected (MS_FINAL_PKGPROTECT)</a></h3>
-
-
- <p>
-   A mutable static field could be changed by malicious code or
-        by accident from another package.
-        The field could be made package protected and/or made final
-   to avoid
-        this vulnerability.</p>
-
-    
-<h3><a name="MS_MUTABLE_ARRAY">MS: Field is a mutable array (MS_MUTABLE_ARRAY)</a></h3>
-
-
-<p> A final static field references an array
-   and can be accessed by malicious code or
-        by accident from another package.
-   This code can freely modify the contents of the array.</p>
-
-    
-<h3><a name="MS_MUTABLE_HASHTABLE">MS: Field is a mutable Hashtable (MS_MUTABLE_HASHTABLE)</a></h3>
-
-
- <p>A final static field references a Hashtable
-   and can be accessed by malicious code or
-        by accident from another package.
-   This code can freely modify the contents of the Hashtable.</p>
-
-    
-<h3><a name="MS_OOI_PKGPROTECT">MS: Field should be moved out of an interface and made package protected (MS_OOI_PKGPROTECT)</a></h3>
-
-
-<p>
- A final static field that is
-defined in an interface references a mutable
-   object such as an array or hashtable.
-   This mutable object could
-   be changed by malicious code or
-        by accident from another package.
-   To solve this, the field needs to be moved to a class
-   and made package protected
-   to avoid
-        this vulnerability.</p>
-
-    
-<h3><a name="MS_PKGPROTECT">MS: Field should be package protected (MS_PKGPROTECT)</a></h3>
-
-
-  <p> A mutable static field could be changed by malicious code or
-   by accident.
-   The field could be made package protected to avoid
-   this vulnerability.</p>
-
-    
-<h3><a name="MS_SHOULD_BE_FINAL">MS: Field isn't final but should be (MS_SHOULD_BE_FINAL)</a></h3>
-
-
-   <p>
-This static field public but not final, and
-could be changed by malicious code or
-        by accident from another package.
-        The field could be made final to avoid
-        this vulnerability.</p>
-
-    
-<h3><a name="MS_SHOULD_BE_REFACTORED_TO_BE_FINAL">MS: Field isn't final but should be refactored to be so (MS_SHOULD_BE_REFACTORED_TO_BE_FINAL)</a></h3>
-
-
-   <p>
-This static field public but not final, and
-could be changed by malicious code or
-by accident from another package.
-The field could be made final to avoid
-this vulnerability. However, the static initializer contains more than one write
-to the field, so doing so will require some refactoring.
-</p>
-
-    
-<h3><a name="AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION">AT: Sequence of calls to concurrent abstraction may not be atomic (AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION)</a></h3>
-
-          
-        <p>This code contains a sequence of calls to a concurrent  abstraction
-            (such as a concurrent hash map).
-            These calls will not be executed atomically.
-          
-      
-<h3><a name="DC_DOUBLECHECK">DC: Possible double check of field (DC_DOUBLECHECK)</a></h3>
-
-
-  <p> This method may contain an instance of double-checked locking.&nbsp;
-  This idiom is not correct according to the semantics of the Java memory
-  model.&nbsp; For more information, see the web page
-  <a href="http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html"
-  >http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html</a>.</p>
-
-    
-<h3><a name="DL_SYNCHRONIZATION_ON_BOOLEAN">DL: Synchronization on Boolean (DL_SYNCHRONIZATION_ON_BOOLEAN)</a></h3>
-
-      
-  <p> The code synchronizes on a boxed primitive constant, such as an Boolean.</p>
-<pre>
-private static Boolean inited = Boolean.FALSE;
-...
-  synchronized(inited) {
-    if (!inited) {
-       init();
-       inited = Boolean.TRUE;
-       }
-     }
-...
-</pre>
-<p>Since there normally exist only two Boolean objects, this code could be synchronizing on the same object as other, unrelated code, leading to unresponsiveness
-and possible deadlock</p>
-<p>See CERT <a href="https://www.securecoding.cert.org/confluence/display/java/CON08-J.+Do+not+synchronize+on+objects+that+may+be+reused">CON08-J. Do not synchronize on objects that may be reused</a> for more information.</p>
-
-    
-<h3><a name="DL_SYNCHRONIZATION_ON_BOXED_PRIMITIVE">DL: Synchronization on boxed primitive (DL_SYNCHRONIZATION_ON_BOXED_PRIMITIVE)</a></h3>
-
-      
-  <p> The code synchronizes on a boxed primitive constant, such as an Integer.</p>
-<pre>
-private static Integer count = 0;
-...
-  synchronized(count) {
-     count++;
-     }
-...
-</pre>
-<p>Since Integer objects can be cached and shared,
-this code could be synchronizing on the same object as other, unrelated code, leading to unresponsiveness
-and possible deadlock</p>
-<p>See CERT <a href="https://www.securecoding.cert.org/confluence/display/java/CON08-J.+Do+not+synchronize+on+objects+that+may+be+reused">CON08-J. Do not synchronize on objects that may be reused</a> for more information.</p>
-
-    
-<h3><a name="DL_SYNCHRONIZATION_ON_SHARED_CONSTANT">DL: Synchronization on interned String  (DL_SYNCHRONIZATION_ON_SHARED_CONSTANT)</a></h3>
-
-
-  <p> The code synchronizes on interned String.</p>
-<pre>
-private static String LOCK = "LOCK";
-...
-  synchronized(LOCK) { ...}
-...
-</pre>
-<p>Constant Strings are interned and shared across all other classes loaded by the JVM. Thus, this could
-is locking on something that other code might also be locking. This could result in very strange and hard to diagnose
-blocking and deadlock behavior. See <a href="http://www.javalobby.org/java/forums/t96352.html">http://www.javalobby.org/java/forums/t96352.html</a> and <a href="http://jira.codehaus.org/browse/JETTY-352">http://jira.codehaus.org/browse/JETTY-352</a>.
-</p>
-<p>See CERT <a href="https://www.securecoding.cert.org/confluence/display/java/CON08-J.+Do+not+synchronize+on+objects+that+may+be+reused">CON08-J. Do not synchronize on objects that may be reused</a> for more information.</p>
-
-    
-<h3><a name="DL_SYNCHRONIZATION_ON_UNSHARED_BOXED_PRIMITIVE">DL: Synchronization on boxed primitive values (DL_SYNCHRONIZATION_ON_UNSHARED_BOXED_PRIMITIVE)</a></h3>
-
-      
-  <p> The code synchronizes on an apparently unshared boxed primitive,
-such as an Integer.</p>
-<pre>
-private static final Integer fileLock = new Integer(1);
-...
-  synchronized(fileLock) {
-     .. do something ..
-     }
-...
-</pre>
-<p>It would be much better, in this code, to redeclare fileLock as</p>
-<pre>
-private static final Object fileLock = new Object();
-</pre>
-<p>
-The existing code might be OK, but it is confusing and a
-future refactoring, such as the "Remove Boxing" refactoring in IntelliJ,
-might replace this with the use of an interned Integer object shared
-throughout the JVM, leading to very confusing behavior and potential deadlock.
-</p>
-
-    
-<h3><a name="DM_MONITOR_WAIT_ON_CONDITION">Dm: Monitor wait() called on Condition (DM_MONITOR_WAIT_ON_CONDITION)</a></h3>
-
-      
-      <p>
-      This method calls <code>wait()</code> on a
-      <code>java.util.concurrent.locks.Condition</code> object.&nbsp;
-      Waiting for a <code>Condition</code> should be done using one of the <code>await()</code>
-      methods defined by the <code>Condition</code> interface.
-      </p>
-      
-   
-<h3><a name="DM_USELESS_THREAD">Dm: A thread was created using the default empty run method (DM_USELESS_THREAD)</a></h3>
-
-
-  <p>This method creates a thread without specifying a run method either by deriving from the Thread class, or
-  by passing a Runnable object. This thread, then, does nothing but waste time.
-</p>
-
-    
-<h3><a name="ESync_EMPTY_SYNC">ESync: Empty synchronized block (ESync_EMPTY_SYNC)</a></h3>
-
-
-  <p> The code contains an empty synchronized block:</p>
-<pre>
-synchronized() {}
-</pre>
-<p>Empty synchronized blocks are far more subtle and hard to use correctly
-than most people recognize, and empty synchronized blocks
-are almost never a better solution
-than less contrived solutions.
-</p>
-
-    
-<h3><a name="IS2_INCONSISTENT_SYNC">IS: Inconsistent synchronization (IS2_INCONSISTENT_SYNC)</a></h3>
-
-
-  <p> The fields of this class appear to be accessed inconsistently with respect
-  to synchronization.&nbsp; This bug report indicates that the bug pattern detector
-  judged that
-  </p>
-  <ul>
-  <li> The class contains a mix of locked and unlocked accesses,</li>
-  <li> The class is <b>not</b> annotated as javax.annotation.concurrent.NotThreadSafe,</li>
-  <li> At least one locked access was performed by one of the class's own methods, and</li>
-  <li> The number of unsynchronized field accesses (reads and writes) was no more than
-       one third of all accesses, with writes being weighed twice as high as reads</li>
-  </ul>
-
-  <p> A typical bug matching this bug pattern is forgetting to synchronize
-  one of the methods in a class that is intended to be thread-safe.</p>
-
-  <p> You can select the nodes labeled "Unsynchronized access" to show the
-  code locations where the detector believed that a field was accessed
-  without synchronization.</p>
-
-  <p> Note that there are various sources of inaccuracy in this detector;
-  for example, the detector cannot statically detect all situations in which
-  a lock is held.&nbsp; Also, even when the detector is accurate in
-  distinguishing locked vs. unlocked accesses, the code in question may still
-  be correct.</p>
-
-
-    
-<h3><a name="IS_FIELD_NOT_GUARDED">IS: Field not guarded against concurrent access (IS_FIELD_NOT_GUARDED)</a></h3>
-
-
-  <p> This field is annotated with net.jcip.annotations.GuardedBy or javax.annotation.concurrent.GuardedBy,
-but can be accessed in a way that seems to violate those annotations.</p>
-
-
-<h3><a name="JLM_JSR166_LOCK_MONITORENTER">JLM: Synchronization performed on Lock (JLM_JSR166_LOCK_MONITORENTER)</a></h3>
-
-
-<p> This method performs synchronization an object that implements
-java.util.concurrent.locks.Lock. Such an object is locked/unlocked
-using
-<code>acquire()</code>/<code>release()</code> rather
-than using the <code>synchronized (...)</code> construct.
-</p>
-
-
-<h3><a name="JLM_JSR166_UTILCONCURRENT_MONITORENTER">JLM: Synchronization performed on util.concurrent instance (JLM_JSR166_UTILCONCURRENT_MONITORENTER)</a></h3>
-
-
-<p> This method performs synchronization an object that is an instance of
-a class from the java.util.concurrent package (or its subclasses). Instances
-of these classes have their own concurrency control mechanisms that are orthogonal to
-the synchronization provided by the Java keyword <code>synchronized</code>. For example,
-synchronizing on an <code>AtomicBoolean</code> will not prevent other threads
-from modifying the  <code>AtomicBoolean</code>.</p>
-<p>Such code may be correct, but should be carefully reviewed and documented,
-and may confuse people who have to maintain the code at a later date.
-</p>
-
-
-<h3><a name="JML_JSR166_CALLING_WAIT_RATHER_THAN_AWAIT">JLM: Using monitor style wait methods on util.concurrent abstraction (JML_JSR166_CALLING_WAIT_RATHER_THAN_AWAIT)</a></h3>
-
-
-<p> This method calls
-<code>wait()</code>,
-<code>notify()</code> or
-<code>notifyAll()()</code>
-on an object that also provides an
-<code>await()</code>,
-<code>signal()</code>,
-<code>signalAll()</code> method (such as util.concurrent Condition objects).
-This probably isn't what you want, and even if you do want it, you should consider changing
-your design, as other developers will find it exceptionally confusing.
-</p>
-
-
-<h3><a name="LI_LAZY_INIT_STATIC">LI: Incorrect lazy initialization of static field (LI_LAZY_INIT_STATIC)</a></h3>
-
-
-<p> This method contains an unsynchronized lazy initialization of a non-volatile static field.
-Because the compiler or processor may reorder instructions,
-threads are not guaranteed to see a completely initialized object,
-<em>if the method can be called by multiple threads</em>.
-You can make the field volatile to correct the problem.
-For more information, see the
-<a href="http://www.cs.umd.edu/~pugh/java/memoryModel/">Java Memory Model web site</a>.
-</p>
-
-    
-<h3><a name="LI_LAZY_INIT_UPDATE_STATIC">LI: Incorrect lazy initialization and update of static field (LI_LAZY_INIT_UPDATE_STATIC)</a></h3>
-
-
-<p> This method contains an unsynchronized lazy initialization of a static field.
-After the field is set, the object stored into that location is further updated or accessed.
-The setting of the field is visible to other threads as soon as it is set. If the
-futher accesses in the method that set the field serve to initialize the object, then
-you have a <em>very serious</em> multithreading bug, unless something else prevents
-any other thread from accessing the stored object until it is fully initialized.
-</p>
-<p>Even if you feel confident that the method is never called by multiple
-threads, it might be better to not set the static field until the value
-you are setting it to is fully populated/initialized.
-
-    
-<h3><a name="ML_SYNC_ON_FIELD_TO_GUARD_CHANGING_THAT_FIELD">ML: Synchronization on field in futile attempt to guard that field (ML_SYNC_ON_FIELD_TO_GUARD_CHANGING_THAT_FIELD)</a></h3>
-
-
-  <p> This method synchronizes on a field in what appears to be an attempt
-to guard against simultaneous updates to that field. But guarding a field
-gets a lock on the referenced object, not on the field. This may not
-provide the mutual exclusion you need, and other threads might
-be obtaining locks on the referenced objects (for other purposes). An example
-of this pattern would be:</p>
-<pre>
-private Long myNtfSeqNbrCounter = new Long(0);
-private Long getNotificationSequenceNumber() {
-     Long result = null;
-     synchronized(myNtfSeqNbrCounter) {
-         result = new Long(myNtfSeqNbrCounter.longValue() + 1);
-         myNtfSeqNbrCounter = new Long(result.longValue());
-     }
-     return result;
- }
-</pre>
-
-    
-<h3><a name="ML_SYNC_ON_UPDATED_FIELD">ML: Method synchronizes on an updated field (ML_SYNC_ON_UPDATED_FIELD)</a></h3>
-
-
-  <p> This method synchronizes on an object
-   referenced from a mutable field.
-   This is unlikely to have useful semantics, since different
-threads may be synchronizing on different objects.</p>
-
-    
-<h3><a name="MSF_MUTABLE_SERVLET_FIELD">MSF: Mutable servlet field (MSF_MUTABLE_SERVLET_FIELD)</a></h3>
-
-
-<p>A web server generally only creates one instance of servlet or jsp class (i.e., treats
-the class as a Singleton),
-and will
-have multiple threads invoke methods on that instance to service multiple
-simultaneous requests.
-Thus, having a mutable instance field generally creates race conditions.
-
-    
-<h3><a name="MWN_MISMATCHED_NOTIFY">MWN: Mismatched notify() (MWN_MISMATCHED_NOTIFY)</a></h3>
-
-
-<p> This method calls Object.notify() or Object.notifyAll() without obviously holding a lock
-on the object.&nbsp;  Calling notify() or notifyAll() without a lock held will result in
-an <code>IllegalMonitorStateException</code> being thrown.</p>
-
-    
-<h3><a name="MWN_MISMATCHED_WAIT">MWN: Mismatched wait() (MWN_MISMATCHED_WAIT)</a></h3>
-
-
-<p> This method calls Object.wait() without obviously holding a lock
-on the object.&nbsp;  Calling wait() without a lock held will result in
-an <code>IllegalMonitorStateException</code> being thrown.</p>
-
-    
-<h3><a name="NN_NAKED_NOTIFY">NN: Naked notify (NN_NAKED_NOTIFY)</a></h3>
-
-
-  <p> A call to <code>notify()</code> or <code>notifyAll()</code>
-  was made without any (apparent) accompanying
-  modification to mutable object state.&nbsp; In general, calling a notify
-  method on a monitor is done because some condition another thread is
-  waiting for has become true.&nbsp; However, for the condition to be meaningful,
-  it must involve a heap object that is visible to both threads.</p>
-
-  <p> This bug does not necessarily indicate an error, since the change to
-  mutable object state may have taken place in a method which then called
-  the method containing the notification.</p>
-
-    
-<h3><a name="NP_SYNC_AND_NULL_CHECK_FIELD">NP: Synchronize and null check on the same field. (NP_SYNC_AND_NULL_CHECK_FIELD)</a></h3>
-
-
-<p>Since the field is synchronized on, it seems not likely to be null.
-If it is null and then synchronized on a NullPointerException will be
-thrown and the check would be pointless. Better to synchronize on
-another field.</p>
-
-
-     
-<h3><a name="NO_NOTIFY_NOT_NOTIFYALL">No: Using notify() rather than notifyAll() (NO_NOTIFY_NOT_NOTIFYALL)</a></h3>
-
-
-  <p> This method calls <code>notify()</code> rather than <code>notifyAll()</code>.&nbsp;
-  Java monitors are often used for multiple conditions.&nbsp; Calling <code>notify()</code>
-  only wakes up one thread, meaning that the thread woken up might not be the
-  one waiting for the condition that the caller just satisfied.</p>
-
-    
-<h3><a name="RS_READOBJECT_SYNC">RS: Class's readObject() method is synchronized (RS_READOBJECT_SYNC)</a></h3>
-
-
-  <p> This serializable class defines a <code>readObject()</code> which is
-  synchronized.&nbsp; By definition, an object created by deserialization
-  is only reachable by one thread, and thus there is no need for
-  <code>readObject()</code> to be synchronized.&nbsp; If the <code>readObject()</code>
-  method itself is causing the object to become visible to another thread,
-  that is an example of very dubious coding style.</p>
-
-    
-<h3><a name="RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED">RV: Return value of putIfAbsent ignored, value passed to putIfAbsent reused (RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED)</a></h3>
-
-          
-        The <code>putIfAbsent</code> method is typically used to ensure that a
-        single value is associated with a given key (the first value for which put
-        if absent succeeds).
-        If you ignore the return value and retain a reference to the value passed in,
-        you run the risk of retaining a value that is not the one that is associated with the key in the map.
-        If it matters which one you use and you use the one that isn't stored in the map,
-        your program will behave incorrectly.
-          
-      
-<h3><a name="RU_INVOKE_RUN">Ru: Invokes run on a thread (did you mean to start it instead?) (RU_INVOKE_RUN)</a></h3>
-
-
-  <p> This method explicitly invokes <code>run()</code> on an object.&nbsp;
-  In general, classes implement the <code>Runnable</code> interface because
-  they are going to have their <code>run()</code> method invoked in a new thread,
-  in which case <code>Thread.start()</code> is the right method to call.</p>
-
-    
-<h3><a name="SC_START_IN_CTOR">SC: Constructor invokes Thread.start() (SC_START_IN_CTOR)</a></h3>
-
-
-  <p> The constructor starts a thread. This is likely to be wrong if
-   the class is ever extended/subclassed, since the thread will be started
-   before the subclass constructor is started.</p>
-
-    
-<h3><a name="SP_SPIN_ON_FIELD">SP: Method spins on field (SP_SPIN_ON_FIELD)</a></h3>
-
-
-  <p> This method spins in a loop which reads a field.&nbsp; The compiler
-  may legally hoist the read out of the loop, turning the code into an
-  infinite loop.&nbsp; The class should be changed so it uses proper
-  synchronization (including wait and notify calls).</p>
-
-    
-<h3><a name="STCAL_INVOKE_ON_STATIC_CALENDAR_INSTANCE">STCAL: Call to static Calendar (STCAL_INVOKE_ON_STATIC_CALENDAR_INSTANCE)</a></h3>
-
-
-<p>Even though the JavaDoc does not contain a hint about it, Calendars are inherently unsafe for multihtreaded use.
-The detector has found a call to an instance of Calendar that has been obtained via a static
-field. This looks suspicous.</p>
-<p>For more information on this see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6231579">Sun Bug #6231579</a>
-and <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6178997">Sun Bug #6178997</a>.</p>
-
-
-<h3><a name="STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE">STCAL: Call to static DateFormat (STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE)</a></h3>
-
-
-<p>As the JavaDoc states, DateFormats are inherently unsafe for multithreaded use.
-The detector has found a call to an instance of DateFormat that has been obtained via a static
-field. This looks suspicous.</p>
-<p>For more information on this see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6231579">Sun Bug #6231579</a>
-and <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6178997">Sun Bug #6178997</a>.</p>
-
-
-<h3><a name="STCAL_STATIC_CALENDAR_INSTANCE">STCAL: Static Calendar field (STCAL_STATIC_CALENDAR_INSTANCE)</a></h3>
-
-
-<p>Even though the JavaDoc does not contain a hint about it, Calendars are inherently unsafe for multihtreaded use.
-Sharing a single instance across thread boundaries without proper synchronization will result in erratic behavior of the
-application. Under 1.4 problems seem to surface less often than under Java 5 where you will probably see
-random ArrayIndexOutOfBoundsExceptions or IndexOutOfBoundsExceptions in sun.util.calendar.BaseCalendar.getCalendarDateFromFixedDate().</p>
-<p>You may also experience serialization problems.</p>
-<p>Using an instance field is recommended.</p>
-<p>For more information on this see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6231579">Sun Bug #6231579</a>
-and <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6178997">Sun Bug #6178997</a>.</p>
-
-
-<h3><a name="STCAL_STATIC_SIMPLE_DATE_FORMAT_INSTANCE">STCAL: Static DateFormat (STCAL_STATIC_SIMPLE_DATE_FORMAT_INSTANCE)</a></h3>
-
-
-<p>As the JavaDoc states, DateFormats are inherently unsafe for multithreaded use.
-Sharing a single instance across thread boundaries without proper synchronization will result in erratic behavior of the
-application.</p>
-<p>You may also experience serialization problems.</p>
-<p>Using an instance field is recommended.</p>
-<p>For more information on this see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6231579">Sun Bug #6231579</a>
-and <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6178997">Sun Bug #6178997</a>.</p>
-
-
-<h3><a name="SWL_SLEEP_WITH_LOCK_HELD">SWL: Method calls Thread.sleep() with a lock held (SWL_SLEEP_WITH_LOCK_HELD)</a></h3>
-
-      
-      <p>
-      This method calls Thread.sleep() with a lock held.  This may result
-      in very poor performance and scalability, or a deadlock, since other threads may
-      be waiting to acquire the lock.  It is a much better idea to call
-      wait() on the lock, which releases the lock and allows other threads
-      to run.
-      </p>
-      
-   
-<h3><a name="TLW_TWO_LOCK_WAIT">TLW: Wait with two locks held (TLW_TWO_LOCK_WAIT)</a></h3>
-
-
-  <p> Waiting on a monitor while two locks are held may cause
-  deadlock.
-   &nbsp;
-   Performing a wait only releases the lock on the object
-   being waited on, not any other locks.
-   &nbsp;
-This not necessarily a bug, but is worth examining
-  closely.</p>
-
-    
-<h3><a name="UG_SYNC_SET_UNSYNC_GET">UG: Unsynchronized get method, synchronized set method (UG_SYNC_SET_UNSYNC_GET)</a></h3>
-
-
-  <p> This class contains similarly-named get and set
-  methods where the set method is synchronized and the get method is not.&nbsp;
-  This may result in incorrect behavior at runtime, as callers of the get
-  method will not necessarily see a consistent state for the object.&nbsp;
-  The get method should be made synchronized.</p>
-
-    
-<h3><a name="UL_UNRELEASED_LOCK">UL: Method does not release lock on all paths (UL_UNRELEASED_LOCK)</a></h3>
-
-
-<p> This method acquires a JSR-166 (<code>java.util.concurrent</code>) lock,
-but does not release it on all paths out of the method.  In general, the correct idiom
-for using a JSR-166 lock is:
-</p>
-<pre>
-    Lock l = ...;
-    l.lock();
-    try {
-        // do something
-    } finally {
-        l.unlock();
-    }
-</pre>
-
-    
-<h3><a name="UL_UNRELEASED_LOCK_EXCEPTION_PATH">UL: Method does not release lock on all exception paths (UL_UNRELEASED_LOCK_EXCEPTION_PATH)</a></h3>
-
-
-<p> This method acquires a JSR-166 (<code>java.util.concurrent</code>) lock,
-but does not release it on all exception paths out of the method.  In general, the correct idiom
-for using a JSR-166 lock is:
-</p>
-<pre>
-    Lock l = ...;
-    l.lock();
-    try {
-        // do something
-    } finally {
-        l.unlock();
-    }
-</pre>
-
-    
-<h3><a name="UW_UNCOND_WAIT">UW: Unconditional wait (UW_UNCOND_WAIT)</a></h3>
-
-
-  <p> This method contains a call to <code>java.lang.Object.wait()</code> which
-  is not guarded by conditional control flow.&nbsp; The code should
-    verify that condition it intends to wait for is not already satisfied
-    before calling wait; any previous notifications will be ignored.
-  </p>
-
-    
-<h3><a name="VO_VOLATILE_INCREMENT">VO: An increment to a volatile field isn't atomic (VO_VOLATILE_INCREMENT)</a></h3>
-
-
-<p>This code increments a volatile field. Increments of volatile fields aren't
-atomic. If more than one thread is incrementing the field at the same time,
-increments could be lost.
-</p>
-
-    
-<h3><a name="VO_VOLATILE_REFERENCE_TO_ARRAY">VO: A volatile reference to an array doesn't treat the array elements as volatile (VO_VOLATILE_REFERENCE_TO_ARRAY)</a></h3>
-
-
-<p>This declares a volatile reference to an array, which might not be what
-you want. With a volatile reference to an array, reads and writes of
-the reference to the array are treated as volatile, but the array elements
-are non-volatile. To get volatile array elements, you will need to use
-one of the atomic array classes in java.util.concurrent (provided
-in Java 5.0).</p>
-
-    
-<h3><a name="WL_USING_GETCLASS_RATHER_THAN_CLASS_LITERAL">WL: Synchronization on getClass rather than class literal (WL_USING_GETCLASS_RATHER_THAN_CLASS_LITERAL)</a></h3>
-
-      
-      <p>
-     This instance method synchronizes on <code>this.getClass()</code>. If this class is subclassed,
-     subclasses will synchronize on the class object for the subclass, which isn't likely what was intended.
-     For example, consider this code from java.awt.Label:</p>
-     <pre>
-     private static final String base = "label";
-     private static int nameCounter = 0;
-     String constructComponentName() {
-        synchronized (getClass()) {
-            return base + nameCounter++;
-        }
-     }
-     </pre>
-     <p>Subclasses of <code>Label</code> won't synchronize on the same subclass, giving rise to a datarace.
-     Instead, this code should be synchronizing on <code>Label.class</code></p>
-      <pre>
-     private static final String base = "label";
-     private static int nameCounter = 0;
-     String constructComponentName() {
-        synchronized (Label.class) {
-            return base + nameCounter++;
-        }
-     }
-     </pre>
-      <p>Bug pattern contributed by Jason Mehrens</p>
-      
-    
-<h3><a name="WS_WRITEOBJECT_SYNC">WS: Class's writeObject() method is synchronized but nothing else is (WS_WRITEOBJECT_SYNC)</a></h3>
-
-
-  <p> This class has a <code>writeObject()</code> method which is synchronized;
-  however, no other method of the class is synchronized.</p>
-
-    
-<h3><a name="WA_AWAIT_NOT_IN_LOOP">Wa: Condition.await() not in loop  (WA_AWAIT_NOT_IN_LOOP)</a></h3>
-
-
-  <p> This method contains a call to <code>java.util.concurrent.await()</code>
-   (or variants)
-  which is not in a loop.&nbsp; If the object is used for multiple conditions,
-  the condition the caller intended to wait for might not be the one
-  that actually occurred.</p>
-
-    
-<h3><a name="WA_NOT_IN_LOOP">Wa: Wait not in loop  (WA_NOT_IN_LOOP)</a></h3>
-
-
-  <p> This method contains a call to <code>java.lang.Object.wait()</code>
-  which is not in a loop.&nbsp; If the monitor is used for multiple conditions,
-  the condition the caller intended to wait for might not be the one
-  that actually occurred.</p>
-
-    
-<h3><a name="NOISE_FIELD_REFERENCE">NOISE: Bogus warning about a field reference (NOISE_FIELD_REFERENCE)</a></h3>
-
-      
-    <p>Bogus warning.</p>
-
-    
-<h3><a name="NOISE_METHOD_CALL">NOISE: Bogus warning about a method call (NOISE_METHOD_CALL)</a></h3>
-
-      
-    <p>Bogus warning.</p>
-
-    
-<h3><a name="NOISE_NULL_DEREFERENCE">NOISE: Bogus warning about a null pointer dereference (NOISE_NULL_DEREFERENCE)</a></h3>
-
-      
-    <p>Bogus warning.</p>
-
-    
-<h3><a name="NOISE_OPERATION">NOISE: Bogus warning about an operation (NOISE_OPERATION)</a></h3>
-
-      
-    <p>Bogus warning.</p>
-
-    
-<h3><a name="BX_BOXING_IMMEDIATELY_UNBOXED">Bx: Primitive value is boxed and then immediately unboxed (BX_BOXING_IMMEDIATELY_UNBOXED)</a></h3>
-
-
-  <p>A primitive is boxed, and then immediately unboxed. This probably is due to a manual
-    boxing in a place where an unboxed value is required, thus forcing the compiler
-to immediately undo the work of the boxing.
-</p>
-
-    
-<h3><a name="BX_BOXING_IMMEDIATELY_UNBOXED_TO_PERFORM_COERCION">Bx: Primitive value is boxed then unboxed to perform primitive coercion (BX_BOXING_IMMEDIATELY_UNBOXED_TO_PERFORM_COERCION)</a></h3>
-
-
-  <p>A primitive boxed value constructed and then immediately converted into a different primitive type
-(e.g., <code>new Double(d).intValue()</code>). Just perform direct primitive coercion (e.g., <code>(int) d</code>).</p>
-
-    
-<h3><a name="BX_UNBOXING_IMMEDIATELY_REBOXED">Bx: Boxed value is unboxed and then immediately reboxed (BX_UNBOXING_IMMEDIATELY_REBOXED)</a></h3>
-
-
-  <p>A boxed value is unboxed and then immediately reboxed.
-</p>
-
-    
-<h3><a name="DM_BOXED_PRIMITIVE_FOR_PARSING">Bx: Boxing/unboxing to parse a primitive (DM_BOXED_PRIMITIVE_FOR_PARSING)</a></h3>
-
-
-  <p>A boxed primitive is created from a String, just to extract the unboxed primitive value.
-  It is more efficient to just call the static parseXXX method.</p>
-
-    
-<h3><a name="DM_BOXED_PRIMITIVE_TOSTRING">Bx: Method allocates a boxed primitive just to call toString (DM_BOXED_PRIMITIVE_TOSTRING)</a></h3>
-
-
-  <p>A boxed primitive is allocated just to call toString(). It is more effective to just use the static
-  form of toString which takes the primitive value. So,</p>
-  <table>
-     <tr><th>Replace...</th><th>With this...</th></tr>
-     <tr><td>new Integer(1).toString()</td><td>Integer.toString(1)</td></tr>
-     <tr><td>new Long(1).toString()</td><td>Long.toString(1)</td></tr>
-     <tr><td>new Float(1.0).toString()</td><td>Float.toString(1.0)</td></tr>
-     <tr><td>new Double(1.0).toString()</td><td>Double.toString(1.0)</td></tr>
-     <tr><td>new Byte(1).toString()</td><td>Byte.toString(1)</td></tr>
-     <tr><td>new Short(1).toString()</td><td>Short.toString(1)</td></tr>
-     <tr><td>new Boolean(true).toString()</td><td>Boolean.toString(true)</td></tr>
-  </table>
-
-    
-<h3><a name="DM_FP_NUMBER_CTOR">Bx: Method invokes inefficient floating-point Number constructor; use static valueOf instead (DM_FP_NUMBER_CTOR)</a></h3>
-
-      
-      <p>
-      Using <code>new Double(double)</code> is guaranteed to always result in a new object whereas
-      <code>Double.valueOf(double)</code> allows caching of values to be done by the compiler, class library, or JVM.
-      Using of cached values avoids object allocation and the code will be faster.
-      </p>
-      <p>
-      Unless the class must be compatible with JVMs predating Java 1.5,
-      use either autoboxing or the <code>valueOf()</code> method when creating instances of <code>Double</code> and <code>Float</code>.
-      </p>
-      
-    
-<h3><a name="DM_NUMBER_CTOR">Bx: Method invokes inefficient Number constructor; use static valueOf instead (DM_NUMBER_CTOR)</a></h3>
-
-      
-      <p>
-      Using <code>new Integer(int)</code> is guaranteed to always result in a new object whereas
-      <code>Integer.valueOf(int)</code> allows caching of values to be done by the compiler, class library, or JVM.
-      Using of cached values avoids object allocation and the code will be faster.
-      </p>
-      <p>
-      Values between -128 and 127 are guaranteed to have corresponding cached instances
-      and using <code>valueOf</code> is approximately 3.5 times faster than using constructor.
-      For values outside the constant range the performance of both styles is the same.
-      </p>
-      <p>
-      Unless the class must be compatible with JVMs predating Java 1.5,
-      use either autoboxing or the <code>valueOf()</code> method when creating instances of
-      <code>Long</code>, <code>Integer</code>, <code>Short</code>, <code>Character</code>, and <code>Byte</code>.
-      </p>
-      
-    
-<h3><a name="DMI_BLOCKING_METHODS_ON_URL">Dm: The equals and hashCode methods of URL are blocking (DMI_BLOCKING_METHODS_ON_URL)</a></h3>
-
-
-  <p> The equals and hashCode
-method of URL perform domain name resolution, this can result in a big performance hit.
-See <a href="http://michaelscharf.blogspot.com/2006/11/javaneturlequals-and-hashcode-make.html">http://michaelscharf.blogspot.com/2006/11/javaneturlequals-and-hashcode-make.html</a> for more information.
-Consider using <code>java.net.URI</code> instead.
-   </p>
-
-    
-<h3><a name="DMI_COLLECTION_OF_URLS">Dm: Maps and sets of URLs can be performance hogs (DMI_COLLECTION_OF_URLS)</a></h3>
-
-
-  <p> This method or field is or uses a Map or Set of URLs. Since both the equals and hashCode
-method of URL perform domain name resolution, this can result in a big performance hit.
-See <a href="http://michaelscharf.blogspot.com/2006/11/javaneturlequals-and-hashcode-make.html">http://michaelscharf.blogspot.com/2006/11/javaneturlequals-and-hashcode-make.html</a> for more information.
-Consider using <code>java.net.URI</code> instead.
-   </p>
-
-    
-<h3><a name="DM_BOOLEAN_CTOR">Dm: Method invokes inefficient Boolean constructor; use Boolean.valueOf(...) instead (DM_BOOLEAN_CTOR)</a></h3>
-
-
-  <p> Creating new instances of <code>java.lang.Boolean</code> wastes
-  memory, since <code>Boolean</code> objects are immutable and there are
-  only two useful values of this type.&nbsp; Use the <code>Boolean.valueOf()</code>
-  method (or Java 1.5 autoboxing) to create <code>Boolean</code> objects instead.</p>
-
-    
-<h3><a name="DM_GC">Dm: Explicit garbage collection; extremely dubious except in benchmarking code (DM_GC)</a></h3>
-
-
-  <p> Code explicitly invokes garbage collection.
-  Except for specific use in benchmarking, this is very dubious.</p>
-  <p>In the past, situations where people have explicitly invoked
-  the garbage collector in routines such as close or finalize methods
-  has led to huge performance black holes. Garbage collection
-   can be expensive. Any situation that forces hundreds or thousands
-   of garbage collections will bring the machine to a crawl.</p>
-
-    
-<h3><a name="DM_NEW_FOR_GETCLASS">Dm: Method allocates an object, only to get the class object (DM_NEW_FOR_GETCLASS)</a></h3>
-
-
-  <p>This method allocates an object just to call getClass() on it, in order to
-  retrieve the Class object for it. It is simpler to just access the .class property of the class.</p>
-
-    
-<h3><a name="DM_NEXTINT_VIA_NEXTDOUBLE">Dm: Use the nextInt method of Random rather than nextDouble to generate a random integer (DM_NEXTINT_VIA_NEXTDOUBLE)</a></h3>
-
-
-  <p>If <code>r</code> is a <code>java.util.Random</code>, you can generate a random number from <code>0</code> to <code>n-1</code>
-using <code>r.nextInt(n)</code>, rather than using <code>(int)(r.nextDouble() * n)</code>.
-</p>
-<p>The argument to nextInt must be positive. If, for example, you want to generate a random
-value from -99 to 0, use <code>-r.nextInt(100)</code>.
-</p>
-
-    
-<h3><a name="DM_STRING_CTOR">Dm: Method invokes inefficient new String(String) constructor (DM_STRING_CTOR)</a></h3>
-
-
-  <p> Using the <code>java.lang.String(String)</code> constructor wastes memory
-  because the object so constructed will be functionally indistinguishable
-  from the <code>String</code> passed as a parameter.&nbsp; Just use the
-  argument <code>String</code> directly.</p>
-
-    
-<h3><a name="DM_STRING_TOSTRING">Dm: Method invokes toString() method on a String (DM_STRING_TOSTRING)</a></h3>
-
-
-  <p> Calling <code>String.toString()</code> is just a redundant operation.
-  Just use the String.</p>
-
-    
-<h3><a name="DM_STRING_VOID_CTOR">Dm: Method invokes inefficient new String() constructor (DM_STRING_VOID_CTOR)</a></h3>
-
-
-  <p> Creating a new <code>java.lang.String</code> object using the
-  no-argument constructor wastes memory because the object so created will
-  be functionally indistinguishable from the empty string constant
-  <code>""</code>.&nbsp; Java guarantees that identical string constants
-  will be represented by the same <code>String</code> object.&nbsp; Therefore,
-  you should just use the empty string constant directly.</p>
-
-    
-<h3><a name="HSC_HUGE_SHARED_STRING_CONSTANT">HSC: Huge string constants is duplicated across multiple class files (HSC_HUGE_SHARED_STRING_CONSTANT)</a></h3>
-
-      
-      <p>
-    A large String constant is duplicated across multiple class files.
-    This is likely because a final field is initialized to a String constant, and the Java language
-    mandates that all references to a final field from other classes be inlined into
-that classfile. See <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6447475">JDK bug 6447475</a>
-    for a description of an occurrence of this bug in the JDK and how resolving it reduced
-    the size of the JDK by 1 megabyte.
-</p>
-      
-   
-<h3><a name="IMA_INEFFICIENT_MEMBER_ACCESS">IMA: Method accesses a private member variable of owning class (IMA_INEFFICIENT_MEMBER_ACCESS)</a></h3>
-
-      
-      <p>
-      This method of an inner class reads from or writes to a private member variable of the owning class,
-      or calls a private method of the owning class. The compiler must generate a special method to access this
-      private member, causing this to be less efficient. Relaxing the protection of the member variable or method
-      will allow the compiler to treat this as a normal access.
-      </p>
-      
-    
-<h3><a name="ITA_INEFFICIENT_TO_ARRAY">ITA: Method uses toArray() with zero-length array argument (ITA_INEFFICIENT_TO_ARRAY)</a></h3>
-
-
-<p> This method uses the toArray() method of a collection derived class, and passes
-in a zero-length prototype array argument.  It is more efficient to use
-<code>myCollection.toArray(new Foo[myCollection.size()])</code>
-If the array passed in is big enough to store all of the
-elements of the collection, then it is populated and returned
-directly. This avoids the need to create a second array
-(by reflection) to return as the result.</p>
-
-    
-<h3><a name="SBSC_USE_STRINGBUFFER_CONCATENATION">SBSC: Method concatenates strings using + in a loop (SBSC_USE_STRINGBUFFER_CONCATENATION)</a></h3>
-
-
-<p> The method seems to be building a String using concatenation in a loop.
-In each iteration, the String is converted to a StringBuffer/StringBuilder,
-   appended to, and converted back to a String.
-   This can lead to a cost quadratic in the number of iterations,
-   as the growing string is recopied in each iteration. </p>
-
-<p>Better performance can be obtained by using
-a StringBuffer (or StringBuilder in Java 1.5) explicitly.</p>
-
-<p> For example:</p>
-<pre>
-  // This is bad
-  String s = "";
-  for (int i = 0; i &lt; field.length; ++i) {
-    s = s + field[i];
-  }
-
-  // This is better
-  StringBuffer buf = new StringBuffer();
-  for (int i = 0; i &lt; field.length; ++i) {
-    buf.append(field[i]);
-  }
-  String s = buf.toString();
-</pre>
-
-    
-<h3><a name="SIC_INNER_SHOULD_BE_STATIC">SIC: Should be a static inner class (SIC_INNER_SHOULD_BE_STATIC)</a></h3>
-
-
-  <p> This class is an inner class, but does not use its embedded reference
-  to the object which created it.&nbsp; This reference makes the instances
-  of the class larger, and may keep the reference to the creator object
-  alive longer than necessary.&nbsp; If possible, the class should be
-   made static.
-</p>
-
-    
-<h3><a name="SIC_INNER_SHOULD_BE_STATIC_ANON">SIC: Could be refactored into a named static inner class (SIC_INNER_SHOULD_BE_STATIC_ANON)</a></h3>
-
-
-  <p> This class is an inner class, but does not use its embedded reference
-  to the object which created it.&nbsp; This reference makes the instances
-  of the class larger, and may keep the reference to the creator object
-  alive longer than necessary.&nbsp; If possible, the class should be
-  made into a <em>static</em> inner class. Since anonymous inner
-classes cannot be marked as static, doing this will require refactoring
-the inner class so that it is a named inner class.</p>
-
-    
-<h3><a name="SIC_INNER_SHOULD_BE_STATIC_NEEDS_THIS">SIC: Could be refactored into a static inner class (SIC_INNER_SHOULD_BE_STATIC_NEEDS_THIS)</a></h3>
-
-
-  <p> This class is an inner class, but does not use its embedded reference
-  to the object which created it except during construction of the
-inner object.&nbsp; This reference makes the instances
-  of the class larger, and may keep the reference to the creator object
-  alive longer than necessary.&nbsp; If possible, the class should be
-  made into a <em>static</em> inner class. Since the reference to the
-   outer object is required during construction of the inner instance,
-   the inner class will need to be refactored so as to
-   pass a reference to the outer instance to the constructor
-   for the inner class.</p>
-
-    
-<h3><a name="SS_SHOULD_BE_STATIC">SS: Unread field: should this field be static? (SS_SHOULD_BE_STATIC)</a></h3>
-
-
-  <p> This class contains an instance final field that
-   is initialized to a compile-time static value.
-   Consider making the field static.</p>
-
-    
-<h3><a name="UM_UNNECESSARY_MATH">UM: Method calls static Math class method on a constant value (UM_UNNECESSARY_MATH)</a></h3>
-
-
-<p> This method uses a static method from java.lang.Math on a constant value. This method's
-result in this case, can be determined statically, and is faster and sometimes more accurate to
-just use the constant. Methods detected are:
-</p>
-<table>
-<tr>
-   <th>Method</th> <th>Parameter</th>
-</tr>
-<tr>
-   <td>abs</td> <td>-any-</td>
-</tr>
-<tr>
-   <td>acos</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>asin</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>atan</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>atan2</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>cbrt</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>ceil</td> <td>-any-</td>
-</tr>
-<tr>
-   <td>cos</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>cosh</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>exp</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>expm1</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>floor</td> <td>-any-</td>
-</tr>
-<tr>
-   <td>log</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>log10</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>rint</td> <td>-any-</td>
-</tr>
-<tr>
-   <td>round</td> <td>-any-</td>
-</tr>
-<tr>
-   <td>sin</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>sinh</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>sqrt</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>tan</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>tanh</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>toDegrees</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>toRadians</td> <td>0.0</td>
-</tr>
-</table>
-
-    
-<h3><a name="UPM_UNCALLED_PRIVATE_METHOD">UPM: Private method is never called (UPM_UNCALLED_PRIVATE_METHOD)</a></h3>
-
-
-<p> This private method is never called. Although it is
-possible that the method will be invoked through reflection,
-it is more likely that the method is never used, and should be
-removed.
-</p>
-
-
-<h3><a name="URF_UNREAD_FIELD">UrF: Unread field (URF_UNREAD_FIELD)</a></h3>
-
-
-  <p> This field is never read.&nbsp; Consider removing it from the class.</p>
-
-    
-<h3><a name="UUF_UNUSED_FIELD">UuF: Unused field (UUF_UNUSED_FIELD)</a></h3>
-
-
-  <p> This field is never used.&nbsp; Consider removing it from the class.</p>
-
-    
-<h3><a name="WMI_WRONG_MAP_ITERATOR">WMI: Inefficient use of keySet iterator instead of entrySet iterator (WMI_WRONG_MAP_ITERATOR)</a></h3>
-
-
-<p> This method accesses the value of a Map entry, using a key that was retrieved from
-a keySet iterator. It is more efficient to use an iterator on the entrySet of the map, to avoid the
-Map.get(key) lookup.</p>
-
-        
-<h3><a name="DMI_CONSTANT_DB_PASSWORD">Dm: Hardcoded constant database password (DMI_CONSTANT_DB_PASSWORD)</a></h3>
-
-      
-    <p>This code creates a database connect using a hardcoded, constant password. Anyone with access to either the source code or the compiled code can
-    easily learn the password.
-</p>
-
-
-    
-<h3><a name="DMI_EMPTY_DB_PASSWORD">Dm: Empty database password (DMI_EMPTY_DB_PASSWORD)</a></h3>
-
-      
-    <p>This code creates a database connect using a blank or empty password. This indicates that the database is not protected by a password.
-</p>
-
-
-    
-<h3><a name="HRS_REQUEST_PARAMETER_TO_COOKIE">HRS: HTTP cookie formed from untrusted input (HRS_REQUEST_PARAMETER_TO_COOKIE)</a></h3>
-
-      
-    <p>This code constructs an HTTP Cookie using an untrusted HTTP parameter. If this cookie is added to an HTTP response, it will allow a HTTP response splitting
-vulnerability. See <a href="http://en.wikipedia.org/wiki/HTTP_response_splitting">http://en.wikipedia.org/wiki/HTTP_response_splitting</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of HTTP response splitting.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more
-vulnerabilities that FindBugs doesn't report. If you are concerned about HTTP response splitting, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-    
-<h3><a name="HRS_REQUEST_PARAMETER_TO_HTTP_HEADER">HRS: HTTP Response splitting vulnerability (HRS_REQUEST_PARAMETER_TO_HTTP_HEADER)</a></h3>
-
-            
-    <p>This code directly writes an HTTP parameter to an HTTP header, which allows for a HTTP response splitting
-vulnerability. See <a href="http://en.wikipedia.org/wiki/HTTP_response_splitting">http://en.wikipedia.org/wiki/HTTP_response_splitting</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of HTTP response splitting.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more
-vulnerabilities that FindBugs doesn't report. If you are concerned about HTTP response splitting, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-        
-<h3><a name="PT_ABSOLUTE_PATH_TRAVERSAL">PT: Absolute path traversal in servlet (PT_ABSOLUTE_PATH_TRAVERSAL)</a></h3>
-
-
-    <p>The software uses an HTTP request parameter to construct a pathname that should be within a restricted directory,
-but it does not properly neutralize absolute path sequences such as "/abs/path" that can resolve to a location that is outside of that directory.
-
-See <a href="http://cwe.mitre.org/data/definitions/36.html">http://cwe.mitre.org/data/definitions/36.html</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of absolute path traversal.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more
-vulnerabilities that FindBugs doesn't report. If you are concerned about absolute path traversal, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-    
-<h3><a name="PT_RELATIVE_PATH_TRAVERSAL">PT: Relative path traversal in servlet (PT_RELATIVE_PATH_TRAVERSAL)</a></h3>
-
-
-    <p>The software uses an HTTP request parameter to construct a pathname that should be within a restricted directory, but it does not properly neutralize sequences such as ".." that can resolve to a location that is outside of that directory.
-
-See <a href="http://cwe.mitre.org/data/definitions/23.html">http://cwe.mitre.org/data/definitions/23.html</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of relative path traversal.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more
-vulnerabilities that FindBugs doesn't report. If you are concerned about relative path traversal, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-    
-<h3><a name="SQL_NONCONSTANT_STRING_PASSED_TO_EXECUTE">SQL: Nonconstant string passed to execute method on an SQL statement (SQL_NONCONSTANT_STRING_PASSED_TO_EXECUTE)</a></h3>
-
-
-  <p>The method invokes the execute method on an SQL statement with a String that seems
-to be dynamically generated. Consider using
-a prepared statement instead. It is more efficient and less vulnerable to
-SQL injection attacks.
-</p>
-
-    
-<h3><a name="SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRING">SQL: A prepared statement is generated from a nonconstant String (SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRING)</a></h3>
-
-
-  <p>The code creates an SQL prepared statement from a nonconstant String.
-If unchecked, tainted data from a user is used in building this String, SQL injection could
-be used to make the prepared statement do something unexpected and undesirable.
-</p>
-
-    
-<h3><a name="XSS_REQUEST_PARAMETER_TO_JSP_WRITER">XSS: JSP reflected cross site scripting vulnerability (XSS_REQUEST_PARAMETER_TO_JSP_WRITER)</a></h3>
-
-
-    <p>This code directly writes an HTTP parameter to JSP output, which allows for a cross site scripting
-vulnerability. See <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">http://en.wikipedia.org/wiki/Cross-site_scripting</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of cross site scripting.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more cross site scripting
-vulnerabilities that FindBugs doesn't report. If you are concerned about cross site scripting, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-    
-<h3><a name="XSS_REQUEST_PARAMETER_TO_SEND_ERROR">XSS: Servlet reflected cross site scripting vulnerability in error page (XSS_REQUEST_PARAMETER_TO_SEND_ERROR)</a></h3>
-
-
-    <p>This code directly writes an HTTP parameter to a Server error page (using HttpServletResponse.sendError). Echoing this untrusted input allows
-for a reflected cross site scripting
-vulnerability. See <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">http://en.wikipedia.org/wiki/Cross-site_scripting</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of cross site scripting.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more cross site scripting
-vulnerabilities that FindBugs doesn't report. If you are concerned about cross site scripting, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-    
-<h3><a name="XSS_REQUEST_PARAMETER_TO_SERVLET_WRITER">XSS: Servlet reflected cross site scripting vulnerability (XSS_REQUEST_PARAMETER_TO_SERVLET_WRITER)</a></h3>
-
-
-    <p>This code directly writes an HTTP parameter to Servlet output, which allows for a reflected cross site scripting
-vulnerability. See <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">http://en.wikipedia.org/wiki/Cross-site_scripting</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of cross site scripting.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more cross site scripting
-vulnerabilities that FindBugs doesn't report. If you are concerned about cross site scripting, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-    
-<h3><a name="BC_BAD_CAST_TO_ABSTRACT_COLLECTION">BC: Questionable cast to abstract collection  (BC_BAD_CAST_TO_ABSTRACT_COLLECTION)</a></h3>
-
-
-<p>
-This code casts a Collection to an abstract collection
-(such as <code>List</code>, <code>Set</code>, or <code>Map</code>).
-Ensure that you are guaranteed that the object is of the type
-you are casting to. If all you need is to be able
-to iterate through a collection, you don't need to cast it to a Set or List.
-</p>
-
-    
-<h3><a name="BC_BAD_CAST_TO_CONCRETE_COLLECTION">BC: Questionable cast to concrete collection (BC_BAD_CAST_TO_CONCRETE_COLLECTION)</a></h3>
-
-
-<p>
-This code casts an abstract collection (such as a Collection, List, or Set)
-to a specific concrete implementation (such as an ArrayList or HashSet).
-This might not be correct, and it may make your code fragile, since
-it makes it harder to switch to other concrete implementations at a future
-point. Unless you have a particular reason to do so, just use the abstract
-collection class.
-</p>
-
-    
-<h3><a name="BC_UNCONFIRMED_CAST">BC: Unchecked/unconfirmed cast (BC_UNCONFIRMED_CAST)</a></h3>
-
-
-<p>
-This cast is unchecked, and not all instances of the type casted from can be cast to
-the type it is being cast to. Check that your program logic ensures that this
-cast will not fail.
-</p>
-
-    
-<h3><a name="BC_UNCONFIRMED_CAST_OF_RETURN_VALUE">BC: Unchecked/unconfirmed cast of return value from method (BC_UNCONFIRMED_CAST_OF_RETURN_VALUE)</a></h3>
-
-
-<p>
-This code performs an unchecked cast of the return value of a method.
-The code might be calling the method in such a way that the cast is guaranteed to be
-safe, but FindBugs is unable to verify that the cast is safe.  Check that your program logic ensures that this
-cast will not fail.
-</p>
-
-    
-<h3><a name="BC_VACUOUS_INSTANCEOF">BC: instanceof will always return true (BC_VACUOUS_INSTANCEOF)</a></h3>
-
-
-<p>
-This instanceof test will always return true (unless the value being tested is null).
-Although this is safe, make sure it isn't
-an indication of some misunderstanding or some other logic error.
-If you really want to test the value for being null, perhaps it would be clearer to do
-better to do a null test rather than an instanceof test.
-</p>
-
-    
-<h3><a name="ICAST_QUESTIONABLE_UNSIGNED_RIGHT_SHIFT">BSHIFT: Unsigned right shift cast to short/byte (ICAST_QUESTIONABLE_UNSIGNED_RIGHT_SHIFT)</a></h3>
-
-
-<p>
-The code performs an unsigned right shift, whose result is then
-cast to a short or byte, which discards the upper bits of the result.
-Since the upper bits are discarded, there may be no difference between
-a signed and unsigned right shift (depending upon the size of the shift).
-</p>
-
-    
-<h3><a name="CD_CIRCULAR_DEPENDENCY">CD: Test for circular dependencies among classes (CD_CIRCULAR_DEPENDENCY)</a></h3>
-
-   
-    <p>
-    This class has a circular dependency with other classes. This makes building these classes
-    difficult, as each is dependent on the other to build correctly. Consider using interfaces
-    to break the hard dependency.
-    </p>
-    
-     
-<h3><a name="CI_CONFUSED_INHERITANCE">CI: Class is final but declares protected field (CI_CONFUSED_INHERITANCE)</a></h3>
-
-      
-      <p>
-      This class is declared to be final, but declares fields to be protected. Since the class
-      is final, it can not be derived from, and the use of protected is confusing. The access
-      modifier for the field should be changed to private or public to represent the true
-      use for the field.
-      </p>
-      
-    
-<h3><a name="DB_DUPLICATE_BRANCHES">DB: Method uses the same code for two branches (DB_DUPLICATE_BRANCHES)</a></h3>
-
-      
-      <p>
-      This method uses the same code to implement two branches of a conditional branch.
-    Check to ensure that this isn't a coding mistake.
-      </p>
-      
-   
-<h3><a name="DB_DUPLICATE_SWITCH_CLAUSES">DB: Method uses the same code for two switch clauses (DB_DUPLICATE_SWITCH_CLAUSES)</a></h3>
-
-      
-      <p>
-      This method uses the same code to implement two clauses of a switch statement.
-    This could be a case of duplicate code, but it might also indicate
-    a coding mistake.
-      </p>
-      
-   
-<h3><a name="DLS_DEAD_LOCAL_STORE">DLS: Dead store to local variable (DLS_DEAD_LOCAL_STORE)</a></h3>
-
-
-<p>
-This instruction assigns a value to a local variable,
-but the value is not read or used in any subsequent instruction.
-Often, this indicates an error, because the value computed is never
-used.
-</p>
-<p>
-Note that Sun's javac compiler often generates dead stores for
-final local variables.  Because FindBugs is a bytecode-based tool,
-there is no easy way to eliminate these false positives.
-</p>
-
-    
-<h3><a name="DLS_DEAD_LOCAL_STORE_IN_RETURN">DLS: Useless assignment in return statement (DLS_DEAD_LOCAL_STORE_IN_RETURN)</a></h3>
-
-      
-<p>
-This statement assigns to a local variable in a return statement. This assignment
-has effect. Please verify that this statement does the right thing.
-</p>
-
-    
-<h3><a name="DLS_DEAD_LOCAL_STORE_OF_NULL">DLS: Dead store of null to local variable (DLS_DEAD_LOCAL_STORE_OF_NULL)</a></h3>
-
-
-<p>The code stores null into a local variable, and the stored value is not
-read. This store may have been introduced to assist the garbage collector, but
-as of Java SE 6.0, this is no longer needed or useful.
-</p>
-
-    
-<h3><a name="DLS_DEAD_LOCAL_STORE_SHADOWS_FIELD">DLS: Dead store to local variable that shadows field (DLS_DEAD_LOCAL_STORE_SHADOWS_FIELD)</a></h3>
-
-
-<p>
-This instruction assigns a value to a local variable,
-but the value is not read or used in any subsequent instruction.
-Often, this indicates an error, because the value computed is never
-used. There is a field with the same name as the local variable. Did you
-mean to assign to that variable instead?
-</p>
-
-    
-<h3><a name="DMI_HARDCODED_ABSOLUTE_FILENAME">DMI: Code contains a hard coded reference to an absolute pathname (DMI_HARDCODED_ABSOLUTE_FILENAME)</a></h3>
-
-
-<p>This code constructs a File object using a hard coded to an absolute pathname
-(e.g., <code>new File("/home/dannyc/workspace/j2ee/src/share/com/sun/enterprise/deployment");</code>
-</p>
-
-    
-<h3><a name="DMI_NONSERIALIZABLE_OBJECT_WRITTEN">DMI: Non serializable object written to ObjectOutput (DMI_NONSERIALIZABLE_OBJECT_WRITTEN)</a></h3>
-
-
-<p>
-This code seems to be passing a non-serializable object to the ObjectOutput.writeObject method.
-If the object is, indeed, non-serializable, an error will result.
-</p>
-
-    
-<h3><a name="DMI_USELESS_SUBSTRING">DMI: Invocation of substring(0), which returns the original value (DMI_USELESS_SUBSTRING)</a></h3>
-
-
-<p>
-This code invokes substring(0) on a String, which returns the original value.
-</p>
-
-    
-<h3><a name="DMI_THREAD_PASSED_WHERE_RUNNABLE_EXPECTED">Dm: Thread passed where Runnable expected (DMI_THREAD_PASSED_WHERE_RUNNABLE_EXPECTED)</a></h3>
-
-
-  <p> A Thread object is passed as a parameter to a method where
-a Runnable is expected. This is rather unusual, and may indicate a logic error
-or cause unexpected behavior.
-   </p>
-
-    
-<h3><a name="DMI_UNSUPPORTED_METHOD">Dm: Call to unsupported method (DMI_UNSUPPORTED_METHOD)</a></h3>
-
-      
-    <p>All targets of this method invocation throw an UnsupportedOperationException.
-</p>
-
-
-    
-<h3><a name="EQ_DOESNT_OVERRIDE_EQUALS">Eq: Class doesn't override equals in superclass (EQ_DOESNT_OVERRIDE_EQUALS)</a></h3>
-
-
-  <p> This class extends a class that defines an equals method and adds fields, but doesn't
-define an equals method itself. Thus, equality on instances of this class will
-ignore the identity of the subclass and the added fields. Be sure this is what is intended,
-and that you don't need to override the equals method. Even if you don't need to override
-the equals method, consider overriding it anyway to document the fact
-that the equals method for the subclass just return the result of
-invoking super.equals(o).
-  </p>
-
-    
-<h3><a name="EQ_UNUSUAL">Eq: Unusual equals method  (EQ_UNUSUAL)</a></h3>
-
-
-  <p> This class doesn't do any of the patterns we recognize for checking that the type of the argument
-is compatible with the type of the <code>this</code> object. There might not be anything wrong with
-this code, but it is worth reviewing.
-</p>
-
-    
-<h3><a name="FE_FLOATING_POINT_EQUALITY">FE: Test for floating point equality (FE_FLOATING_POINT_EQUALITY)</a></h3>
-
-   
-    <p>
-    This operation compares two floating point values for equality.
-    Because floating point calculations may involve rounding,
-   calculated float and double values may not be accurate.
-    For values that must be precise, such as monetary values,
-   consider using a fixed-precision type such as BigDecimal.
-    For values that need not be precise, consider comparing for equality
-    within some range, for example:
-    <code>if ( Math.abs(x - y) &lt; .0000001 )</code>.
-   See the Java Language Specification, section 4.2.4.
-    </p>
-    
-     
-<h3><a name="VA_FORMAT_STRING_BAD_CONVERSION_TO_BOOLEAN">FS: Non-Boolean argument formatted using %b format specifier (VA_FORMAT_STRING_BAD_CONVERSION_TO_BOOLEAN)</a></h3>
-
-
-<p>
-An argument not of type Boolean is being formatted with a %b format specifier. This won't throw an
-exception; instead, it will print true for any nonnull value, and false for null.
-This feature of format strings is strange, and may not be what you intended.
-</p>
-
-     
-<h3><a name="IA_AMBIGUOUS_INVOCATION_OF_INHERITED_OR_OUTER_METHOD">IA: Potentially ambiguous invocation of either an inherited or outer method (IA_AMBIGUOUS_INVOCATION_OF_INHERITED_OR_OUTER_METHOD)</a></h3>
-
-
-  <p> 
-An inner class is invoking a method that could be resolved to either a inherited method or a method defined in an outer class. 
-For example, you invoke <code>foo(17)</code>, which is defined in both a superclass and in an outer method.
-By the Java semantics,
-it will be resolved to invoke the inherited method, but this may not be want
-you intend. 
-</p>
-<p>If you really intend to invoke the inherited method,
-invoke it by invoking the method on super (e.g., invoke super.foo(17)), and
-thus it will be clear to other readers of your code and to FindBugs
-that you want to invoke the inherited method, not the method in the outer class.
-</p>
-<p>If you call <code>this.foo(17)</code>, then the inherited method will be invoked. However, since FindBugs only looks at
-classfiles, it 
-can't tell the difference between an invocation of <code>this.foo(17)</code> and <code>foo(17)</code>, it will still
-complain about a potential ambiguous invocation.
-</p>
-
-    
-<h3><a name="IC_INIT_CIRCULARITY">IC: Initialization circularity (IC_INIT_CIRCULARITY)</a></h3>
-
-
-  <p> A circularity was detected in the static initializers of the two
-  classes referenced by the bug instance.&nbsp; Many kinds of unexpected
-  behavior may arise from such circularity.</p>
-
-    
-<h3><a name="ICAST_IDIV_CAST_TO_DOUBLE">ICAST: Integral division result cast to double or float (ICAST_IDIV_CAST_TO_DOUBLE)</a></h3>
-
-
-<p>
-This code casts the result of an integral division (e.g., int or long division)
-operation to double or
-float.
-Doing division on integers truncates the result
-to the integer value closest to zero.  The fact that the result
-was cast to double suggests that this precision should have been retained.
-What was probably meant was to cast one or both of the operands to
-double <em>before</em> performing the division.  Here is an example:
-</p>
-<blockquote>
-<pre>
-int x = 2;
-int y = 5;
-// Wrong: yields result 0.0
-double value1 =  x / y;
-
-// Right: yields result 0.4
-double value2 =  x / (double) y;
-</pre>
-</blockquote>
-
-    
-<h3><a name="ICAST_INTEGER_MULTIPLY_CAST_TO_LONG">ICAST: Result of integer multiplication cast to long (ICAST_INTEGER_MULTIPLY_CAST_TO_LONG)</a></h3>
-
-
-<p>
-This code performs integer multiply and then converts the result to a long,
-as in:</p>
-<pre>
-    long convertDaysToMilliseconds(int days) { return 1000*3600*24*days; }
-</pre>
-<p>
-If the multiplication is done using long arithmetic, you can avoid
-the possibility that the result will overflow. For example, you
-could fix the above code to:</p>
-<pre>
-    long convertDaysToMilliseconds(int days) { return 1000L*3600*24*days; }
-</pre>
-or
-<pre>
-    static final long MILLISECONDS_PER_DAY = 24L*3600*1000;
-    long convertDaysToMilliseconds(int days) { return days * MILLISECONDS_PER_DAY; }
-</pre>
-
-    
-<h3><a name="IM_AVERAGE_COMPUTATION_COULD_OVERFLOW">IM: Computation of average could overflow (IM_AVERAGE_COMPUTATION_COULD_OVERFLOW)</a></h3>
-
-
-<p>The code computes the average of two integers using either division or signed right shift,
-and then uses the result as the index of an array.
-If the values being averaged are very large, this can overflow (resulting in the computation
-of a negative average).  Assuming that the result is intended to be nonnegative, you
-can use an unsigned right shift instead. In other words, rather that using <code>(low+high)/2</code>,
-use <code>(low+high) &gt;&gt;&gt; 1</code>
-</p>
-<p>This bug exists in many earlier implementations of binary search and merge sort.
-Martin Buchholz <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6412541">found and fixed it</a>
-in the JDK libraries, and Joshua Bloch
-<a href="http://googleresearch.blogspot.com/2006/06/extra-extra-read-all-about-it-nearly.html">widely
-publicized the bug pattern</a>.
-</p>
-
-    
-<h3><a name="IM_BAD_CHECK_FOR_ODD">IM: Check for oddness that won't work for negative numbers  (IM_BAD_CHECK_FOR_ODD)</a></h3>
-
-
-<p>
-The code uses x % 2 == 1 to check to see if a value is odd, but this won't work
-for negative numbers (e.g., (-5) % 2 == -1). If this code is intending to check
-for oddness, consider using x &amp; 1 == 1, or x % 2 != 0.
-</p>
-
-    
-<h3><a name="INT_BAD_REM_BY_1">INT: Integer remainder modulo 1 (INT_BAD_REM_BY_1)</a></h3>
-
-
-<p> Any expression (exp % 1) is guaranteed to always return zero.
-Did you mean (exp &amp; 1) or (exp % 2) instead?
-</p>
-
-    
-<h3><a name="INT_VACUOUS_BIT_OPERATION">INT: Vacuous bit mask operation on integer value (INT_VACUOUS_BIT_OPERATION)</a></h3>
-
-
-<p> This is an integer bit operation (and, or, or exclusive or) that doesn't do any useful work
-(e.g., <code>v & 0xffffffff</code>).
-
-</p>
-
-    
-<h3><a name="INT_VACUOUS_COMPARISON">INT: Vacuous comparison of integer value (INT_VACUOUS_COMPARISON)</a></h3>
-
-
-<p> There is an integer comparison that always returns
-the same value (e.g., x &lt;= Integer.MAX_VALUE).
-</p>
-
-    
-<h3><a name="MTIA_SUSPECT_SERVLET_INSTANCE_FIELD">MTIA: Class extends Servlet class and uses instance variables (MTIA_SUSPECT_SERVLET_INSTANCE_FIELD)</a></h3>
-
-   
-    <p>
-    This class extends from a Servlet class, and uses an instance member variable. Since only
-    one instance of a Servlet class is created by the J2EE framework, and used in a
-    multithreaded way, this paradigm is highly discouraged and most likely problematic. Consider
-    only using method local variables.
-    </p>
-    
-      
-<h3><a name="MTIA_SUSPECT_STRUTS_INSTANCE_FIELD">MTIA: Class extends Struts Action class and uses instance variables (MTIA_SUSPECT_STRUTS_INSTANCE_FIELD)</a></h3>
-
-   
-    <p>
-    This class extends from a Struts Action class, and uses an instance member variable. Since only
-    one instance of a struts Action class is created by the Struts framework, and used in a
-    multithreaded way, this paradigm is highly discouraged and most likely problematic. Consider
-    only using method local variables. Only instance fields that are written outside of a monitor
-    are reported.
-    </p>
-    
-      
-<h3><a name="NP_DEREFERENCE_OF_READLINE_VALUE">NP: Dereference of the result of readLine() without nullcheck (NP_DEREFERENCE_OF_READLINE_VALUE)</a></h3>
-
-
-  <p> The result of invoking readLine() is dereferenced without checking to see if the result is null. If there are no more lines of text
-to read, readLine() will return null and dereferencing that will generate a null pointer exception.
-</p>
-
-    
-<h3><a name="NP_IMMEDIATE_DEREFERENCE_OF_READLINE">NP: Immediate dereference of the result of readLine() (NP_IMMEDIATE_DEREFERENCE_OF_READLINE)</a></h3>
-
-
-  <p> The result of invoking readLine() is immediately dereferenced. If there are no more lines of text
-to read, readLine() will return null and dereferencing that will generate a null pointer exception.
-</p>
-
-    
-<h3><a name="NP_LOAD_OF_KNOWN_NULL_VALUE">NP: Load of known null value (NP_LOAD_OF_KNOWN_NULL_VALUE)</a></h3>
-
-
-  <p> The variable referenced at this point is known to be null due to an earlier
-   check against null. Although this is valid, it might be a mistake (perhaps you
-intended to refer to a different variable, or perhaps the earlier check to see if the
-variable is null should have been a check to see if it was nonnull).
-</p>
-
-    
-<h3><a name="NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION">NP: Method tightens nullness annotation on parameter (NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION)</a></h3>
-
-        <p>
-        A method should always implement the contract of a method it overrides. Thus, if a method takes a parameter
-	that is marked as @Nullable, you shouldn't override that method in a subclass with a method where that parameter is @Nonnull.
-	Doing so violates the contract that the method should handle a null parameter.
-        </p>
-      
-<h3><a name="NP_METHOD_RETURN_RELAXING_ANNOTATION">NP: Method relaxes nullness annotation on return value (NP_METHOD_RETURN_RELAXING_ANNOTATION)</a></h3>
-
-        <p>
-        A method should always implement the contract of a method it overrides. Thus, if a method takes is annotated
-	as returning a @Nonnull value, 
-	you shouldn't override that method in a subclass with a method annotated as returning a @Nullable or @CheckForNull value.
-	Doing so violates the contract that the method shouldn't return null.
-        </p>
-      
-<h3><a name="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE">NP: Possible null pointer dereference due to return value of called method (NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE)</a></h3>
-
-      
-<p> The return value from a method is dereferenced without a null check,
-and the return value of that method is one that should generally be checked
-for null.  This may lead to a <code>NullPointerException</code> when the code is executed.
-</p>
-      
-   
-<h3><a name="NP_NULL_ON_SOME_PATH_MIGHT_BE_INFEASIBLE">NP: Possible null pointer dereference on branch that might be infeasible (NP_NULL_ON_SOME_PATH_MIGHT_BE_INFEASIBLE)</a></h3>
-
-
-<p> There is a branch of statement that, <em>if executed,</em>  guarantees that
-a null value will be dereferenced, which
-would generate a <code>NullPointerException</code> when the code is executed.
-Of course, the problem might be that the branch or statement is infeasible and that
-the null pointer exception can't ever be executed; deciding that is beyond the ability of FindBugs.
-Due to the fact that this value had been previously tested for nullness,
-this is a definite possibility.
-</p>
-
-    
-<h3><a name="NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE">NP: Parameter must be nonnull but is marked as nullable (NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE)</a></h3>
-
-
-<p> This parameter is always used in a way that requires it to be nonnull,
-but the parameter is explicitly annotated as being Nullable. Either the use
-of the parameter or the annotation is wrong.
-</p>
-
-    
-<h3><a name="NP_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD">NP: Read of unwritten public or protected field (NP_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD)</a></h3>
-
-
-  <p> The program is dereferencing a public or protected
-field that does not seem to ever have a non-null value written to it.
-Unless the field is initialized via some mechanism not seen by the analysis,
-dereferencing this value will generate a null pointer exception.
-</p>
-
-    
-<h3><a name="NS_DANGEROUS_NON_SHORT_CIRCUIT">NS: Potentially dangerous use of non-short-circuit logic (NS_DANGEROUS_NON_SHORT_CIRCUIT)</a></h3>
-
-
-  <p> This code seems to be using non-short-circuit logic (e.g., &amp;
-or |)
-rather than short-circuit logic (&amp;&amp; or ||). In addition,
-it seem possible that, depending on the value of the left hand side, you might not
-want to evaluate the right hand side (because it would have side effects, could cause an exception
-or could be expensive.</p>
-<p>
-Non-short-circuit logic causes both sides of the expression
-to be evaluated even when the result can be inferred from
-knowing the left-hand side. This can be less efficient and
-can result in errors if the left-hand side guards cases
-when evaluating the right-hand side can generate an error.
-</p>
-
-<p>See <a href="http://java.sun.com/docs/books/jls/third_edition/html/expressions.html#15.22.2">the Java
-Language Specification</a> for details
-
-</p>
-
-    
-<h3><a name="NS_NON_SHORT_CIRCUIT">NS: Questionable use of non-short-circuit logic (NS_NON_SHORT_CIRCUIT)</a></h3>
-
-
-  <p> This code seems to be using non-short-circuit logic (e.g., &amp;
-or |)
-rather than short-circuit logic (&amp;&amp; or ||).
-Non-short-circuit logic causes both sides of the expression
-to be evaluated even when the result can be inferred from
-knowing the left-hand side. This can be less efficient and
-can result in errors if the left-hand side guards cases
-when evaluating the right-hand side can generate an error.
-
-<p>See <a href="http://java.sun.com/docs/books/jls/third_edition/html/expressions.html#15.22.2">the Java
-Language Specification</a> for details
-
-</p>
-
-    
-<h3><a name="PS_PUBLIC_SEMAPHORES">PS: Class exposes synchronization and semaphores in its public interface (PS_PUBLIC_SEMAPHORES)</a></h3>
-
-   
-    <p>
-    This class uses synchronization along with wait(), notify() or notifyAll() on itself (the this
-    reference). Client classes that use this class, may, in addition, use an instance of this class
-    as a synchronizing object. Because two classes are using the same object for synchronization,
-    Multithread correctness is suspect. You should not synchronize nor call semaphore methods on
-    a public reference. Consider using a internal private member variable to control synchronization.
-    </p>
-    
-      
-<h3><a name="PZLA_PREFER_ZERO_LENGTH_ARRAYS">PZLA: Consider returning a zero length array rather than null (PZLA_PREFER_ZERO_LENGTH_ARRAYS)</a></h3>
-
-
-<p> It is often a better design to
-return a length zero array rather than a null reference to indicate that there
-are no results (i.e., an empty list of results).
-This way, no explicit check for null is needed by clients of the method.</p>
-
-<p>On the other hand, using null to indicate
-"there is no answer to this question" is probably appropriate.
-For example, <code>File.listFiles()</code> returns an empty list
-if given a directory containing no files, and returns null if the file
-is not a directory.</p>
-
-    
-<h3><a name="QF_QUESTIONABLE_FOR_LOOP">QF: Complicated, subtle or wrong increment in for-loop  (QF_QUESTIONABLE_FOR_LOOP)</a></h3>
-
-
-   <p>Are you sure this for loop is incrementing the correct variable?
-   It appears that another variable is being initialized and checked
-   by the for loop.
-</p>
-
-    
-<h3><a name="RCN_REDUNDANT_COMPARISON_OF_NULL_AND_NONNULL_VALUE">RCN: Redundant comparison of non-null value to null (RCN_REDUNDANT_COMPARISON_OF_NULL_AND_NONNULL_VALUE)</a></h3>
-
-
-<p> This method contains a reference known to be non-null with another reference
-known to be null.</p>
-
-    
-<h3><a name="RCN_REDUNDANT_COMPARISON_TWO_NULL_VALUES">RCN: Redundant comparison of two null values (RCN_REDUNDANT_COMPARISON_TWO_NULL_VALUES)</a></h3>
-
-
-<p> This method contains a redundant comparison of two references known to
-both be definitely null.</p>
-
-    
-<h3><a name="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE">RCN: Redundant nullcheck of value known to be non-null (RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE)</a></h3>
-
-
-<p> This method contains a redundant check of a known non-null value against
-the constant null.</p>
-
-    
-<h3><a name="RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE">RCN: Redundant nullcheck of value known to be null (RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE)</a></h3>
-
-
-<p> This method contains a redundant check of a known null value against
-the constant null.</p>
-
-    
-<h3><a name="REC_CATCH_EXCEPTION">REC: Exception is caught when Exception is not thrown (REC_CATCH_EXCEPTION)</a></h3>
-
-  
-  <p>
-  This method uses a try-catch block that catches Exception objects, but Exception is not
-  thrown within the try block, and RuntimeException is not explicitly caught.  It is a common bug pattern to
-  say try { ... } catch (Exception e) { something } as a shorthand for catching a number of types of exception
-  each of whose catch blocks is identical, but this construct also accidentally catches RuntimeException as well,
-  masking potential bugs.
-  </p>
-  <p>A better approach is to either explicitly catch the specific exceptions that are thrown,
-  or to explicitly catch RuntimeException exception, rethrow it, and then catch all non-Runtime Exceptions, as shown below:</p>
-  <pre>
-  try {
-    ...
-  } catch (RuntimeException e) {
-    throw e;
-  } catch (Exception e) {
-    ... deal with all non-runtime exceptions ...
-  }</pre>
-  
-     
-<h3><a name="RI_REDUNDANT_INTERFACES">RI: Class implements same interface as superclass (RI_REDUNDANT_INTERFACES)</a></h3>
-
-   
-    <p>
-    This class declares that it implements an interface that is also implemented by a superclass.
-    This is redundant because once a superclass implements an interface, all subclasses by default also
-    implement this interface. It may point out that the inheritance hierarchy has changed since
-    this class was created, and consideration should be given to the ownership of
-    the interface's implementation.
-    </p>
-    
-     
-<h3><a name="RV_CHECK_FOR_POSITIVE_INDEXOF">RV: Method checks to see if result of String.indexOf is positive (RV_CHECK_FOR_POSITIVE_INDEXOF)</a></h3>
-
-
-   <p> The method invokes String.indexOf and checks to see if the result is positive or non-positive.
-   It is much more typical to check to see if the result is negative or non-negative. It is
-   positive only if the substring checked for occurs at some place other than at the beginning of
-   the String.</p>
-
-    
-<h3><a name="RV_DONT_JUST_NULL_CHECK_READLINE">RV: Method discards result of readLine after checking if it is nonnull (RV_DONT_JUST_NULL_CHECK_READLINE)</a></h3>
-
-
-   <p> The value returned by readLine is discarded after checking to see if the return
-value is non-null. In almost all situations, if the result is non-null, you will want
-to use that non-null value. Calling readLine again will give you a different line.</p>
-
-    
-<h3><a name="RV_REM_OF_HASHCODE">RV: Remainder of hashCode could be negative (RV_REM_OF_HASHCODE)</a></h3>
-
-
-<p> This code computes a hashCode, and then computes
-the remainder of that value modulo another value. Since the hashCode
-can be negative, the result of the remainder operation
-can also be negative. </p>
-<p> Assuming you want to ensure that the result of your computation is nonnegative,
-you may need to change your code.
-If you know the divisor is a power of 2,
-you can use a bitwise and operator instead (i.e., instead of
-using <code>x.hashCode()%n</code>, use <code>x.hashCode()&amp;(n-1)</code>.
-This is probably faster than computing the remainder as well.
-If you don't know that the divisor is a power of 2, take the absolute
-value of the result of the remainder operation (i.e., use
-<code>Math.abs(x.hashCode()%n)</code>
-</p>
-
-    
-<h3><a name="RV_REM_OF_RANDOM_INT">RV: Remainder of 32-bit signed random integer (RV_REM_OF_RANDOM_INT)</a></h3>
-
-
-<p> This code generates a random signed integer and then computes
-the remainder of that value modulo another value. Since the random
-number can be negative, the result of the remainder operation
-can also be negative. Be sure this is intended, and strongly
-consider using the Random.nextInt(int) method instead.
-</p>
-
-    
-<h3><a name="RV_RETURN_VALUE_IGNORED_INFERRED">RV: Method ignores return value, is this OK? (RV_RETURN_VALUE_IGNORED_INFERRED)</a></h3>
-
-
-<p>This code calls a method and ignores the return value. The return value
-is the same type as the type the method is invoked on, and from our analysis it looks
-like the return value might be important (e.g., like ignoring the
-return value of <code>String.toLowerCase()</code>).
-</p>
-<p>We are guessing that ignoring the return value might be a bad idea just from
-a simple analysis of the body of the method. You can use a @CheckReturnValue annotation
-to instruct FindBugs as to whether ignoring the return value of this method
-is important or acceptable.
-</p>
-<p>Please investigate this closely to decide whether it is OK to ignore the return value.
-</p>
-
-    
-<h3><a name="SA_FIELD_DOUBLE_ASSIGNMENT">SA: Double assignment of field (SA_FIELD_DOUBLE_ASSIGNMENT)</a></h3>
-
-
-<p> This method contains a double assignment of a field; e.g.
-</p>
-<pre>
-  int x,y;
-  public void foo() {
-    x = x = 17;
-  }
-</pre>
-<p>Assigning to a field twice is useless, and may indicate a logic error or typo.</p>
-
-    
-<h3><a name="SA_LOCAL_DOUBLE_ASSIGNMENT">SA: Double assignment of local variable  (SA_LOCAL_DOUBLE_ASSIGNMENT)</a></h3>
-
-
-<p> This method contains a double assignment of a local variable; e.g.
-</p>
-<pre>
-  public void foo() {
-    int x,y;
-    x = x = 17;
-  }
-</pre>
-<p>Assigning the same value to a variable twice is useless, and may indicate a logic error or typo.</p>
-
-    
-<h3><a name="SA_LOCAL_SELF_ASSIGNMENT">SA: Self assignment of local variable (SA_LOCAL_SELF_ASSIGNMENT)</a></h3>
-
-
-<p> This method contains a self assignment of a local variable; e.g.</p>
-<pre>
-  public void foo() {
-    int x = 3;
-    x = x;
-  }
-</pre>
-<p>
-Such assignments are useless, and may indicate a logic error or typo.
-</p>
-
-    
-<h3><a name="SF_SWITCH_FALLTHROUGH">SF: Switch statement found where one case falls through to the next case (SF_SWITCH_FALLTHROUGH)</a></h3>
-
-
-  <p> This method contains a switch statement where one case branch will fall through to the next case.
-  Usually you need to end this case with a break or return.</p>
-
-    
-<h3><a name="SF_SWITCH_NO_DEFAULT">SF: Switch statement found where default case is missing (SF_SWITCH_NO_DEFAULT)</a></h3>
-
-
-  <p> This method contains a switch statement where default case is missing.
-  Usually you need to provide a default case.</p>
-  <p>Because the analysis only looks at the generated bytecode, this warning can be incorrect triggered if
-the default case is at the end of the switch statement and doesn't end with a break statement.
-
-    
-<h3><a name="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD">ST: Write to static field from instance method (ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD)</a></h3>
-
-
-  <p> This instance method writes to a static field. This is tricky to get
-correct if multiple instances are being manipulated,
-and generally bad practice.
-</p>
-
-    
-<h3><a name="SE_PRIVATE_READ_RESOLVE_NOT_INHERITED">Se: Private readResolve method not inherited by subclasses (SE_PRIVATE_READ_RESOLVE_NOT_INHERITED)</a></h3>
-
-
-  <p> This class defines a private readResolve method. Since it is private, it won't be inherited by subclasses.
-This might be intentional and OK, but should be reviewed to ensure it is what is intended.
-</p>
-
-    
-<h3><a name="SE_TRANSIENT_FIELD_OF_NONSERIALIZABLE_CLASS">Se: Transient field of class that isn't Serializable.  (SE_TRANSIENT_FIELD_OF_NONSERIALIZABLE_CLASS)</a></h3>
-
-
-  <p> The field is marked as transient, but the class isn't Serializable, so marking it as transient
-has absolutely no effect.
-This may be leftover marking from a previous version of the code in which the class was transient, or
-it may indicate a misunderstanding of how serialization works.
-</p>
-
-    
-<h3><a name="TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_ALWAYS_SINK">TQ: Value required to have type qualifier, but marked as unknown (TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_ALWAYS_SINK)</a></h3>
-
-      
-      <p>
-      A value is used in a way that requires it to be always be a value denoted by a type qualifier, but
-    there is an explicit annotation stating that it is not known where the value is required to have that type qualifier.
-    Either the usage or the annotation is incorrect.
-      </p>
-      
-    
-<h3><a name="TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_NEVER_SINK">TQ: Value required to not have type qualifier, but marked as unknown (TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_NEVER_SINK)</a></h3>
-
-      
-      <p>
-      A value is used in a way that requires it to be never be a value denoted by a type qualifier, but
-    there is an explicit annotation stating that it is not known where the value is prohibited from having that type qualifier.
-    Either the usage or the annotation is incorrect.
-      </p>
-      
-    
-<h3><a name="UCF_USELESS_CONTROL_FLOW">UCF: Useless control flow (UCF_USELESS_CONTROL_FLOW)</a></h3>
-
-
-<p> This method contains a useless control flow statement, where
-control flow continues onto the same place regardless of whether or not
-the branch is taken. For example,
-this is caused by having an empty statement
-block for an <code>if</code> statement:</p>
-<pre>
-    if (argv.length == 0) {
-    // TODO: handle this case
-    }
-</pre>
-
-    
-<h3><a name="UCF_USELESS_CONTROL_FLOW_NEXT_LINE">UCF: Useless control flow to next line (UCF_USELESS_CONTROL_FLOW_NEXT_LINE)</a></h3>
-
-
-<p> This method contains a useless control flow statement in which control
-flow follows to the same or following line regardless of whether or not
-the branch is taken.
-Often, this is caused by inadvertently using an empty statement as the
-body of an <code>if</code> statement, e.g.:</p>
-<pre>
-    if (argv.length == 1);
-        System.out.println("Hello, " + argv[0]);
-</pre>
-
-    
-<h3><a name="USM_USELESS_ABSTRACT_METHOD">USM: Abstract Method is already defined in implemented interface (USM_USELESS_ABSTRACT_METHOD)</a></h3>
-
-      
-      <p>
-      This abstract method is already defined in an interface that is implemented by this abstract
-      class. This method can be removed, as it provides no additional value.
-      </p>
-      
-    
-<h3><a name="USM_USELESS_SUBCLASS_METHOD">USM: Method superfluously delegates to parent class method (USM_USELESS_SUBCLASS_METHOD)</a></h3>
-
-      
-      <p>
-      This derived method merely calls the same superclass method passing in the exact parameters
-      received. This method can be removed, as it provides no additional value.
-      </p>
-      
-    
-<h3><a name="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD">UrF: Unread public/protected field (URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD)</a></h3>
-
-
-  <p> This field is never read.&nbsp;
-The field is public or protected, so perhaps
-    it is intended to be used with classes not seen as part of the analysis. If not,
-consider removing it from the class.</p>
-
-    
-<h3><a name="UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD">UuF: Unused public or protected field (UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD)</a></h3>
-
-
-  <p> This field is never used.&nbsp;
-The field is public or protected, so perhaps
-    it is intended to be used with classes not seen as part of the analysis. If not,
-consider removing it from the class.</p>
-
-    
-<h3><a name="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR">UwF: Field not initialized in constructor but dereferenced without null check (UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR)</a></h3>
-
-
-  <p> This field is never initialized within any constructor, and is therefore could be null after
-the object is constructed. Elsewhere, it is loaded and dereferenced without a null check.
-This could be a either an error or a questionable design, since
-it means a null pointer exception will be generated if that field is dereferenced
-before being initialized.
-</p>
-
-    
-<h3><a name="UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD">UwF: Unwritten public or protected field (UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD)</a></h3>
-
-
-  <p> No writes were seen to this public/protected field.&nbsp; All reads of it will return the default
-value. Check for errors (should it have been initialized?), or remove it if it is useless.</p>
-
-    
-<h3><a name="XFB_XML_FACTORY_BYPASS">XFB: Method directly allocates a specific implementation of xml interfaces (XFB_XML_FACTORY_BYPASS)</a></h3>
-
-      
-      <p>
-      This method allocates a specific implementation of an xml interface. It is preferable to use
-      the supplied factory classes to create these objects so that the implementation can be
-      changed at runtime. See
-      </p>
-      <ul>
-         <li>javax.xml.parsers.DocumentBuilderFactory</li>
-         <li>javax.xml.parsers.SAXParserFactory</li>
-         <li>javax.xml.transform.TransformerFactory</li>
-         <li>org.w3c.dom.Document.create<i>XXXX</i></li>
-      </ul>
-      <p>for details.</p>
-      
-    
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-</td></tr></table>
-</body></html>
diff --git a/tools/findbugs/doc/bug-logo.png b/tools/findbugs/doc/bug-logo.png
deleted file mode 100644
index 8d719d0..0000000
--- a/tools/findbugs/doc/bug-logo.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/bugDescriptions.html b/tools/findbugs/doc/bugDescriptions.html
deleted file mode 100644
index be1c9d7..0000000
--- a/tools/findbugs/doc/bugDescriptions.html
+++ /dev/null
@@ -1,5325 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html><head><title>FindBugs Bug Descriptions</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css"/>
-<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
-</head><body>
-
-<table width="100%"><tr>
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-<td align="left" valign="top">
-<h1>FindBugs Bug Descriptions</h1>
-<p>This document lists the standard bug patterns reported by
-<a href="http://findbugs.sourceforge.net">FindBugs</a> version 2.0.3.</p>
-<h2>Summary</h2>
-<table width="100%">
-<tr bgcolor="#b9b9fe"><th>Description</th><th>Category</th></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_EQUALS_METHOD_SHOULD_WORK_FOR_ALL_OBJECTS">BC: Equals method should not assume anything about the type of its argument</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BIT_SIGNED_CHECK">BIT: Check for sign of bitwise operation</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#CN_IDIOM">CN: Class implements Cloneable but does not define or use clone method</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#CN_IDIOM_NO_SUPER_CALL">CN: clone method does not call super.clone()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE">CN: Class defines clone() but doesn't implement Cloneable</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#CO_ABSTRACT_SELF">Co: Abstract class defines covariant compareTo() method</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#CO_SELF_NO_OBJECT">Co: Covariant compareTo() method defined</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DE_MIGHT_DROP">DE: Method might drop exception</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DE_MIGHT_IGNORE">DE: Method might ignore exception</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_ENTRY_SETS_MAY_REUSE_ENTRY_OBJECTS">DMI: Adding elements of an entry set may fail due to reuse of Entry objects</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_RANDOM_USED_ONLY_ONCE">DMI: Random object created and used only once</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_USING_REMOVEALL_TO_CLEAR_COLLECTION">DMI: Don't use removeAll to clear a collection</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_EXIT">Dm: Method invokes System.exit(...)</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_RUN_FINALIZERS_ON_EXIT">Dm: Method invokes dangerous method runFinalizersOnExit</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ES_COMPARING_PARAMETER_STRING_WITH_EQ">ES: Comparison of String parameter using == or !=</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ES_COMPARING_STRINGS_WITH_EQ">ES: Comparison of String objects using == or !=</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_ABSTRACT_SELF">Eq: Abstract class defines covariant equals() method</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS">Eq: Equals checks for incompatible operand</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_COMPARETO_USE_OBJECT_EQUALS">Eq: Class defines compareTo(...) and uses Object.equals()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_GETCLASS_AND_CLASS_CONSTANT">Eq: equals method fails for subtypes</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_SELF_NO_OBJECT">Eq: Covariant equals() method defined</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FI_EMPTY">FI: Empty finalizer should be deleted</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FI_EXPLICIT_INVOCATION">FI: Explicit invocation of finalizer</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FI_FINALIZER_NULLS_FIELDS">FI: Finalizer nulls fields</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FI_FINALIZER_ONLY_NULLS_FIELDS">FI: Finalizer only nulls fields</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FI_MISSING_SUPER_CALL">FI: Finalizer does not call superclass finalizer</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FI_NULLIFY_SUPER">FI: Finalizer nullifies superclass finalizer</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FI_USELESS">FI: Finalizer does nothing but call superclass finalizer</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_USES_NEWLINE">FS: Format string should use %n rather than \n</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#GC_UNCHECKED_TYPE_IN_GENERIC_CALL">GC: Unchecked type in generic call</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HE_EQUALS_NO_HASHCODE">HE: Class defines equals() but not hashCode()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#HE_EQUALS_USE_HASHCODE">HE: Class defines equals() and uses Object.hashCode()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HE_HASHCODE_NO_EQUALS">HE: Class defines hashCode() but not equals()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#HE_HASHCODE_USE_OBJECT_EQUALS">HE: Class defines hashCode() and uses Object.equals()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HE_INHERITS_EQUALS_USE_HASHCODE">HE: Class inherits equals() and uses Object.hashCode()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION">IC: Superclass uses subclass during initialization</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IMSE_DONT_CATCH_IMSE">IMSE: Dubious catching of IllegalMonitorStateException</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ISC_INSTANTIATE_STATIC_CLASS">ISC: Needless instantiation of class that only supplies static methods</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IT_NO_SUCH_ELEMENT">It: Iterator next() method can't throw NoSuchElementException</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#J2EE_STORE_OF_NON_SERIALIZABLE_OBJECT_INTO_SESSION">J2EE: Store of non serializable object into HttpSession</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#JCIP_FIELD_ISNT_FINAL_IN_IMMUTABLE_CLASS">JCIP: Fields of immutable classes should be final</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_BOOLEAN_RETURN_NULL">NP: Method with Boolean return type returns explicit null</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_CLONE_COULD_RETURN_NULL">NP: Clone method may return null</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_EQUALS_SHOULD_HANDLE_NULL_ARGUMENT">NP: equals() method does not check for null argument</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_TOSTRING_COULD_RETURN_NULL">NP: toString method may return null</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_CLASS_NAMING_CONVENTION">Nm: Class names should start with an upper case letter</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_CLASS_NOT_EXCEPTION">Nm: Class is not derived from an Exception, even though it is named as such</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_CONFUSING">Nm: Confusing method names</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_FIELD_NAMING_CONVENTION">Nm: Field names should start with a lower case letter</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_FUTURE_KEYWORD_USED_AS_IDENTIFIER">Nm: Use of identifier that is a keyword in later versions of Java</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_FUTURE_KEYWORD_USED_AS_MEMBER_IDENTIFIER">Nm: Use of identifier that is a keyword in later versions of Java</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_METHOD_NAMING_CONVENTION">Nm: Method names should start with a lower case letter</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_SAME_SIMPLE_NAME_AS_INTERFACE">Nm: Class names shouldn't shadow simple name of implemented interface</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_SAME_SIMPLE_NAME_AS_SUPERCLASS">Nm: Class names shouldn't shadow simple name of superclass</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_VERY_CONFUSING_INTENTIONAL">Nm: Very confusing method names (but perhaps intentional)</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_WRONG_PACKAGE_INTENTIONAL">Nm: Method doesn't override method in superclass due to wrong package for parameter</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ODR_OPEN_DATABASE_RESOURCE">ODR: Method may fail to close database resource</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ODR_OPEN_DATABASE_RESOURCE_EXCEPTION_PATH">ODR: Method may fail to close database resource on exception</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#OS_OPEN_STREAM">OS: Method may fail to close stream</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#OS_OPEN_STREAM_EXCEPTION_PATH">OS: Method may fail to close stream on exception</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#PZ_DONT_REUSE_ENTRY_OBJECTS_IN_ITERATORS">PZ: Don't reuse entry objects in iterators</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RC_REF_COMPARISON_BAD_PRACTICE">RC: Suspicious reference comparison to constant</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN">RC: Suspicious reference comparison of Boolean values</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RR_NOT_CHECKED">RR: Method ignores results of InputStream.read()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SR_NOT_CHECKED">RR: Method ignores results of InputStream.skip()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_NEGATING_RESULT_OF_COMPARETO">RV: Negating the result of compareTo()/compare()</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_RETURN_VALUE_IGNORED_BAD_PRACTICE">RV: Method ignores exceptional return value</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SI_INSTANCE_BEFORE_FINALS_ASSIGNED">SI: Static initializer creates instance before all static final fields assigned</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SW_SWING_METHODS_INVOKED_IN_SWING_THREAD">SW: Certain swing methods needs to be invoked in Swing thread</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_BAD_FIELD">Se: Non-transient non-serializable instance field in serializable class</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_BAD_FIELD_INNER_CLASS">Se: Non-serializable class has a serializable inner class</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_BAD_FIELD_STORE">Se: Non-serializable value stored into instance field of a serializable class</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_COMPARATOR_SHOULD_BE_SERIALIZABLE">Se: Comparator doesn't implement Serializable</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_INNER_CLASS">Se: Serializable inner class</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_NONFINAL_SERIALVERSIONID">Se: serialVersionUID isn't final</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_NONLONG_SERIALVERSIONID">Se: serialVersionUID isn't long</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_NONSTATIC_SERIALVERSIONID">Se: serialVersionUID isn't static</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_NO_SUITABLE_CONSTRUCTOR">Se: Class is Serializable but its superclass doesn't define a void constructor</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_NO_SUITABLE_CONSTRUCTOR_FOR_EXTERNALIZATION">Se: Class is Externalizable but doesn't define a void constructor</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_READ_RESOLVE_MUST_RETURN_OBJECT">Se: The readResolve method must be declared with a return type of Object. </a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_TRANSIENT_FIELD_NOT_RESTORED">Se: Transient field that isn't set by deserialization. </a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_NO_SERIALVERSIONID">SnVI: Class is Serializable, but doesn't define serialVersionUID</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UI_INHERITANCE_UNSAFE_GETRESOURCE">UI: Usage of GetResource may be unsafe if class is extended</a></td><td>Bad practice</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BC_IMPOSSIBLE_CAST">BC: Impossible cast</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_IMPOSSIBLE_DOWNCAST">BC: Impossible downcast</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY">BC: Impossible downcast of toArray() result</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_IMPOSSIBLE_INSTANCEOF">BC: instanceof will always return false</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BIT_ADD_OF_SIGNED_BYTE">BIT: Bitwise add of signed byte value</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BIT_AND">BIT: Incompatible bit masks</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BIT_AND_ZZ">BIT: Check to see if ((...) & 0) == 0</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BIT_IOR">BIT: Incompatible bit masks</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BIT_IOR_OF_SIGNED_BYTE">BIT: Bitwise OR of signed byte value</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BIT_SIGNED_CHECK_HIGH_BIT">BIT: Check for sign of bitwise operation</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BOA_BADLY_OVERRIDDEN_ADAPTER">BOA: Class overrides a method implemented in super class Adapter wrongly</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ICAST_BAD_SHIFT_AMOUNT">BSHIFT: 32 bit int shifted by an amount not in the range -31..31</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BX_UNBOXED_AND_COERCED_FOR_TERNARY_OPERATOR">Bx: Primitive value is unboxed and coerced for ternary operator</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#CO_COMPARETO_RESULTS_MIN_VALUE">Co: compareTo()/compare() returns Integer.MIN_VALUE</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DLS_DEAD_LOCAL_INCREMENT_IN_RETURN">DLS: Useless increment in return statement</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DLS_DEAD_STORE_OF_CLASS_LITERAL">DLS: Dead store of class literal</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DLS_OVERWRITTEN_INCREMENT">DLS: Overwritten increment</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_ARGUMENTS_WRONG_ORDER">DMI: Reversed method arguments</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_BAD_MONTH">DMI: Bad constant value for month</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_BIGDECIMAL_CONSTRUCTED_FROM_DOUBLE">DMI: BigDecimal constructed from double that isn't represented precisely</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_CALLING_NEXT_FROM_HASNEXT">DMI: hasNext method invokes next</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_COLLECTIONS_SHOULD_NOT_CONTAIN_THEMSELVES">DMI: Collections should not contain themselves</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_DOH">DMI: D'oh! A nonsensical method invocation</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_INVOKING_HASHCODE_ON_ARRAY">DMI: Invocation of hashCode on an array</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_LONG_BITS_TO_DOUBLE_INVOKED_ON_INT">DMI: Double.longBitsToDouble invoked on an int</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_VACUOUS_SELF_COLLECTION_CALL">DMI: Vacuous call to collections</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_ANNOTATION_IS_NOT_VISIBLE_TO_REFLECTION">Dm: Can't use reflection to check for presence of annotation without runtime retention</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_FUTILE_ATTEMPT_TO_CHANGE_MAXPOOL_SIZE_OF_SCHEDULED_THREAD_POOL_EXECUTOR">Dm: Futile attempt to change max pool size of ScheduledThreadPoolExecutor</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_SCHEDULED_THREAD_POOL_EXECUTOR_WITH_ZERO_CORE_THREADS">Dm: Creation of ScheduledThreadPoolExecutor with zero core threads</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_VACUOUS_CALL_TO_EASYMOCK_METHOD">Dm: Useless/vacuous call to EasyMock method</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EC_ARRAY_AND_NONARRAY">EC: equals() used to compare array and nonarray</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EC_BAD_ARRAY_COMPARE">EC: Invocation of equals() on an array, which is equivalent to ==</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EC_INCOMPATIBLE_ARRAY_COMPARE">EC: equals(...) used to compare incompatible arrays</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EC_NULL_ARG">EC: Call to equals(null)</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EC_UNRELATED_CLASS_AND_INTERFACE">EC: Call to equals() comparing unrelated class and interface</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EC_UNRELATED_INTERFACES">EC: Call to equals() comparing different interface types</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EC_UNRELATED_TYPES">EC: Call to equals() comparing different types</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EC_UNRELATED_TYPES_USING_POINTER_EQUALITY">EC: Using pointer equality to compare different types</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_ALWAYS_FALSE">Eq: equals method always returns false</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_ALWAYS_TRUE">Eq: equals method always returns true</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_COMPARING_CLASS_NAMES">Eq: equals method compares class names rather than class objects</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_DONT_DEFINE_EQUALS_FOR_ENUM">Eq: Covariant equals() method defined for enum</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_OTHER_NO_OBJECT">Eq: equals() method defined that doesn't override equals(Object)</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_OTHER_USE_OBJECT">Eq: equals() method defined that doesn't override Object.equals(Object)</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC">Eq: equals method overrides equals in superclass and may not be symmetric</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_SELF_USE_OBJECT">Eq: Covariant equals() method defined, Object.equals(Object) inherited</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#FE_TEST_IF_EQUAL_TO_NOT_A_NUMBER">FE: Doomed test for equality to NaN</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_BAD_ARGUMENT">FS: Format string placeholder incompatible with passed argument</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VA_FORMAT_STRING_BAD_CONVERSION">FS: The type of a supplied argument doesn't match format specifier</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED">FS: MessageFormat supplied where printf style format expected</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VA_FORMAT_STRING_EXTRA_ARGUMENTS_PASSED">FS: More arguments are passed than are actually used in the format string</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_ILLEGAL">FS: Illegal format string</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VA_FORMAT_STRING_MISSING_ARGUMENT">FS: Format string references missing argument</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_FORMAT_STRING_NO_PREVIOUS_ARGUMENT">FS: No previous argument for format string</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#GC_UNRELATED_TYPES">GC: No relationship between generic parameter and method argument</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HE_SIGNATURE_DECLARES_HASHING_OF_UNHASHABLE_CLASS">HE: Signature declares use of unhashable class in hashed construct</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#HE_USE_OF_UNHASHABLE_CLASS">HE: Use of class without a hashCode() method in a hashed data structure</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ICAST_INT_2_LONG_AS_INSTANT">ICAST: int value converted to long and used as absolute time</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ICAST_INT_CAST_TO_DOUBLE_PASSED_TO_CEIL">ICAST: Integral value cast to double and then passed to Math.ceil</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ICAST_INT_CAST_TO_FLOAT_PASSED_TO_ROUND">ICAST: int value cast to float and then passed to Math.round</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IJU_ASSERT_METHOD_INVOKED_FROM_RUN_METHOD">IJU: JUnit assertion in run method will not be noticed by JUnit</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IJU_BAD_SUITE_METHOD">IJU: TestCase declares a bad suite method </a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IJU_NO_TESTS">IJU: TestCase has no tests</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IJU_SETUP_NO_SUPER">IJU: TestCase defines setUp that doesn't call super.setUp()</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IJU_SUITE_NOT_STATIC">IJU: TestCase implements a non-static suite method </a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IJU_TEARDOWN_NO_SUPER">IJU: TestCase defines tearDown that doesn't call super.tearDown()</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IL_CONTAINER_ADDED_TO_ITSELF">IL: A collection is added to itself</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IL_INFINITE_LOOP">IL: An apparent infinite loop</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IL_INFINITE_RECURSIVE_LOOP">IL: An apparent infinite recursive loop</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IM_MULTIPLYING_RESULT_OF_IREM">IM: Integer multiply of result of integer remainder</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#INT_BAD_COMPARISON_WITH_INT_VALUE">INT: Bad comparison of int value with long constant</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#INT_BAD_COMPARISON_WITH_NONNEGATIVE_VALUE">INT: Bad comparison of nonnegative value with negative constant</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#INT_BAD_COMPARISON_WITH_SIGNED_BYTE">INT: Bad comparison of signed byte</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IO_APPENDING_TO_OBJECT_OUTPUT_STREAM">IO: Doomed attempt to append to an object output stream</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN">IP: A parameter is dead upon entry to a method but overwritten</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MF_CLASS_MASKS_FIELD">MF: Class defines field that masks a superclass field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MF_METHOD_MASKS_FIELD">MF: Method defines a variable that obscures a field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_ALWAYS_NULL">NP: Null pointer dereference</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_ALWAYS_NULL_EXCEPTION">NP: Null pointer dereference in method on exception path</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_ARGUMENT_MIGHT_BE_NULL">NP: Method does not check for null argument</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_CLOSING_NULL">NP: close() invoked on a value that is always null</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_GUARANTEED_DEREF">NP: Null value is guaranteed to be dereferenced</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_GUARANTEED_DEREF_ON_EXCEPTION_PATH">NP: Value is null and guaranteed to be dereferenced on exception path</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR">NP: Nonnull field is not initialized</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_NONNULL_PARAM_VIOLATION">NP: Method call passes null to a nonnull parameter </a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NONNULL_RETURN_VIOLATION">NP: Method may return null, but is declared @NonNull</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_NULL_INSTANCEOF">NP: A known null value is checked to see if it is an instance of a type</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NULL_ON_SOME_PATH">NP: Possible null pointer dereference</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_NULL_ON_SOME_PATH_EXCEPTION">NP: Possible null pointer dereference in method on exception path</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NULL_PARAM_DEREF">NP: Method call passes null for nonnull parameter</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS">NP: Method call passes null for nonnull parameter</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NULL_PARAM_DEREF_NONVIRTUAL">NP: Non-virtual method call passes null for nonnull parameter</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_STORE_INTO_NONNULL_FIELD">NP: Store of null value into field annotated NonNull</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_UNWRITTEN_FIELD">NP: Read of unwritten field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_BAD_EQUAL">Nm: Class defines equal(Object); should it be equals(Object)?</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_LCASE_HASHCODE">Nm: Class defines hashcode(); should it be hashCode()?</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_LCASE_TOSTRING">Nm: Class defines tostring(); should it be toString()?</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_METHOD_CONSTRUCTOR_CONFUSION">Nm: Apparent method/constructor confusion</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NM_VERY_CONFUSING">Nm: Very confusing method names</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NM_WRONG_PACKAGE">Nm: Method doesn't override method in superclass due to wrong package for parameter</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#QBA_QUESTIONABLE_BOOLEAN_ASSIGNMENT">QBA: Method assigns boolean literal in boolean expression</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RC_REF_COMPARISON">RC: Suspicious reference comparison</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE">RCN: Nullcheck of value previously dereferenced</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RE_BAD_SYNTAX_FOR_REGULAR_EXPRESSION">RE: Invalid syntax for regular expression</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RE_CANT_USE_FILE_SEPARATOR_AS_REGULAR_EXPRESSION">RE: File.separator used for regular expression</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RE_POSSIBLE_UNINTENDED_PATTERN">RE: "." or "|" used for regular expression</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_01_TO_INT">RV: Random value from 0 to 1 is coerced to the integer 0</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_ABSOLUTE_VALUE_OF_HASHCODE">RV: Bad attempt to compute absolute value of signed 32-bit hashcode </a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_ABSOLUTE_VALUE_OF_RANDOM_INT">RV: Bad attempt to compute absolute value of signed random integer</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_CHECK_COMPARETO_FOR_SPECIFIC_RETURN_VALUE">RV: Code checks for specific values returned by compareTo</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_EXCEPTION_NOT_THROWN">RV: Exception created and dropped rather than thrown</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_RETURN_VALUE_IGNORED">RV: Method ignores return value</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RpC_REPEATED_CONDITIONAL_TEST">RpC: Repeated conditional tests</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SA_FIELD_SELF_ASSIGNMENT">SA: Self assignment of field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SA_FIELD_SELF_COMPARISON">SA: Self comparison of field with itself</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SA_FIELD_SELF_COMPUTATION">SA: Nonsensical self computation involving a field (e.g., x & x)</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SA_LOCAL_SELF_ASSIGNMENT_INSTEAD_OF_FIELD">SA: Self assignment of local rather than assignment to field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SA_LOCAL_SELF_COMPARISON">SA: Self comparison of value with itself</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SA_LOCAL_SELF_COMPUTATION">SA: Nonsensical self computation involving a variable (e.g., x & x)</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH">SF: Dead store due to switch statement fall through</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH_TO_THROW">SF: Dead store due to switch statement fall through to throw</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SIC_THREADLOCAL_DEADLY_EMBRACE">SIC: Deadly embrace of non-static inner class and thread local</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SIO_SUPERFLUOUS_INSTANCEOF">SIO: Unnecessary type check done using instanceof operator</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SQL_BAD_PREPARED_STATEMENT_ACCESS">SQL: Method attempts to access a prepared statement parameter with index 0</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SQL_BAD_RESULTSET_ACCESS">SQL: Method attempts to access a result set field with index 0</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#STI_INTERRUPTED_ON_CURRENTTHREAD">STI: Unneeded use of currentThread() call, to call interrupted() </a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#STI_INTERRUPTED_ON_UNKNOWNTHREAD">STI: Static Thread.interrupted() method invoked on thread instance</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_METHOD_MUST_BE_PRIVATE">Se: Method must be private in order for serialization to work</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_READ_RESOLVE_IS_STATIC">Se: The readResolve method must not be declared as a static method.  </a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#TQ_ALWAYS_VALUE_USED_WHERE_NEVER_REQUIRED">TQ: Value annotated as carrying a type qualifier used where a value that must not carry that qualifier is required</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TQ_COMPARING_VALUES_WITH_INCOMPATIBLE_TYPE_QUALIFIERS">TQ: Comparing values with incompatible type qualifiers</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#TQ_MAYBE_SOURCE_VALUE_REACHES_ALWAYS_SINK">TQ: Value that might not carry a type qualifier is always used in a way requires that type qualifier</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TQ_MAYBE_SOURCE_VALUE_REACHES_NEVER_SINK">TQ: Value that might carry a type qualifier is always used in a way prohibits it from having that type qualifier</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#TQ_NEVER_VALUE_USED_WHERE_ALWAYS_REQUIRED">TQ: Value annotated as never carrying a type qualifier used where value carrying that qualifier is required</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED">TQ: Value without a type qualifier used where a value is required to have that qualifier</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UMAC_UNCALLABLE_METHOD_OF_ANONYMOUS_CLASS">UMAC: Uncallable method defined in anonymous class</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UR_UNINIT_READ">UR: Uninitialized read of field in constructor</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR">UR: Uninitialized read of field method called from constructor of superclass</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_INVOKING_TOSTRING_ON_ANONYMOUS_ARRAY">USELESS_STRING: Invocation of toString on an unnamed array</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_INVOKING_TOSTRING_ON_ARRAY">USELESS_STRING: Invocation of toString on an array</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VA_FORMAT_STRING_BAD_CONVERSION_FROM_ARRAY">USELESS_STRING: Array formatted in useless way using format string</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UWF_NULL_FIELD">UwF: Field only ever set to null</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UWF_UNWRITTEN_FIELD">UwF: Unwritten field</a></td><td>Correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VA_PRIMITIVE_ARRAY_PASSED_TO_OBJECT_VARARG">VA: Primitive array passed to function expecting a variable number of object arguments</a></td><td>Correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE">LG: Potential lost logger changes due to weak reference in OpenJDK</a></td><td>Experimental</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#OBL_UNSATISFIED_OBLIGATION">OBL: Method may fail to clean up stream or resource</a></td><td>Experimental</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE">OBL: Method may fail to clean up stream or resource on checked exception</a></td><td>Experimental</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_CONVERT_CASE">Dm: Consider using Locale parameterized version of invoked method</a></td><td>Internationalization</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_DEFAULT_ENCODING">Dm: Reliance on default encoding</a></td><td>Internationalization</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED">DP: Classloaders should only be created inside doPrivileged block</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DP_DO_INSIDE_DO_PRIVILEGED">DP: Method invoked that should be only be invoked inside a doPrivileged block</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EI_EXPOSE_REP">EI: May expose internal representation by returning reference to mutable object</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EI_EXPOSE_REP2">EI2: May expose internal representation by incorporating reference to mutable object</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FI_PUBLIC_SHOULD_BE_PROTECTED">FI: Finalizer should be protected, not public</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EI_EXPOSE_STATIC_REP2">MS: May expose internal static state by storing a mutable object into a static field</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MS_CANNOT_BE_FINAL">MS: Field isn't final and can't be protected from malicious code</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MS_EXPOSE_REP">MS: Public static method may expose internal representation by returning array</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MS_FINAL_PKGPROTECT">MS: Field should be both final and package protected</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MS_MUTABLE_ARRAY">MS: Field is a mutable array</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MS_MUTABLE_HASHTABLE">MS: Field is a mutable Hashtable</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MS_OOI_PKGPROTECT">MS: Field should be moved out of an interface and made package protected</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MS_PKGPROTECT">MS: Field should be package protected</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MS_SHOULD_BE_FINAL">MS: Field isn't final but should be</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MS_SHOULD_BE_REFACTORED_TO_BE_FINAL">MS: Field isn't final but should be refactored to be so</a></td><td>Malicious code vulnerability</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION">AT: Sequence of calls to concurrent abstraction may not be atomic</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DC_DOUBLECHECK">DC: Possible double check of field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DL_SYNCHRONIZATION_ON_BOOLEAN">DL: Synchronization on Boolean</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DL_SYNCHRONIZATION_ON_BOXED_PRIMITIVE">DL: Synchronization on boxed primitive</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DL_SYNCHRONIZATION_ON_SHARED_CONSTANT">DL: Synchronization on interned String </a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DL_SYNCHRONIZATION_ON_UNSHARED_BOXED_PRIMITIVE">DL: Synchronization on boxed primitive values</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_MONITOR_WAIT_ON_CONDITION">Dm: Monitor wait() called on Condition</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_USELESS_THREAD">Dm: A thread was created using the default empty run method</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ESync_EMPTY_SYNC">ESync: Empty synchronized block</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IS2_INCONSISTENT_SYNC">IS: Inconsistent synchronization</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IS_FIELD_NOT_GUARDED">IS: Field not guarded against concurrent access</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#JLM_JSR166_LOCK_MONITORENTER">JLM: Synchronization performed on Lock</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#JLM_JSR166_UTILCONCURRENT_MONITORENTER">JLM: Synchronization performed on util.concurrent instance</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#JML_JSR166_CALLING_WAIT_RATHER_THAN_AWAIT">JLM: Using monitor style wait methods on util.concurrent abstraction</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#LI_LAZY_INIT_STATIC">LI: Incorrect lazy initialization of static field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#LI_LAZY_INIT_UPDATE_STATIC">LI: Incorrect lazy initialization and update of static field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ML_SYNC_ON_FIELD_TO_GUARD_CHANGING_THAT_FIELD">ML: Synchronization on field in futile attempt to guard that field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ML_SYNC_ON_UPDATED_FIELD">ML: Method synchronizes on an updated field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MSF_MUTABLE_SERVLET_FIELD">MSF: Mutable servlet field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MWN_MISMATCHED_NOTIFY">MWN: Mismatched notify()</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MWN_MISMATCHED_WAIT">MWN: Mismatched wait()</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NN_NAKED_NOTIFY">NN: Naked notify</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_SYNC_AND_NULL_CHECK_FIELD">NP: Synchronize and null check on the same field.</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NO_NOTIFY_NOT_NOTIFYALL">No: Using notify() rather than notifyAll()</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RS_READOBJECT_SYNC">RS: Class's readObject() method is synchronized</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED">RV: Return value of putIfAbsent ignored, value passed to putIfAbsent reused</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RU_INVOKE_RUN">Ru: Invokes run on a thread (did you mean to start it instead?)</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SC_START_IN_CTOR">SC: Constructor invokes Thread.start()</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SP_SPIN_ON_FIELD">SP: Method spins on field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#STCAL_INVOKE_ON_STATIC_CALENDAR_INSTANCE">STCAL: Call to static Calendar</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE">STCAL: Call to static DateFormat</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#STCAL_STATIC_CALENDAR_INSTANCE">STCAL: Static Calendar field</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#STCAL_STATIC_SIMPLE_DATE_FORMAT_INSTANCE">STCAL: Static DateFormat</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SWL_SLEEP_WITH_LOCK_HELD">SWL: Method calls Thread.sleep() with a lock held</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TLW_TWO_LOCK_WAIT">TLW: Wait with two locks held</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UG_SYNC_SET_UNSYNC_GET">UG: Unsynchronized get method, synchronized set method</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UL_UNRELEASED_LOCK">UL: Method does not release lock on all paths</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UL_UNRELEASED_LOCK_EXCEPTION_PATH">UL: Method does not release lock on all exception paths</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UW_UNCOND_WAIT">UW: Unconditional wait</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#VO_VOLATILE_INCREMENT">VO: An increment to a volatile field isn't atomic</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VO_VOLATILE_REFERENCE_TO_ARRAY">VO: A volatile reference to an array doesn't treat the array elements as volatile</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#WL_USING_GETCLASS_RATHER_THAN_CLASS_LITERAL">WL: Synchronization on getClass rather than class literal</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#WS_WRITEOBJECT_SYNC">WS: Class's writeObject() method is synchronized but nothing else is</a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#WA_AWAIT_NOT_IN_LOOP">Wa: Condition.await() not in loop </a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#WA_NOT_IN_LOOP">Wa: Wait not in loop </a></td><td>Multithreaded correctness</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BX_BOXING_IMMEDIATELY_UNBOXED">Bx: Primitive value is boxed and then immediately unboxed</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BX_BOXING_IMMEDIATELY_UNBOXED_TO_PERFORM_COERCION">Bx: Primitive value is boxed then unboxed to perform primitive coercion</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BX_UNBOXING_IMMEDIATELY_REBOXED">Bx: Boxed value is unboxed and then immediately reboxed</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_BOXED_PRIMITIVE_FOR_PARSING">Bx: Boxing/unboxing to parse a primitive</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_BOXED_PRIMITIVE_TOSTRING">Bx: Method allocates a boxed primitive just to call toString</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_FP_NUMBER_CTOR">Bx: Method invokes inefficient floating-point Number constructor; use static valueOf instead</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_NUMBER_CTOR">Bx: Method invokes inefficient Number constructor; use static valueOf instead</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_BLOCKING_METHODS_ON_URL">Dm: The equals and hashCode methods of URL are blocking</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_COLLECTION_OF_URLS">Dm: Maps and sets of URLs can be performance hogs</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_BOOLEAN_CTOR">Dm: Method invokes inefficient Boolean constructor; use Boolean.valueOf(...) instead</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_GC">Dm: Explicit garbage collection; extremely dubious except in benchmarking code</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_NEW_FOR_GETCLASS">Dm: Method allocates an object, only to get the class object</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_NEXTINT_VIA_NEXTDOUBLE">Dm: Use the nextInt method of Random rather than nextDouble to generate a random integer</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_STRING_CTOR">Dm: Method invokes inefficient new String(String) constructor</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DM_STRING_TOSTRING">Dm: Method invokes toString() method on a String</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DM_STRING_VOID_CTOR">Dm: Method invokes inefficient new String() constructor</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HSC_HUGE_SHARED_STRING_CONSTANT">HSC: Huge string constants is duplicated across multiple class files</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ITA_INEFFICIENT_TO_ARRAY">ITA: Method uses toArray() with zero-length array argument</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SBSC_USE_STRINGBUFFER_CONCATENATION">SBSC: Method concatenates strings using + in a loop</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SIC_INNER_SHOULD_BE_STATIC">SIC: Should be a static inner class</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SIC_INNER_SHOULD_BE_STATIC_ANON">SIC: Could be refactored into a named static inner class</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SIC_INNER_SHOULD_BE_STATIC_NEEDS_THIS">SIC: Could be refactored into a static inner class</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SS_SHOULD_BE_STATIC">SS: Unread field: should this field be static?</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UM_UNNECESSARY_MATH">UM: Method calls static Math class method on a constant value</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UPM_UNCALLED_PRIVATE_METHOD">UPM: Private method is never called</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#URF_UNREAD_FIELD">UrF: Unread field</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UUF_UNUSED_FIELD">UuF: Unused field</a></td><td>Performance</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#WMI_WRONG_MAP_ITERATOR">WMI: Inefficient use of keySet iterator instead of entrySet iterator</a></td><td>Performance</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_CONSTANT_DB_PASSWORD">Dm: Hardcoded constant database password</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_EMPTY_DB_PASSWORD">Dm: Empty database password</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#HRS_REQUEST_PARAMETER_TO_COOKIE">HRS: HTTP cookie formed from untrusted input</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#HRS_REQUEST_PARAMETER_TO_HTTP_HEADER">HRS: HTTP Response splitting vulnerability</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#PT_ABSOLUTE_PATH_TRAVERSAL">PT: Absolute path traversal in servlet</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#PT_RELATIVE_PATH_TRAVERSAL">PT: Relative path traversal in servlet</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SQL_NONCONSTANT_STRING_PASSED_TO_EXECUTE">SQL: Nonconstant string passed to execute method on an SQL statement</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRING">SQL: A prepared statement is generated from a nonconstant String</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#XSS_REQUEST_PARAMETER_TO_JSP_WRITER">XSS: JSP reflected cross site scripting vulnerability</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#XSS_REQUEST_PARAMETER_TO_SEND_ERROR">XSS: Servlet reflected cross site scripting vulnerability in error page</a></td><td>Security</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#XSS_REQUEST_PARAMETER_TO_SERVLET_WRITER">XSS: Servlet reflected cross site scripting vulnerability</a></td><td>Security</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BC_BAD_CAST_TO_ABSTRACT_COLLECTION">BC: Questionable cast to abstract collection </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_BAD_CAST_TO_CONCRETE_COLLECTION">BC: Questionable cast to concrete collection</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BC_UNCONFIRMED_CAST">BC: Unchecked/unconfirmed cast</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#BC_UNCONFIRMED_CAST_OF_RETURN_VALUE">BC: Unchecked/unconfirmed cast of return value from method</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#BC_VACUOUS_INSTANCEOF">BC: instanceof will always return true</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ICAST_QUESTIONABLE_UNSIGNED_RIGHT_SHIFT">BSHIFT: Unsigned right shift cast to short/byte</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#CI_CONFUSED_INHERITANCE">CI: Class is final but declares protected field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DB_DUPLICATE_BRANCHES">DB: Method uses the same code for two branches</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DB_DUPLICATE_SWITCH_CLAUSES">DB: Method uses the same code for two switch clauses</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DLS_DEAD_LOCAL_STORE">DLS: Dead store to local variable</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DLS_DEAD_LOCAL_STORE_IN_RETURN">DLS: Useless assignment in return statement</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DLS_DEAD_LOCAL_STORE_OF_NULL">DLS: Dead store of null to local variable</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DLS_DEAD_LOCAL_STORE_SHADOWS_FIELD">DLS: Dead store to local variable that shadows field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_HARDCODED_ABSOLUTE_FILENAME">DMI: Code contains a hard coded reference to an absolute pathname</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_NONSERIALIZABLE_OBJECT_WRITTEN">DMI: Non serializable object written to ObjectOutput</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#DMI_USELESS_SUBSTRING">DMI: Invocation of substring(0), which returns the original value</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#DMI_THREAD_PASSED_WHERE_RUNNABLE_EXPECTED">Dm: Thread passed where Runnable expected</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#EQ_DOESNT_OVERRIDE_EQUALS">Eq: Class doesn't override equals in superclass</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#EQ_UNUSUAL">Eq: Unusual equals method </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#FE_FLOATING_POINT_EQUALITY">FE: Test for floating point equality</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#VA_FORMAT_STRING_BAD_CONVERSION_TO_BOOLEAN">FS: Non-Boolean argument formatted using %b format specifier</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IA_AMBIGUOUS_INVOCATION_OF_INHERITED_OR_OUTER_METHOD">IA: Potentially ambiguous invocation of either an inherited or outer method</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IC_INIT_CIRCULARITY">IC: Initialization circularity</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ICAST_IDIV_CAST_TO_DOUBLE">ICAST: Integral division result cast to double or float</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#ICAST_INTEGER_MULTIPLY_CAST_TO_LONG">ICAST: Result of integer multiplication cast to long</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#IM_AVERAGE_COMPUTATION_COULD_OVERFLOW">IM: Computation of average could overflow</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#IM_BAD_CHECK_FOR_ODD">IM: Check for oddness that won't work for negative numbers </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#INT_BAD_REM_BY_1">INT: Integer remainder modulo 1</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#INT_VACUOUS_BIT_OPERATION">INT: Vacuous bit mask operation on integer value</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#INT_VACUOUS_COMPARISON">INT: Vacuous comparison of integer value</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#MTIA_SUSPECT_SERVLET_INSTANCE_FIELD">MTIA: Class extends Servlet class and uses instance variables</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#MTIA_SUSPECT_STRUTS_INSTANCE_FIELD">MTIA: Class extends Struts Action class and uses instance variables</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_DEREFERENCE_OF_READLINE_VALUE">NP: Dereference of the result of readLine() without nullcheck</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_IMMEDIATE_DEREFERENCE_OF_READLINE">NP: Immediate dereference of the result of readLine()</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_LOAD_OF_KNOWN_NULL_VALUE">NP: Load of known null value</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION">NP: Method tightens nullness annotation on parameter</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_METHOD_RETURN_RELAXING_ANNOTATION">NP: Method relaxes nullness annotation on return value</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE">NP: Possible null pointer dereference due to return value of called method</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_NULL_ON_SOME_PATH_MIGHT_BE_INFEASIBLE">NP: Possible null pointer dereference on branch that might be infeasible</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE">NP: Parameter must be nonnull but is marked as nullable</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NP_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD">NP: Read of unwritten public or protected field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#NS_DANGEROUS_NON_SHORT_CIRCUIT">NS: Potentially dangerous use of non-short-circuit logic</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#NS_NON_SHORT_CIRCUIT">NS: Questionable use of non-short-circuit logic</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#PZLA_PREFER_ZERO_LENGTH_ARRAYS">PZLA: Consider returning a zero length array rather than null</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#QF_QUESTIONABLE_FOR_LOOP">QF: Complicated, subtle or wrong increment in for-loop </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RCN_REDUNDANT_COMPARISON_OF_NULL_AND_NONNULL_VALUE">RCN: Redundant comparison of non-null value to null</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RCN_REDUNDANT_COMPARISON_TWO_NULL_VALUES">RCN: Redundant comparison of two null values</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE">RCN: Redundant nullcheck of value known to be non-null</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE">RCN: Redundant nullcheck of value known to be null</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#REC_CATCH_EXCEPTION">REC: Exception is caught when Exception is not thrown</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RI_REDUNDANT_INTERFACES">RI: Class implements same interface as superclass</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_CHECK_FOR_POSITIVE_INDEXOF">RV: Method checks to see if result of String.indexOf is positive</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_DONT_JUST_NULL_CHECK_READLINE">RV: Method discards result of readLine after checking if it is nonnull</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_REM_OF_HASHCODE">RV: Remainder of hashCode could be negative</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#RV_REM_OF_RANDOM_INT">RV: Remainder of 32-bit signed random integer</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#RV_RETURN_VALUE_IGNORED_INFERRED">RV: Method ignores return value, is this OK?</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SA_FIELD_DOUBLE_ASSIGNMENT">SA: Double assignment of field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SA_LOCAL_DOUBLE_ASSIGNMENT">SA: Double assignment of local variable </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SA_LOCAL_SELF_ASSIGNMENT">SA: Self assignment of local variable</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SF_SWITCH_FALLTHROUGH">SF: Switch statement found where one case falls through to the next case</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SF_SWITCH_NO_DEFAULT">SF: Switch statement found where default case is missing</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD">ST: Write to static field from instance method</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#SE_PRIVATE_READ_RESOLVE_NOT_INHERITED">Se: Private readResolve method not inherited by subclasses</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#SE_TRANSIENT_FIELD_OF_NONSERIALIZABLE_CLASS">Se: Transient field of class that isn't Serializable. </a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_ALWAYS_SINK">TQ: Value required to have type qualifier, but marked as unknown</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_NEVER_SINK">TQ: Value required to not have type qualifier, but marked as unknown</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UCF_USELESS_CONTROL_FLOW">UCF: Useless control flow</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UCF_USELESS_CONTROL_FLOW_NEXT_LINE">UCF: Useless control flow to next line</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD">UrF: Unread public/protected field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD">UuF: Unused public or protected field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR">UwF: Field not initialized in constructor but dereferenced without null check</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#eeeeee"><td><a href="#UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD">UwF: Unwritten public or protected field</a></td><td>Dodgy code</td></tr>
-<tr bgcolor="#ffffff"><td><a href="#XFB_XML_FACTORY_BYPASS">XFB: Method directly allocates a specific implementation of xml interfaces</a></td><td>Dodgy code</td></tr>
-</table>
-<h2>Descriptions</h2>
-<h3><a name="BC_EQUALS_METHOD_SHOULD_WORK_FOR_ALL_OBJECTS">BC: Equals method should not assume anything about the type of its argument (BC_EQUALS_METHOD_SHOULD_WORK_FOR_ALL_OBJECTS)</a></h3>
-
-
-<p>
-The <code>equals(Object o)</code> method shouldn't make any assumptions
-about the type of <code>o</code>. It should simply return
-false if <code>o</code> is not the same type as <code>this</code>.
-</p>
-
-    
-<h3><a name="BIT_SIGNED_CHECK">BIT: Check for sign of bitwise operation (BIT_SIGNED_CHECK)</a></h3>
-
-
-<p> This method compares an expression such as</p>
-<pre>((event.detail &amp; SWT.SELECTED) &gt; 0)</pre>.
-<p>Using bit arithmetic and then comparing with the greater than operator can
-lead to unexpected results (of course depending on the value of
-SWT.SELECTED). If SWT.SELECTED is a negative number, this is a candidate
-for a bug. Even when SWT.SELECTED is not negative, it seems good practice
-to use '!= 0' instead of '&gt; 0'.
-</p>
-<p>
-<em>Boris Bokowski</em>
-</p>
-
-    
-<h3><a name="CN_IDIOM">CN: Class implements Cloneable but does not define or use clone method (CN_IDIOM)</a></h3>
-
-
-<p>
-   Class implements Cloneable but does not define or
-   use the clone method.</p>
-
-    
-<h3><a name="CN_IDIOM_NO_SUPER_CALL">CN: clone method does not call super.clone() (CN_IDIOM_NO_SUPER_CALL)</a></h3>
-
-
-<p> This non-final class defines a clone() method that does not call super.clone().
-If this class ("<i>A</i>") is extended by a subclass ("<i>B</i>"),
-and the subclass <i>B</i> calls super.clone(), then it is likely that
-<i>B</i>'s clone() method will return an object of type <i>A</i>,
-which violates the standard contract for clone().</p>
-
-<p> If all clone() methods call super.clone(), then they are guaranteed
-to use Object.clone(), which always returns an object of the correct type.</p>
-
-    
-<h3><a name="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE">CN: Class defines clone() but doesn't implement Cloneable (CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE)</a></h3>
-
-
-<p> This class defines a clone() method but the class doesn't implement Cloneable.
-There are some situations in which this is OK (e.g., you want to control how subclasses
-can clone themselves), but just make sure that this is what you intended.
-</p>
-
-    
-<h3><a name="CO_ABSTRACT_SELF">Co: Abstract class defines covariant compareTo() method (CO_ABSTRACT_SELF)</a></h3>
-
-
-  <p> This class defines a covariant version of <code>compareTo()</code>.&nbsp;
-  To correctly override the <code>compareTo()</code> method in the
-  <code>Comparable</code> interface, the parameter of <code>compareTo()</code>
-  must have type <code>java.lang.Object</code>.</p>
-
-    
-<h3><a name="CO_SELF_NO_OBJECT">Co: Covariant compareTo() method defined (CO_SELF_NO_OBJECT)</a></h3>
-
-
-  <p> This class defines a covariant version of <code>compareTo()</code>.&nbsp;
-  To correctly override the <code>compareTo()</code> method in the
-  <code>Comparable</code> interface, the parameter of <code>compareTo()</code>
-  must have type <code>java.lang.Object</code>.</p>
-
-    
-<h3><a name="DE_MIGHT_DROP">DE: Method might drop exception (DE_MIGHT_DROP)</a></h3>
-
-
-  <p> This method might drop an exception.&nbsp; In general, exceptions
-  should be handled or reported in some way, or they should be thrown
-  out of the method.</p>
-
-    
-<h3><a name="DE_MIGHT_IGNORE">DE: Method might ignore exception (DE_MIGHT_IGNORE)</a></h3>
-
-
-  <p> This method might ignore an exception.&nbsp; In general, exceptions
-  should be handled or reported in some way, or they should be thrown
-  out of the method.</p>
-
-    
-<h3><a name="DMI_ENTRY_SETS_MAY_REUSE_ENTRY_OBJECTS">DMI: Adding elements of an entry set may fail due to reuse of Entry objects (DMI_ENTRY_SETS_MAY_REUSE_ENTRY_OBJECTS)</a></h3>
-
-     
-     <p> The entrySet() method is allowed to return a view of the
-     underlying Map in which a single Entry object is reused and returned
-     during the iteration.  As of Java 1.6, both IdentityHashMap
-     and EnumMap did so. When iterating through such a Map,
-     the Entry value is only valid until you advance to the next iteration.
-     If, for example, you try to pass such an entrySet to an addAll method,
-     things will go badly wrong.
-    </p>
-     
-    
-<h3><a name="DMI_RANDOM_USED_ONLY_ONCE">DMI: Random object created and used only once (DMI_RANDOM_USED_ONLY_ONCE)</a></h3>
-
-
-<p> This code creates a java.util.Random object, uses it to generate one random number, and then discards
-the Random object. This produces mediocre quality random numbers and is inefficient.
-If possible, rewrite the code so that the Random object is created once and saved, and each time a new random number
-is required invoke a method on the existing Random object to obtain it.
-</p>
-
-<p>If it is important that the generated Random numbers not be guessable, you <em>must</em> not create a new Random for each random
-number; the values are too easily guessable. You should strongly consider using a java.security.SecureRandom instead
-(and avoid allocating a new SecureRandom for each random number needed).
-</p>
-
-    
-<h3><a name="DMI_USING_REMOVEALL_TO_CLEAR_COLLECTION">DMI: Don't use removeAll to clear a collection (DMI_USING_REMOVEALL_TO_CLEAR_COLLECTION)</a></h3>
-
-     
-     <p> If you want to remove all elements from a collection <code>c</code>, use <code>c.clear</code>,
-not <code>c.removeAll(c)</code>. Calling  <code>c.removeAll(c)</code> to clear a collection
-is less clear, susceptible to errors from typos, less efficient and
-for some collections, might throw a <code>ConcurrentModificationException</code>.
-    </p>
-     
-    
-<h3><a name="DM_EXIT">Dm: Method invokes System.exit(...) (DM_EXIT)</a></h3>
-
-
-  <p> Invoking System.exit shuts down the entire Java virtual machine. This
-   should only been done when it is appropriate. Such calls make it
-   hard or impossible for your code to be invoked by other code.
-   Consider throwing a RuntimeException instead.</p>
-
-    
-<h3><a name="DM_RUN_FINALIZERS_ON_EXIT">Dm: Method invokes dangerous method runFinalizersOnExit (DM_RUN_FINALIZERS_ON_EXIT)</a></h3>
-
-
-  <p> <em>Never call System.runFinalizersOnExit
-or Runtime.runFinalizersOnExit for any reason: they are among the most
-dangerous methods in the Java libraries.</em> -- Joshua Bloch</p>
-
-    
-<h3><a name="ES_COMPARING_PARAMETER_STRING_WITH_EQ">ES: Comparison of String parameter using == or != (ES_COMPARING_PARAMETER_STRING_WITH_EQ)</a></h3>
-
-
-  <p>This code compares a <code>java.lang.String</code> parameter for reference
-equality using the == or != operators. Requiring callers to
-pass only String constants or interned strings to a method is unnecessarily
-fragile, and rarely leads to measurable performance gains. Consider
-using the <code>equals(Object)</code> method instead.</p>
-
-    
-<h3><a name="ES_COMPARING_STRINGS_WITH_EQ">ES: Comparison of String objects using == or != (ES_COMPARING_STRINGS_WITH_EQ)</a></h3>
-
-
-  <p>This code compares <code>java.lang.String</code> objects for reference
-equality using the == or != operators.
-Unless both strings are either constants in a source file, or have been
-interned using the <code>String.intern()</code> method, the same string
-value may be represented by two different String objects. Consider
-using the <code>equals(Object)</code> method instead.</p>
-
-    
-<h3><a name="EQ_ABSTRACT_SELF">Eq: Abstract class defines covariant equals() method (EQ_ABSTRACT_SELF)</a></h3>
-
-
-  <p> This class defines a covariant version of <code>equals()</code>.&nbsp;
-  To correctly override the <code>equals()</code> method in
-  <code>java.lang.Object</code>, the parameter of <code>equals()</code>
-  must have type <code>java.lang.Object</code>.</p>
-
-    
-<h3><a name="EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS">Eq: Equals checks for incompatible operand (EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS)</a></h3>
-
-
-  <p> This equals method is checking to see if the argument is some incompatible type
-(i.e., a class that is neither a supertype nor subtype of the class that defines
-the equals method). For example, the Foo class might have an equals method
-that looks like:
-</p>
-<pre>
-public boolean equals(Object o) {
-  if (o instanceof Foo)
-    return name.equals(((Foo)o).name);
-  else if (o instanceof String)
-    return name.equals(o);
-  else return false;
-</pre>
-
-<p>This is considered bad practice, as it makes it very hard to implement an equals method that
-is symmetric and transitive. Without those properties, very unexpected behavoirs are possible.
-</p>
-
-    
-<h3><a name="EQ_COMPARETO_USE_OBJECT_EQUALS">Eq: Class defines compareTo(...) and uses Object.equals() (EQ_COMPARETO_USE_OBJECT_EQUALS)</a></h3>
-
-
-  <p> This class defines a <code>compareTo(...)</code> method but inherits its
-  <code>equals()</code> method from <code>java.lang.Object</code>.
-    Generally, the value of compareTo should return zero if and only if
-    equals returns true. If this is violated, weird and unpredictable
-    failures will occur in classes such as PriorityQueue.
-    In Java 5 the PriorityQueue.remove method uses the compareTo method,
-    while in Java 6 it uses the equals method.
-
-<p>From the JavaDoc for the compareTo method in the Comparable interface:
-<blockquote>
-It is strongly recommended, but not strictly required that <code>(x.compareTo(y)==0) == (x.equals(y))</code>.
-Generally speaking, any class that implements the Comparable interface and violates this condition
-should clearly indicate this fact. The recommended language
-is "Note: this class has a natural ordering that is inconsistent with equals."
-</blockquote>
-
-    
-<h3><a name="EQ_GETCLASS_AND_CLASS_CONSTANT">Eq: equals method fails for subtypes (EQ_GETCLASS_AND_CLASS_CONSTANT)</a></h3>
-
-
-  <p> This class has an equals method that will be broken if it is inherited by subclasses.
-It compares a class literal with the class of the argument (e.g., in class <code>Foo</code>
-it might check if <code>Foo.class == o.getClass()</code>).
-It is better to check if <code>this.getClass() == o.getClass()</code>.
-</p>
-
-    
-<h3><a name="EQ_SELF_NO_OBJECT">Eq: Covariant equals() method defined (EQ_SELF_NO_OBJECT)</a></h3>
-
-
-  <p> This class defines a covariant version of <code>equals()</code>.&nbsp;
-  To correctly override the <code>equals()</code> method in
-  <code>java.lang.Object</code>, the parameter of <code>equals()</code>
-  must have type <code>java.lang.Object</code>.</p>
-
-    
-<h3><a name="FI_EMPTY">FI: Empty finalizer should be deleted (FI_EMPTY)</a></h3>
-
-
-  <p> Empty <code>finalize()</code> methods are useless, so they should
-  be deleted.</p>
-
-    
-<h3><a name="FI_EXPLICIT_INVOCATION">FI: Explicit invocation of finalizer (FI_EXPLICIT_INVOCATION)</a></h3>
-
-
-  <p> This method contains an explicit invocation of the <code>finalize()</code>
-  method on an object.&nbsp; Because finalizer methods are supposed to be
-  executed once, and only by the VM, this is a bad idea.</p>
-<p>If a connected set of objects beings finalizable, then the VM will invoke the
-finalize method on all the finalizable object, possibly at the same time in different threads.
-Thus, it is a particularly bad idea, in the finalize method for a class X, invoke finalize
-on objects referenced by X, because they may already be getting finalized in a separate thread.
-
-    
-<h3><a name="FI_FINALIZER_NULLS_FIELDS">FI: Finalizer nulls fields (FI_FINALIZER_NULLS_FIELDS)</a></h3>
-
-
-  <p> This finalizer nulls out fields.  This is usually an error, as it does not aid garbage collection,
-  and the object is going to be garbage collected anyway.
-
-    
-<h3><a name="FI_FINALIZER_ONLY_NULLS_FIELDS">FI: Finalizer only nulls fields (FI_FINALIZER_ONLY_NULLS_FIELDS)</a></h3>
-
-
-  <p> This finalizer does nothing except null out fields. This is completely pointless, and requires that
-the object be garbage collected, finalized, and then garbage collected again. You should just remove the finalize
-method.
-
-    
-<h3><a name="FI_MISSING_SUPER_CALL">FI: Finalizer does not call superclass finalizer (FI_MISSING_SUPER_CALL)</a></h3>
-
-
-  <p> This <code>finalize()</code> method does not make a call to its
-  superclass's <code>finalize()</code> method.&nbsp; So, any finalizer
-  actions defined for the superclass will not be performed.&nbsp;
-  Add a call to <code>super.finalize()</code>.</p>
-
-    
-<h3><a name="FI_NULLIFY_SUPER">FI: Finalizer nullifies superclass finalizer (FI_NULLIFY_SUPER)</a></h3>
-
-
-  <p> This empty <code>finalize()</code> method explicitly negates the
-  effect of any finalizer defined by its superclass.&nbsp; Any finalizer
-  actions defined for the superclass will not be performed.&nbsp;
-  Unless this is intended, delete this method.</p>
-
-    
-<h3><a name="FI_USELESS">FI: Finalizer does nothing but call superclass finalizer (FI_USELESS)</a></h3>
-
-
-  <p> The only thing this <code>finalize()</code> method does is call
-  the superclass's <code>finalize()</code> method, making it
-  redundant.&nbsp; Delete it.</p>
-
-    
-<h3><a name="VA_FORMAT_STRING_USES_NEWLINE">FS: Format string should use %n rather than \n (VA_FORMAT_STRING_USES_NEWLINE)</a></h3>
-
-
-<p>
-This format string include a newline character (\n). In format strings, it is generally
- preferable better to use %n, which will produce the platform-specific line separator.
-</p>
-
-     
-<h3><a name="GC_UNCHECKED_TYPE_IN_GENERIC_CALL">GC: Unchecked type in generic call (GC_UNCHECKED_TYPE_IN_GENERIC_CALL)</a></h3>
-
-     
-     <p> This call to a generic collection method passes an argument
-    while compile type Object where a specific type from
-    the generic type parameters is expected.
-    Thus, neither the standard Java type system nor static analysis
-    can provide useful information on whether the
-    object being passed as a parameter is of an appropriate type.
-    </p>
-     
-    
-<h3><a name="HE_EQUALS_NO_HASHCODE">HE: Class defines equals() but not hashCode() (HE_EQUALS_NO_HASHCODE)</a></h3>
-
-
-  <p> This class overrides <code>equals(Object)</code>, but does not
-  override <code>hashCode()</code>.&nbsp; Therefore, the class may violate the
-  invariant that equal objects must have equal hashcodes.</p>
-
-    
-<h3><a name="HE_EQUALS_USE_HASHCODE">HE: Class defines equals() and uses Object.hashCode() (HE_EQUALS_USE_HASHCODE)</a></h3>
-
-
-  <p> This class overrides <code>equals(Object)</code>, but does not
-  override <code>hashCode()</code>, and inherits the implementation of
-  <code>hashCode()</code> from <code>java.lang.Object</code> (which returns
-  the identity hash code, an arbitrary value assigned to the object
-  by the VM).&nbsp; Therefore, the class is very likely to violate the
-  invariant that equal objects must have equal hashcodes.</p>
-
-<p>If you don't think instances of this class will ever be inserted into a HashMap/HashTable,
-the recommended <code>hashCode</code> implementation to use is:</p>
-<pre>public int hashCode() {
-  assert false : "hashCode not designed";
-  return 42; // any arbitrary constant will do
-  }</pre>
-
-    
-<h3><a name="HE_HASHCODE_NO_EQUALS">HE: Class defines hashCode() but not equals() (HE_HASHCODE_NO_EQUALS)</a></h3>
-
-
-  <p> This class defines a <code>hashCode()</code> method but not an
-  <code>equals()</code> method.&nbsp; Therefore, the class may
-  violate the invariant that equal objects must have equal hashcodes.</p>
-
-    
-<h3><a name="HE_HASHCODE_USE_OBJECT_EQUALS">HE: Class defines hashCode() and uses Object.equals() (HE_HASHCODE_USE_OBJECT_EQUALS)</a></h3>
-
-
-  <p> This class defines a <code>hashCode()</code> method but inherits its
-  <code>equals()</code> method from <code>java.lang.Object</code>
-  (which defines equality by comparing object references).&nbsp; Although
-  this will probably satisfy the contract that equal objects must have
-  equal hashcodes, it is probably not what was intended by overriding
-  the <code>hashCode()</code> method.&nbsp; (Overriding <code>hashCode()</code>
-  implies that the object's identity is based on criteria more complicated
-  than simple reference equality.)</p>
-<p>If you don't think instances of this class will ever be inserted into a HashMap/HashTable,
-the recommended <code>hashCode</code> implementation to use is:</p>
-<pre>public int hashCode() {
-  assert false : "hashCode not designed";
-  return 42; // any arbitrary constant will do
-  }</pre>
-
-    
-<h3><a name="HE_INHERITS_EQUALS_USE_HASHCODE">HE: Class inherits equals() and uses Object.hashCode() (HE_INHERITS_EQUALS_USE_HASHCODE)</a></h3>
-
-
-  <p> This class inherits <code>equals(Object)</code> from an abstract
-  superclass, and <code>hashCode()</code> from
-<code>java.lang.Object</code> (which returns
-  the identity hash code, an arbitrary value assigned to the object
-  by the VM).&nbsp; Therefore, the class is very likely to violate the
-  invariant that equal objects must have equal hashcodes.</p>
-
-  <p>If you don't want to define a hashCode method, and/or don't
-   believe the object will ever be put into a HashMap/Hashtable,
-   define the <code>hashCode()</code> method
-   to throw <code>UnsupportedOperationException</code>.</p>
-
-    
-<h3><a name="IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION">IC: Superclass uses subclass during initialization (IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION)</a></h3>
-
-
-  <p> During the initialization of a class, the class makes an active use of a subclass.
-That subclass will not yet be initialized at the time of this use.
-For example, in the following code, <code>foo</code> will be null.</p>
-
-<pre>
-public class CircularClassInitialization {
-    static class InnerClassSingleton extends CircularClassInitialization {
-        static InnerClassSingleton singleton = new InnerClassSingleton();
-    }
-
-    static CircularClassInitialization foo = InnerClassSingleton.singleton;
-}
-</pre>
-
-
-    
-<h3><a name="IMSE_DONT_CATCH_IMSE">IMSE: Dubious catching of IllegalMonitorStateException (IMSE_DONT_CATCH_IMSE)</a></h3>
-
-
-<p>IllegalMonitorStateException is generally only
-   thrown in case of a design flaw in your code (calling wait or
-   notify on an object you do not hold a lock on).</p>
-
-    
-<h3><a name="ISC_INSTANTIATE_STATIC_CLASS">ISC: Needless instantiation of class that only supplies static methods (ISC_INSTANTIATE_STATIC_CLASS)</a></h3>
-
-
-<p> This class allocates an object that is based on a class that only supplies static methods. This object
-does not need to be created, just access the static methods directly using the class name as a qualifier.</p>
-
-        
-<h3><a name="IT_NO_SUCH_ELEMENT">It: Iterator next() method can't throw NoSuchElementException (IT_NO_SUCH_ELEMENT)</a></h3>
-
-
-  <p> This class implements the <code>java.util.Iterator</code> interface.&nbsp;
-  However, its <code>next()</code> method is not capable of throwing
-  <code>java.util.NoSuchElementException</code>.&nbsp; The <code>next()</code>
-  method should be changed so it throws <code>NoSuchElementException</code>
-  if is called when there are no more elements to return.</p>
-
-    
-<h3><a name="J2EE_STORE_OF_NON_SERIALIZABLE_OBJECT_INTO_SESSION">J2EE: Store of non serializable object into HttpSession (J2EE_STORE_OF_NON_SERIALIZABLE_OBJECT_INTO_SESSION)</a></h3>
-
-
-<p>
-This code seems to be storing a non-serializable object into an HttpSession.
-If this session is passivated or migrated, an error will result.
-</p>
-
-    
-<h3><a name="JCIP_FIELD_ISNT_FINAL_IN_IMMUTABLE_CLASS">JCIP: Fields of immutable classes should be final (JCIP_FIELD_ISNT_FINAL_IN_IMMUTABLE_CLASS)</a></h3>
-
-
-  <p> The class is annotated with net.jcip.annotations.Immutable or javax.annotation.concurrent.Immutable,
-  and the rules for those annotations require that all fields are final.
-   .</p>
-
-    
-<h3><a name="NP_BOOLEAN_RETURN_NULL">NP: Method with Boolean return type returns explicit null (NP_BOOLEAN_RETURN_NULL)</a></h3>
-
-       
-       <p>
-    A method that returns either Boolean.TRUE, Boolean.FALSE or null is an accident waiting to happen.
-    This method can be invoked as though it returned a value of type boolean, and
-    the compiler will insert automatic unboxing of the Boolean value. If a null value is returned,
-    this will result in a NullPointerException.
-       </p>
-       
-       
-<h3><a name="NP_CLONE_COULD_RETURN_NULL">NP: Clone method may return null (NP_CLONE_COULD_RETURN_NULL)</a></h3>
-
-      
-      <p>
-    This clone method seems to return null in some circumstances, but clone is never
-    allowed to return a null value.  If you are convinced this path is unreachable, throw an AssertionError
-    instead.
-      </p>
-      
-   
-<h3><a name="NP_EQUALS_SHOULD_HANDLE_NULL_ARGUMENT">NP: equals() method does not check for null argument (NP_EQUALS_SHOULD_HANDLE_NULL_ARGUMENT)</a></h3>
-
-      
-      <p>
-      This implementation of equals(Object) violates the contract defined
-      by java.lang.Object.equals() because it does not check for null
-      being passed as the argument.  All equals() methods should return
-      false if passed a null value.
-      </p>
-      
-   
-<h3><a name="NP_TOSTRING_COULD_RETURN_NULL">NP: toString method may return null (NP_TOSTRING_COULD_RETURN_NULL)</a></h3>
-
-      
-      <p>
-    This toString method seems to return null in some circumstances. A liberal reading of the
-    spec could be interpreted as allowing this, but it is probably a bad idea and could cause
-    other code to break. Return the empty string or some other appropriate string rather than null.
-      </p>
-      
-   
-<h3><a name="NM_CLASS_NAMING_CONVENTION">Nm: Class names should start with an upper case letter (NM_CLASS_NAMING_CONVENTION)</a></h3>
-
-
-  <p> Class names should be nouns, in mixed case with the first letter of each internal word capitalized. Try to keep your class names simple and descriptive. Use whole words-avoid acronyms and abbreviations (unless the abbreviation is much more widely used than the long form, such as URL or HTML).
-</p>
-
-    
-<h3><a name="NM_CLASS_NOT_EXCEPTION">Nm: Class is not derived from an Exception, even though it is named as such (NM_CLASS_NOT_EXCEPTION)</a></h3>
-
-
-<p> This class is not derived from another exception, but ends with 'Exception'. This will
-be confusing to users of this class.</p>
-
-    
-<h3><a name="NM_CONFUSING">Nm: Confusing method names (NM_CONFUSING)</a></h3>
-
-
-  <p> The referenced methods have names that differ only by capitalization.</p>
-
-    
-<h3><a name="NM_FIELD_NAMING_CONVENTION">Nm: Field names should start with a lower case letter (NM_FIELD_NAMING_CONVENTION)</a></h3>
-
-
-  <p>
-Names of fields that are not final should be in mixed case with a lowercase first letter and the first letters of subsequent words capitalized.
-</p>
-
-    
-<h3><a name="NM_FUTURE_KEYWORD_USED_AS_IDENTIFIER">Nm: Use of identifier that is a keyword in later versions of Java (NM_FUTURE_KEYWORD_USED_AS_IDENTIFIER)</a></h3>
-
-
-<p>The identifier is a word that is reserved as a keyword in later versions of Java, and your code will need to be changed
-in order to compile it in later versions of Java.</p>
-
-
-    
-<h3><a name="NM_FUTURE_KEYWORD_USED_AS_MEMBER_IDENTIFIER">Nm: Use of identifier that is a keyword in later versions of Java (NM_FUTURE_KEYWORD_USED_AS_MEMBER_IDENTIFIER)</a></h3>
-
-
-<p>This identifier is used as a keyword in later versions of Java. This code, and
-any code that references this API,
-will need to be changed in order to compile it in later versions of Java.</p>
-
-
-    
-<h3><a name="NM_METHOD_NAMING_CONVENTION">Nm: Method names should start with a lower case letter (NM_METHOD_NAMING_CONVENTION)</a></h3>
-
-
-  <p>
-Methods should be verbs, in mixed case with the first letter lowercase, with the first letter of each internal word capitalized.
-</p>
-
-    
-<h3><a name="NM_SAME_SIMPLE_NAME_AS_INTERFACE">Nm: Class names shouldn't shadow simple name of implemented interface (NM_SAME_SIMPLE_NAME_AS_INTERFACE)</a></h3>
-
-
-  <p> This class/interface has a simple name that is identical to that of an implemented/extended interface, except
-that the interface is in a different package (e.g., <code>alpha.Foo</code> extends <code>beta.Foo</code>).
-This can be exceptionally confusing, create lots of situations in which you have to look at import statements
-to resolve references and creates many
-opportunities to accidently define methods that do not override methods in their superclasses.
-</p>
-
-    
-<h3><a name="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS">Nm: Class names shouldn't shadow simple name of superclass (NM_SAME_SIMPLE_NAME_AS_SUPERCLASS)</a></h3>
-
-
-  <p> This class has a simple name that is identical to that of its superclass, except
-that its superclass is in a different package (e.g., <code>alpha.Foo</code> extends <code>beta.Foo</code>).
-This can be exceptionally confusing, create lots of situations in which you have to look at import statements
-to resolve references and creates many
-opportunities to accidently define methods that do not override methods in their superclasses.
-</p>
-
-    
-<h3><a name="NM_VERY_CONFUSING_INTENTIONAL">Nm: Very confusing method names (but perhaps intentional) (NM_VERY_CONFUSING_INTENTIONAL)</a></h3>
-
-
-  <p> The referenced methods have names that differ only by capitalization.
-This is very confusing because if the capitalization were
-identical then one of the methods would override the other. From the existence of other methods, it
-seems that the existence of both of these methods is intentional, but is sure is confusing.
-You should try hard to eliminate one of them, unless you are forced to have both due to frozen APIs.
-</p>
-
-    
-<h3><a name="NM_WRONG_PACKAGE_INTENTIONAL">Nm: Method doesn't override method in superclass due to wrong package for parameter (NM_WRONG_PACKAGE_INTENTIONAL)</a></h3>
-
-
-  <p> The method in the subclass doesn't override a similar method in a superclass because the type of a parameter doesn't exactly match
-the type of the corresponding parameter in the superclass. For example, if you have:</p>
-
-<blockquote>
-<pre>
-import alpha.Foo;
-public class A {
-  public int f(Foo x) { return 17; }
-}
-----
-import beta.Foo;
-public class B extends A {
-  public int f(Foo x) { return 42; }
-  public int f(alpha.Foo x) { return 27; }
-}
-</pre>
-</blockquote>
-
-<p>The <code>f(Foo)</code> method defined in class <code>B</code> doesn't
-override the
-<code>f(Foo)</code> method defined in class <code>A</code>, because the argument
-types are <code>Foo</code>'s from different packages.
-</p>
-
-<p>In this case, the subclass does define a method with a signature identical to the method in the superclass,
-so this is presumably understood. However, such methods are exceptionally confusing. You should strongly consider
-removing or deprecating the method with the similar but not identical signature.
-</p>
-
-    
-<h3><a name="ODR_OPEN_DATABASE_RESOURCE">ODR: Method may fail to close database resource (ODR_OPEN_DATABASE_RESOURCE)</a></h3>
-
-
-<p> The method creates a database resource (such as a database connection
-or row set), does not assign it to any
-fields, pass it to other methods, or return it, and does not appear to close
-the object on all paths out of the method.&nbsp; Failure to
-close database resources on all paths out of a method may
-result in poor performance, and could cause the application to
-have problems communicating with the database.
-</p>
-
-    
-<h3><a name="ODR_OPEN_DATABASE_RESOURCE_EXCEPTION_PATH">ODR: Method may fail to close database resource on exception (ODR_OPEN_DATABASE_RESOURCE_EXCEPTION_PATH)</a></h3>
-
-
-<p> The method creates a database resource (such as a database connection
-or row set), does not assign it to any
-fields, pass it to other methods, or return it, and does not appear to close
-the object on all exception paths out of the method.&nbsp; Failure to
-close database resources on all paths out of a method may
-result in poor performance, and could cause the application to
-have problems communicating with the database.</p>
-
-    
-<h3><a name="OS_OPEN_STREAM">OS: Method may fail to close stream (OS_OPEN_STREAM)</a></h3>
-
-
-<p> The method creates an IO stream object, does not assign it to any
-fields, pass it to other methods that might close it,
-or return it, and does not appear to close
-the stream on all paths out of the method.&nbsp; This may result in
-a file descriptor leak.&nbsp; It is generally a good
-idea to use a <code>finally</code> block to ensure that streams are
-closed.</p>
-
-    
-<h3><a name="OS_OPEN_STREAM_EXCEPTION_PATH">OS: Method may fail to close stream on exception (OS_OPEN_STREAM_EXCEPTION_PATH)</a></h3>
-
-
-<p> The method creates an IO stream object, does not assign it to any
-fields, pass it to other methods, or return it, and does not appear to close
-it on all possible exception paths out of the method.&nbsp;
-This may result in a file descriptor leak.&nbsp; It is generally a good
-idea to use a <code>finally</code> block to ensure that streams are
-closed.</p>
-
-    
-<h3><a name="PZ_DONT_REUSE_ENTRY_OBJECTS_IN_ITERATORS">PZ: Don't reuse entry objects in iterators (PZ_DONT_REUSE_ENTRY_OBJECTS_IN_ITERATORS)</a></h3>
-
-     
-     <p> The entrySet() method is allowed to return a view of the
-     underlying Map in which an Iterator and Map.Entry. This clever
-     idea was used in several Map implementations, but introduces the possibility
-     of nasty coding mistakes. If a map <code>m</code> returns
-     such an iterator for an entrySet, then
-     <code>c.addAll(m.entrySet())</code> will go badly wrong. All of
-     the Map implementations in OpenJDK 1.7 have been rewritten to avoid this,
-     you should to.
-    </p>
-     
-    
-<h3><a name="RC_REF_COMPARISON_BAD_PRACTICE">RC: Suspicious reference comparison to constant (RC_REF_COMPARISON_BAD_PRACTICE)</a></h3>
-
-
-<p> This method compares a reference value to a constant using the == or != operator,
-where the correct way to compare instances of this type is generally
-with the equals() method.
-It is possible to create distinct instances that are equal but do not compare as == since
-they are different objects.
-Examples of classes which should generally
-not be compared by reference are java.lang.Integer, java.lang.Float, etc.</p>
-
-    
-<h3><a name="RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN">RC: Suspicious reference comparison of Boolean values (RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN)</a></h3>
-
-
-<p> This method compares two Boolean values using the == or != operator.
-Normally, there are only two Boolean values (Boolean.TRUE and Boolean.FALSE),
-but it is possible to create other Boolean objects using the <code>new Boolean(b)</code>
-constructor. It is best to avoid such objects, but if they do exist,
-then checking Boolean objects for equality using == or != will give results
-than are different than you would get using <code>.equals(...)</code>
-</p>
-
-    
-<h3><a name="RR_NOT_CHECKED">RR: Method ignores results of InputStream.read() (RR_NOT_CHECKED)</a></h3>
-
-
-  <p> This method ignores the return value of one of the variants of
-  <code>java.io.InputStream.read()</code> which can return multiple bytes.&nbsp;
-  If the return value is not checked, the caller will not be able to correctly
-  handle the case where fewer bytes were read than the caller requested.&nbsp;
-  This is a particularly insidious kind of bug, because in many programs,
-  reads from input streams usually do read the full amount of data requested,
-  causing the program to fail only sporadically.</p>
-
-    
-<h3><a name="SR_NOT_CHECKED">RR: Method ignores results of InputStream.skip() (SR_NOT_CHECKED)</a></h3>
-
-
-  <p> This method ignores the return value of
-  <code>java.io.InputStream.skip()</code> which can skip multiple bytes.&nbsp;
-  If the return value is not checked, the caller will not be able to correctly
-  handle the case where fewer bytes were skipped than the caller requested.&nbsp;
-  This is a particularly insidious kind of bug, because in many programs,
-  skips from input streams usually do skip the full amount of data requested,
-  causing the program to fail only sporadically. With Buffered streams, however,
-  skip() will only skip data in the buffer, and will routinely fail to skip the
-  requested number of bytes.</p>
-
-    
-<h3><a name="RV_NEGATING_RESULT_OF_COMPARETO">RV: Negating the result of compareTo()/compare() (RV_NEGATING_RESULT_OF_COMPARETO)</a></h3>
-
-
-  <p> This code negatives the return value of a compareTo or compare method.
-This is a questionable or bad programming practice, since if the return
-value is Integer.MIN_VALUE, negating the return value won't
-negate the sign of the result. You can achieve the same intended result
-by reversing the order of the operands rather than by negating the results.
-</p>
-
-    
-<h3><a name="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE">RV: Method ignores exceptional return value (RV_RETURN_VALUE_IGNORED_BAD_PRACTICE)</a></h3>
-
-
-   <p> This method returns a value that is not checked. The return value should be checked
-since it can indicate an unusual or unexpected function execution. For
-example, the <code>File.delete()</code> method returns false
-if the file could not be successfully deleted (rather than
-throwing an Exception).
-If you don't check the result, you won't notice if the method invocation
-signals unexpected behavior by returning an atypical return value.
-</p>
-
-    
-<h3><a name="SI_INSTANCE_BEFORE_FINALS_ASSIGNED">SI: Static initializer creates instance before all static final fields assigned (SI_INSTANCE_BEFORE_FINALS_ASSIGNED)</a></h3>
-
-
-<p> The class's static initializer creates an instance of the class
-before all of the static final fields are assigned.</p>
-
-    
-<h3><a name="SW_SWING_METHODS_INVOKED_IN_SWING_THREAD">SW: Certain swing methods needs to be invoked in Swing thread (SW_SWING_METHODS_INVOKED_IN_SWING_THREAD)</a></h3>
-
-
-<p>(<a href="http://web.archive.org/web/20090526170426/http://java.sun.com/developer/JDCTechTips/2003/tt1208.html">From JDC Tech Tip</a>): The Swing methods
-show(), setVisible(), and pack() will create the associated peer for the frame.
-With the creation of the peer, the system creates the event dispatch thread.
-This makes things problematic because the event dispatch thread could be notifying
-listeners while pack and validate are still processing. This situation could result in
-two threads going through the Swing component-based GUI -- it's a serious flaw that
-could result in deadlocks or other related threading issues. A pack call causes
-components to be realized. As they are being realized (that is, not necessarily
-visible), they could trigger listener notification on the event dispatch thread.</p>
-
-
-    
-<h3><a name="SE_BAD_FIELD">Se: Non-transient non-serializable instance field in serializable class (SE_BAD_FIELD)</a></h3>
-
-
-<p> This Serializable class defines a non-primitive instance field which is neither transient,
-Serializable, or <code>java.lang.Object</code>, and does not appear to implement
-the <code>Externalizable</code> interface or the
-<code>readObject()</code> and <code>writeObject()</code> methods.&nbsp;
-Objects of this class will not be deserialized correctly if a non-Serializable
-object is stored in this field.</p>
-
-    
-<h3><a name="SE_BAD_FIELD_INNER_CLASS">Se: Non-serializable class has a serializable inner class (SE_BAD_FIELD_INNER_CLASS)</a></h3>
-
-
-<p> This Serializable class is an inner class of a non-serializable class.
-Thus, attempts to serialize it will also attempt to associate instance of the outer
-class with which it is associated, leading to a runtime error.
-</p>
-<p>If possible, making the inner class a static inner class should solve the
-problem. Making the outer class serializable might also work, but that would
-mean serializing an instance of the inner class would always also serialize the instance
-of the outer class, which it often not what you really want.
-
-    
-<h3><a name="SE_BAD_FIELD_STORE">Se: Non-serializable value stored into instance field of a serializable class (SE_BAD_FIELD_STORE)</a></h3>
-
-
-<p> A non-serializable value is stored into a non-transient field
-of a serializable class.</p>
-
-    
-<h3><a name="SE_COMPARATOR_SHOULD_BE_SERIALIZABLE">Se: Comparator doesn't implement Serializable (SE_COMPARATOR_SHOULD_BE_SERIALIZABLE)</a></h3>
-
-
-  <p> This class implements the <code>Comparator</code> interface. You
-should consider whether or not it should also implement the <code>Serializable</code>
-interface. If a comparator is used to construct an ordered collection
-such as a <code>TreeMap</code>, then the <code>TreeMap</code>
-will be serializable only if the comparator is also serializable.
-As most comparators have little or no state, making them serializable
-is generally easy and good defensive programming.
-</p>
-
-    
-<h3><a name="SE_INNER_CLASS">Se: Serializable inner class (SE_INNER_CLASS)</a></h3>
-
-
-<p> This Serializable class is an inner class.  Any attempt to serialize
-it will also serialize the associated outer instance. The outer instance is serializable,
-so this won't fail, but it might serialize a lot more data than intended.
-If possible, making the inner class a static inner class (also known as a nested class) should solve the
-problem.
-
-    
-<h3><a name="SE_NONFINAL_SERIALVERSIONID">Se: serialVersionUID isn't final (SE_NONFINAL_SERIALVERSIONID)</a></h3>
-
-
-  <p> This class defines a <code>serialVersionUID</code> field that is not final.&nbsp;
-  The field should be made final
-   if it is intended to specify
-   the version UID for purposes of serialization.</p>
-
-    
-<h3><a name="SE_NONLONG_SERIALVERSIONID">Se: serialVersionUID isn't long (SE_NONLONG_SERIALVERSIONID)</a></h3>
-
-
-  <p> This class defines a <code>serialVersionUID</code> field that is not long.&nbsp;
-  The field should be made long
-   if it is intended to specify
-   the version UID for purposes of serialization.</p>
-
-    
-<h3><a name="SE_NONSTATIC_SERIALVERSIONID">Se: serialVersionUID isn't static (SE_NONSTATIC_SERIALVERSIONID)</a></h3>
-
-
-  <p> This class defines a <code>serialVersionUID</code> field that is not static.&nbsp;
-  The field should be made static
-   if it is intended to specify
-   the version UID for purposes of serialization.</p>
-
-    
-<h3><a name="SE_NO_SUITABLE_CONSTRUCTOR">Se: Class is Serializable but its superclass doesn't define a void constructor (SE_NO_SUITABLE_CONSTRUCTOR)</a></h3>
-
-
-  <p> This class implements the <code>Serializable</code> interface
-   and its superclass does not. When such an object is deserialized,
-   the fields of the superclass need to be initialized by
-   invoking the void constructor of the superclass.
-   Since the superclass does not have one,
-   serialization and deserialization will fail at runtime.</p>
-
-    
-<h3><a name="SE_NO_SUITABLE_CONSTRUCTOR_FOR_EXTERNALIZATION">Se: Class is Externalizable but doesn't define a void constructor (SE_NO_SUITABLE_CONSTRUCTOR_FOR_EXTERNALIZATION)</a></h3>
-
-
-  <p> This class implements the <code>Externalizable</code> interface, but does
-  not define a void constructor. When Externalizable objects are deserialized,
-   they first need to be constructed by invoking the void
-   constructor. Since this class does not have one,
-   serialization and deserialization will fail at runtime.</p>
-
-    
-<h3><a name="SE_READ_RESOLVE_MUST_RETURN_OBJECT">Se: The readResolve method must be declared with a return type of Object.  (SE_READ_RESOLVE_MUST_RETURN_OBJECT)</a></h3>
-
-
-  <p> In order for the readResolve method to be recognized by the serialization
-mechanism, it must be declared to have a return type of Object.
-</p>
-
-    
-<h3><a name="SE_TRANSIENT_FIELD_NOT_RESTORED">Se: Transient field that isn't set by deserialization.  (SE_TRANSIENT_FIELD_NOT_RESTORED)</a></h3>
-
-
-  <p> This class contains a field that is updated at multiple places in the class, thus it seems to be part of the state of the class. However, since the field is marked as transient and not set in readObject or readResolve, it will contain the default value in any
-deserialized instance of the class.
-</p>
-
-    
-<h3><a name="SE_NO_SERIALVERSIONID">SnVI: Class is Serializable, but doesn't define serialVersionUID (SE_NO_SERIALVERSIONID)</a></h3>
-
-
-  <p> This class implements the <code>Serializable</code> interface, but does
-  not define a <code>serialVersionUID</code> field.&nbsp;
-  A change as simple as adding a reference to a .class object
-    will add synthetic fields to the class,
-   which will unfortunately change the implicit
-   serialVersionUID (e.g., adding a reference to <code>String.class</code>
-   will generate a static field <code>class$java$lang$String</code>).
-   Also, different source code to bytecode compilers may use different
-   naming conventions for synthetic variables generated for
-   references to class objects or inner classes.
-   To ensure interoperability of Serializable across versions,
-   consider adding an explicit serialVersionUID.</p>
-
-    
-<h3><a name="UI_INHERITANCE_UNSAFE_GETRESOURCE">UI: Usage of GetResource may be unsafe if class is extended (UI_INHERITANCE_UNSAFE_GETRESOURCE)</a></h3>
-
-
-<p>Calling <code>this.getClass().getResource(...)</code> could give
-results other than expected if this class is extended by a class in
-another package.</p>
-
-    
-<h3><a name="BC_IMPOSSIBLE_CAST">BC: Impossible cast (BC_IMPOSSIBLE_CAST)</a></h3>
-
-
-<p>
-This cast will always throw a ClassCastException.
-FindBugs tracks type information from instanceof checks,
-and also uses more precise information about the types
-of values returned from methods and loaded from fields.
-Thus, it may have more precise information that just
-the declared type of a variable, and can use this to determine
-that a cast will always throw an exception at runtime.
-
-</p>
-
-    
-<h3><a name="BC_IMPOSSIBLE_DOWNCAST">BC: Impossible downcast (BC_IMPOSSIBLE_DOWNCAST)</a></h3>
-
-
-<p>
-This cast will always throw a ClassCastException.
-The analysis believes it knows
-the precise type of the value being cast, and the attempt to
-downcast it to a subtype will always fail by throwing a ClassCastException.
-</p>
-
-    
-<h3><a name="BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY">BC: Impossible downcast of toArray() result (BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY)</a></h3>
-
-
-<p>
-This code is casting the result of calling <code>toArray()</code> on a collection
-to a type more specific than <code>Object[]</code>, as in:</p>
-<pre>
-String[] getAsArray(Collection&lt;String&gt; c) {
-  return (String[]) c.toArray();
-  }
-</pre>
-<p>This will usually fail by throwing a ClassCastException. The <code>toArray()</code>
-of almost all collections return an <code>Object[]</code>. They can't really do anything else,
-since the Collection object has no reference to the declared generic type of the collection.
-<p>The correct way to do get an array of a specific type from a collection is to use
-  <code>c.toArray(new String[]);</code>
-  or <code>c.toArray(new String[c.size()]);</code> (the latter is slightly more efficient).
-<p>There is one common/known exception exception to this. The <code>toArray()</code>
-method of lists returned by <code>Arrays.asList(...)</code> will return a covariantly
-typed array. For example, <code>Arrays.asArray(new String[] { "a" }).toArray()</code>
-will return a <code>String []</code>. FindBugs attempts to detect and suppress
-such cases, but may miss some.
-</p>
-
-    
-<h3><a name="BC_IMPOSSIBLE_INSTANCEOF">BC: instanceof will always return false (BC_IMPOSSIBLE_INSTANCEOF)</a></h3>
-
-
-<p>
-This instanceof test will always return false. Although this is safe, make sure it isn't
-an indication of some misunderstanding or some other logic error.
-</p>
-
-    
-<h3><a name="BIT_ADD_OF_SIGNED_BYTE">BIT: Bitwise add of signed byte value (BIT_ADD_OF_SIGNED_BYTE)</a></h3>
-
-
-<p> Adds a byte value and a value which is known to have the 8 lower bits clear.
-Values loaded from a byte array are sign extended to 32 bits
-before any any bitwise operations are performed on the value.
-Thus, if <code>b[0]</code> contains the value <code>0xff</code>, and
-<code>x</code> is initially 0, then the code
-<code>((x &lt;&lt; 8) + b[0])</code>  will sign extend <code>0xff</code>
-to get <code>0xffffffff</code>, and thus give the value
-<code>0xffffffff</code> as the result.
-</p>
-
-<p>In particular, the following code for packing a byte array into an int is badly wrong: </p>
-<pre>
-int result = 0;
-for(int i = 0; i &lt; 4; i++)
-  result = ((result &lt;&lt; 8) + b[i]);
-</pre>
-
-<p>The following idiom will work instead: </p>
-<pre>
-int result = 0;
-for(int i = 0; i &lt; 4; i++)
-  result = ((result &lt;&lt; 8) + (b[i] &amp; 0xff));
-</pre>
-
-
-    
-<h3><a name="BIT_AND">BIT: Incompatible bit masks (BIT_AND)</a></h3>
-
-
-<p> This method compares an expression of the form (e &amp; C) to D,
-which will always compare unequal
-due to the specific values of constants C and D.
-This may indicate a logic error or typo.</p>
-
-    
-<h3><a name="BIT_AND_ZZ">BIT: Check to see if ((...) & 0) == 0 (BIT_AND_ZZ)</a></h3>
-
-
-<p> This method compares an expression of the form (e &amp; 0) to 0,
-which will always compare equal.
-This may indicate a logic error or typo.</p>
-
-    
-<h3><a name="BIT_IOR">BIT: Incompatible bit masks (BIT_IOR)</a></h3>
-
-
-<p> This method compares an expression of the form (e | C) to D.
-which will always compare unequal
-due to the specific values of constants C and D.
-This may indicate a logic error or typo.</p>
-
-<p> Typically, this bug occurs because the code wants to perform
-a membership test in a bit set, but uses the bitwise OR
-operator ("|") instead of bitwise AND ("&amp;").</p>
-
-    
-<h3><a name="BIT_IOR_OF_SIGNED_BYTE">BIT: Bitwise OR of signed byte value (BIT_IOR_OF_SIGNED_BYTE)</a></h3>
-
-
-<p> Loads a byte value (e.g., a value loaded from a byte array or returned by a method
-with return type byte)  and performs a bitwise OR with
-that value. Byte values are sign extended to 32 bits
-before any any bitwise operations are performed on the value.
-Thus, if <code>b[0]</code> contains the value <code>0xff</code>, and
-<code>x</code> is initially 0, then the code
-<code>((x &lt;&lt; 8) | b[0])</code>  will sign extend <code>0xff</code>
-to get <code>0xffffffff</code>, and thus give the value
-<code>0xffffffff</code> as the result.
-</p>
-
-<p>In particular, the following code for packing a byte array into an int is badly wrong: </p>
-<pre>
-int result = 0;
-for(int i = 0; i &lt; 4; i++)
-  result = ((result &lt;&lt; 8) | b[i]);
-</pre>
-
-<p>The following idiom will work instead: </p>
-<pre>
-int result = 0;
-for(int i = 0; i &lt; 4; i++)
-  result = ((result &lt;&lt; 8) | (b[i] &amp; 0xff));
-</pre>
-
-
-    
-<h3><a name="BIT_SIGNED_CHECK_HIGH_BIT">BIT: Check for sign of bitwise operation (BIT_SIGNED_CHECK_HIGH_BIT)</a></h3>
-
-
-<p> This method compares an expression such as</p>
-<pre>((event.detail &amp; SWT.SELECTED) &gt; 0)</pre>.
-<p>Using bit arithmetic and then comparing with the greater than operator can
-lead to unexpected results (of course depending on the value of
-SWT.SELECTED). If SWT.SELECTED is a negative number, this is a candidate
-for a bug. Even when SWT.SELECTED is not negative, it seems good practice
-to use '!= 0' instead of '&gt; 0'.
-</p>
-<p>
-<em>Boris Bokowski</em>
-</p>
-
-    
-<h3><a name="BOA_BADLY_OVERRIDDEN_ADAPTER">BOA: Class overrides a method implemented in super class Adapter wrongly (BOA_BADLY_OVERRIDDEN_ADAPTER)</a></h3>
-
-
-<p> This method overrides a method found in a parent class, where that class is an Adapter that implements
-a listener defined in the java.awt.event or javax.swing.event package. As a result, this method will not
-get called when the event occurs.</p>
-
-    
-<h3><a name="ICAST_BAD_SHIFT_AMOUNT">BSHIFT: 32 bit int shifted by an amount not in the range -31..31 (ICAST_BAD_SHIFT_AMOUNT)</a></h3>
-
-
-<p>
-The code performs shift of a 32 bit int by a constant amount outside
-the range -31..31.
-The effect of this is to use the lower 5 bits of the integer
-value to decide how much to shift by (e.g., shifting by 40 bits is the same as shifting by 8 bits,
-and shifting by 32 bits is the same as shifting by zero bits). This probably isn't what was expected,
-and it is at least confusing.
-</p>
-
-    
-<h3><a name="BX_UNBOXED_AND_COERCED_FOR_TERNARY_OPERATOR">Bx: Primitive value is unboxed and coerced for ternary operator (BX_UNBOXED_AND_COERCED_FOR_TERNARY_OPERATOR)</a></h3>
-
-
-  <p>A wrapped primitive value is unboxed and converted to another primitive type as part of the
-evaluation of a conditional ternary operator (the <code> b ? e1 : e2</code> operator). The
-semantics of Java mandate that if <code>e1</code> and <code>e2</code> are wrapped
-numeric values, the values are unboxed and converted/coerced to their common type (e.g,
-if <code>e1</code> is of type <code>Integer</code>
-and <code>e2</code> is of type <code>Float</code>, then <code>e1</code> is unboxed,
-converted to a floating point value, and boxed. See JLS Section 15.25.
-</p>
-
-    
-<h3><a name="CO_COMPARETO_RESULTS_MIN_VALUE">Co: compareTo()/compare() returns Integer.MIN_VALUE (CO_COMPARETO_RESULTS_MIN_VALUE)</a></h3>
-
-
-  <p> In some situation, this compareTo or compare method returns
-the  constant Integer.MIN_VALUE, which is an exceptionally bad practice.
-  The only thing that matters about the return value of compareTo is the sign of the result.
-    But people will sometimes negate the return value of compareTo, expecting that this will negate
-    the sign of the result. And it will, except in the case where the value returned is Integer.MIN_VALUE.
-    So just return -1 rather than Integer.MIN_VALUE.
-
-    
-<h3><a name="DLS_DEAD_LOCAL_INCREMENT_IN_RETURN">DLS: Useless increment in return statement (DLS_DEAD_LOCAL_INCREMENT_IN_RETURN)</a></h3>
-
-      
-<p>This statement has a return such as <code>return x++;</code>. 
-A postfix increment/decrement does not impact the value of the expression,
-so this increment/decrement has no effect. 
-Please verify that this statement does the right thing.
-</p>
-
-    
-<h3><a name="DLS_DEAD_STORE_OF_CLASS_LITERAL">DLS: Dead store of class literal (DLS_DEAD_STORE_OF_CLASS_LITERAL)</a></h3>
-
-
-<p>
-This instruction assigns a class literal to a variable and then never uses it.
-<a href="//java.sun.com/j2se/1.5.0/compatibility.html#literal">The behavior of this differs in Java 1.4 and in Java 5.</a>
-In Java 1.4 and earlier, a reference to <code>Foo.class</code> would force the static initializer
-for <code>Foo</code> to be executed, if it has not been executed already.
-In Java 5 and later, it does not.
-</p>
-<p>See Sun's <a href="//java.sun.com/j2se/1.5.0/compatibility.html#literal">article on Java SE compatibility</a>
-for more details and examples, and suggestions on how to force class initialization in Java 5.
-</p>
-
-    
-<h3><a name="DLS_OVERWRITTEN_INCREMENT">DLS: Overwritten increment (DLS_OVERWRITTEN_INCREMENT)</a></h3>
-
-
-<p>
-The code performs an increment operation (e.g., <code>i++</code>) and then
-immediately overwrites it. For example, <code>i = i++</code> immediately
-overwrites the incremented value with the original value.
-</p>
-
-    
-<h3><a name="DMI_ARGUMENTS_WRONG_ORDER">DMI: Reversed method arguments (DMI_ARGUMENTS_WRONG_ORDER)</a></h3>
-
-
-<p> The arguments to this method call seem to be in the wrong order.
-For example, a call <code>Preconditions.checkNotNull("message", message)</code>
-has reserved arguments: the value to be checked is the first argument.
-</p>
-
-    
-<h3><a name="DMI_BAD_MONTH">DMI: Bad constant value for month (DMI_BAD_MONTH)</a></h3>
-
-
-<p>
-This code passes a constant month
-value outside the expected range of 0..11 to a method.
-</p>
-
-    
-<h3><a name="DMI_BIGDECIMAL_CONSTRUCTED_FROM_DOUBLE">DMI: BigDecimal constructed from double that isn't represented precisely (DMI_BIGDECIMAL_CONSTRUCTED_FROM_DOUBLE)</a></h3>
-
-      
-    <p>
-This code creates a BigDecimal from a double value that doesn't translate well to a
-decimal number.
-For example, one might assume that writing new BigDecimal(0.1) in Java creates a BigDecimal which is exactly equal to 0.1 (an unscaled value of 1, with a scale of 1), but it is actually equal to 0.1000000000000000055511151231257827021181583404541015625.
-You probably want to use the BigDecimal.valueOf(double d) method, which uses the String representation
-of the double to create the BigDecimal (e.g., BigDecimal.valueOf(0.1) gives 0.1).
-</p>
-
-
-    
-<h3><a name="DMI_CALLING_NEXT_FROM_HASNEXT">DMI: hasNext method invokes next (DMI_CALLING_NEXT_FROM_HASNEXT)</a></h3>
-
-
-<p>
-The hasNext() method invokes the next() method. This is almost certainly wrong,
-since the hasNext() method is not supposed to change the state of the iterator,
-and the next method is supposed to change the state of the iterator.
-</p>
-
-    
-<h3><a name="DMI_COLLECTIONS_SHOULD_NOT_CONTAIN_THEMSELVES">DMI: Collections should not contain themselves (DMI_COLLECTIONS_SHOULD_NOT_CONTAIN_THEMSELVES)</a></h3>
-
-     
-     <p> This call to a generic collection's method would only make sense if a collection contained
-itself (e.g., if <code>s.contains(s)</code> were true). This is unlikely to be true and would cause
-problems if it were true (such as the computation of the hash code resulting in infinite recursion).
-It is likely that the wrong value is being passed as a parameter.
-    </p>
-     
-    
-<h3><a name="DMI_DOH">DMI: D'oh! A nonsensical method invocation (DMI_DOH)</a></h3>
-
-      
-    <p>
-This partical method invocation doesn't make sense, for reasons that should be apparent from inspection.
-</p>
-
-
-    
-<h3><a name="DMI_INVOKING_HASHCODE_ON_ARRAY">DMI: Invocation of hashCode on an array (DMI_INVOKING_HASHCODE_ON_ARRAY)</a></h3>
-
-
-<p>
-The code invokes hashCode on an array. Calling hashCode on
-an array returns the same value as System.identityHashCode, and ingores
-the contents and length of the array. If you need a hashCode that
-depends on the contents of an array <code>a</code>,
-use <code>java.util.Arrays.hashCode(a)</code>.
-
-</p>
-
-    
-<h3><a name="DMI_LONG_BITS_TO_DOUBLE_INVOKED_ON_INT">DMI: Double.longBitsToDouble invoked on an int (DMI_LONG_BITS_TO_DOUBLE_INVOKED_ON_INT)</a></h3>
-
-
-<p> The Double.longBitsToDouble method is invoked, but a 32 bit int value is passed
-    as an argument. This almostly certainly is not intended and is unlikely
-    to give the intended result.
-</p>
-
-    
-<h3><a name="DMI_VACUOUS_SELF_COLLECTION_CALL">DMI: Vacuous call to collections (DMI_VACUOUS_SELF_COLLECTION_CALL)</a></h3>
-
-     
-     <p> This call doesn't make sense. For any collection <code>c</code>, calling <code>c.containsAll(c)</code> should
-always be true, and <code>c.retainAll(c)</code> should have no effect.
-    </p>
-     
-    
-<h3><a name="DMI_ANNOTATION_IS_NOT_VISIBLE_TO_REFLECTION">Dm: Can't use reflection to check for presence of annotation without runtime retention (DMI_ANNOTATION_IS_NOT_VISIBLE_TO_REFLECTION)</a></h3>
-
-
-  <p> Unless an annotation has itself been annotated with  @Retention(RetentionPolicy.RUNTIME), the annotation can't be observed using reflection
-(e.g., by using the isAnnotationPresent method).
-   .</p>
-
-    
-<h3><a name="DMI_FUTILE_ATTEMPT_TO_CHANGE_MAXPOOL_SIZE_OF_SCHEDULED_THREAD_POOL_EXECUTOR">Dm: Futile attempt to change max pool size of ScheduledThreadPoolExecutor (DMI_FUTILE_ATTEMPT_TO_CHANGE_MAXPOOL_SIZE_OF_SCHEDULED_THREAD_POOL_EXECUTOR)</a></h3>
-
-      
-    <p>(<a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html">Javadoc</a>)
-While ScheduledThreadPoolExecutor inherits from ThreadPoolExecutor, a few of the inherited tuning methods are not useful for it. In particular, because it acts as a fixed-sized pool using corePoolSize threads and an unbounded queue, adjustments to maximumPoolSize have no useful effect.
-    </p>
-
-
-    
-<h3><a name="DMI_SCHEDULED_THREAD_POOL_EXECUTOR_WITH_ZERO_CORE_THREADS">Dm: Creation of ScheduledThreadPoolExecutor with zero core threads (DMI_SCHEDULED_THREAD_POOL_EXECUTOR_WITH_ZERO_CORE_THREADS)</a></h3>
-
-      
-    <p>(<a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html#ScheduledThreadPoolExecutor(int)">Javadoc</a>)
-A ScheduledThreadPoolExecutor with zero core threads will never execute anything; changes to the max pool size are ignored.
-</p>
-
-
-    
-<h3><a name="DMI_VACUOUS_CALL_TO_EASYMOCK_METHOD">Dm: Useless/vacuous call to EasyMock method (DMI_VACUOUS_CALL_TO_EASYMOCK_METHOD)</a></h3>
-
-      
-    <p>This call doesn't pass any objects to the EasyMock method, so the call doesn't do anything.
-</p>
-
-
-    
-<h3><a name="EC_ARRAY_AND_NONARRAY">EC: equals() used to compare array and nonarray (EC_ARRAY_AND_NONARRAY)</a></h3>
-
-
-<p>
-This method invokes the .equals(Object o) to compare an array and a reference that doesn't seem
-to be an array. If things being compared are of different types, they are guaranteed to be unequal
-and the comparison is almost certainly an error. Even if they are both arrays, the equals method
-on arrays only determines of the two arrays are the same object.
-To compare the
-contents of the arrays, use java.util.Arrays.equals(Object[], Object[]).
-</p>
-
-    
-<h3><a name="EC_BAD_ARRAY_COMPARE">EC: Invocation of equals() on an array, which is equivalent to == (EC_BAD_ARRAY_COMPARE)</a></h3>
-
-
-<p>
-This method invokes the .equals(Object o) method on an array. Since arrays do not override the equals
-method of Object, calling equals on an array is the same as comparing their addresses. To compare the
-contents of the arrays, use <code>java.util.Arrays.equals(Object[], Object[])</code>.
-To compare the addresses of the arrays, it would be
-less confusing to explicitly check pointer equality using <code>==</code>.
-</p>
-
-    
-<h3><a name="EC_INCOMPATIBLE_ARRAY_COMPARE">EC: equals(...) used to compare incompatible arrays (EC_INCOMPATIBLE_ARRAY_COMPARE)</a></h3>
-
-
-<p>
-This method invokes the .equals(Object o) to compare two arrays, but the arrays of
-of incompatible types (e.g., String[] and StringBuffer[], or String[] and int[]).
-They will never be equal. In addition, when equals(...) is used to compare arrays it
-only checks to see if they are the same array, and ignores the contents of the arrays.
-</p>
-
-    
-<h3><a name="EC_NULL_ARG">EC: Call to equals(null) (EC_NULL_ARG)</a></h3>
-
-
-<p> This method calls equals(Object), passing a null value as
-the argument. According to the contract of the equals() method,
-this call should always return <code>false</code>.</p>
-
-    
-<h3><a name="EC_UNRELATED_CLASS_AND_INTERFACE">EC: Call to equals() comparing unrelated class and interface (EC_UNRELATED_CLASS_AND_INTERFACE)</a></h3>
-
-      
-<p>
-This method calls equals(Object) on two references,  one of which is a class
-and the other an interface, where neither the class nor any of its
-non-abstract subclasses implement the interface.
-Therefore, the objects being compared
-are unlikely to be members of the same class at runtime
-(unless some application classes were not analyzed, or dynamic class
-loading can occur at runtime).
-According to the contract of equals(),
-objects of different
-classes should always compare as unequal; therefore, according to the
-contract defined by java.lang.Object.equals(Object),
-the result of this comparison will always be false at runtime.
-</p>
-      
-   
-<h3><a name="EC_UNRELATED_INTERFACES">EC: Call to equals() comparing different interface types (EC_UNRELATED_INTERFACES)</a></h3>
-
-
-<p> This method calls equals(Object) on two references of unrelated
-interface types, where neither is a subtype of the other,
-and there are no known non-abstract classes which implement both interfaces.
-Therefore, the objects being compared
-are unlikely to be members of the same class at runtime
-(unless some application classes were not analyzed, or dynamic class
-loading can occur at runtime).
-According to the contract of equals(),
-objects of different
-classes should always compare as unequal; therefore, according to the
-contract defined by java.lang.Object.equals(Object),
-the result of this comparison will always be false at runtime.
-</p>
-
-    
-<h3><a name="EC_UNRELATED_TYPES">EC: Call to equals() comparing different types (EC_UNRELATED_TYPES)</a></h3>
-
-
-<p> This method calls equals(Object) on two references of different
-class types with no common subclasses.
-Therefore, the objects being compared
-are unlikely to be members of the same class at runtime
-(unless some application classes were not analyzed, or dynamic class
-loading can occur at runtime).
-According to the contract of equals(),
-objects of different
-classes should always compare as unequal; therefore, according to the
-contract defined by java.lang.Object.equals(Object),
-the result of this comparison will always be false at runtime.
-</p>
-
-    
-<h3><a name="EC_UNRELATED_TYPES_USING_POINTER_EQUALITY">EC: Using pointer equality to compare different types (EC_UNRELATED_TYPES_USING_POINTER_EQUALITY)</a></h3>
-
-
-<p> This method uses using pointer equality to compare two references that seem to be of
-different types.  The result of this comparison will always be false at runtime.
-</p>
-
-    
-<h3><a name="EQ_ALWAYS_FALSE">Eq: equals method always returns false (EQ_ALWAYS_FALSE)</a></h3>
-
-
-  <p> This class defines an equals method that always returns false. This means that an object is not equal to itself, and it is impossible to create useful Maps or Sets of this class. More fundamentally, it means
-that equals is not reflexive, one of the requirements of the equals method.</p>
-<p>The likely intended semantics are object identity: that an object is equal to itself. This is the behavior inherited from class <code>Object</code>. If you need to override an equals inherited from a different
-superclass, you can use use:</p>
-<pre>
-public boolean equals(Object o) { return this == o; }
-</pre>
-
-    
-<h3><a name="EQ_ALWAYS_TRUE">Eq: equals method always returns true (EQ_ALWAYS_TRUE)</a></h3>
-
-
-  <p> This class defines an equals method that always returns true. This is imaginative, but not very smart.
-Plus, it means that the equals method is not symmetric.
-</p>
-
-    
-<h3><a name="EQ_COMPARING_CLASS_NAMES">Eq: equals method compares class names rather than class objects (EQ_COMPARING_CLASS_NAMES)</a></h3>
-
-
-  <p> This method checks to see if two objects are the same class by checking to see if the names
-of their classes are equal. You can have different classes with the same name if they are loaded by
-different class loaders. Just check to see if the class objects are the same.
-</p>
-
-    
-<h3><a name="EQ_DONT_DEFINE_EQUALS_FOR_ENUM">Eq: Covariant equals() method defined for enum (EQ_DONT_DEFINE_EQUALS_FOR_ENUM)</a></h3>
-
-
-  <p> This class defines an enumeration, and equality on enumerations are defined
-using object identity. Defining a covariant equals method for an enumeration
-value is exceptionally bad practice, since it would likely result
-in having two different enumeration values that compare as equals using
-the covariant enum method, and as not equal when compared normally.
-Don't do it.
-</p>
-
-    
-<h3><a name="EQ_OTHER_NO_OBJECT">Eq: equals() method defined that doesn't override equals(Object) (EQ_OTHER_NO_OBJECT)</a></h3>
-
-
-  <p> This class defines an <code>equals()</code>
-  method, that doesn't override the normal <code>equals(Object)</code> method
-  defined in the base <code>java.lang.Object</code> class.&nbsp; Instead, it
-  inherits an <code>equals(Object)</code> method from a superclass.
-  The class should probably define a <code>boolean equals(Object)</code> method.
-  </p>
-
-    
-<h3><a name="EQ_OTHER_USE_OBJECT">Eq: equals() method defined that doesn't override Object.equals(Object) (EQ_OTHER_USE_OBJECT)</a></h3>
-
-
-  <p> This class defines an <code>equals()</code>
-  method, that doesn't override the normal <code>equals(Object)</code> method
-  defined in the base <code>java.lang.Object</code> class.&nbsp;
-  The class should probably define a <code>boolean equals(Object)</code> method.
-  </p>
-
-    
-<h3><a name="EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC">Eq: equals method overrides equals in superclass and may not be symmetric (EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC)</a></h3>
-
-
-  <p> This class defines an equals method that overrides an equals method in a superclass. Both equals methods
-methods use <code>instanceof</code> in the determination of whether two objects are equal. This is fraught with peril,
-since it is important that the equals method is symmetrical (in other words, <code>a.equals(b) == b.equals(a)</code>).
-If B is a subtype of A, and A's equals method checks that the argument is an instanceof A, and B's equals method
-checks that the argument is an instanceof B, it is quite likely that the equivalence relation defined by these
-methods is not symmetric.
-</p>
-
-    
-<h3><a name="EQ_SELF_USE_OBJECT">Eq: Covariant equals() method defined, Object.equals(Object) inherited (EQ_SELF_USE_OBJECT)</a></h3>
-
-
-  <p> This class defines a covariant version of the <code>equals()</code>
-  method, but inherits the normal <code>equals(Object)</code> method
-  defined in the base <code>java.lang.Object</code> class.&nbsp;
-  The class should probably define a <code>boolean equals(Object)</code> method.
-  </p>
-
-    
-<h3><a name="FE_TEST_IF_EQUAL_TO_NOT_A_NUMBER">FE: Doomed test for equality to NaN (FE_TEST_IF_EQUAL_TO_NOT_A_NUMBER)</a></h3>
-
-   
-    <p>
-    This code checks to see if a floating point value is equal to the special
-    Not A Number value (e.g., <code>if (x == Double.NaN)</code>). However,
-    because of the special semantics of <code>NaN</code>, no value
-    is equal to <code>Nan</code>, including <code>NaN</code>. Thus,
-    <code>x == Double.NaN</code> always evaluates to false.
-
-    To check to see if a value contained in <code>x</code>
-    is the special Not A Number value, use
-    <code>Double.isNaN(x)</code> (or <code>Float.isNaN(x)</code> if
-    <code>x</code> is floating point precision).
-    </p>
-    
-     
-<h3><a name="VA_FORMAT_STRING_BAD_ARGUMENT">FS: Format string placeholder incompatible with passed argument (VA_FORMAT_STRING_BAD_ARGUMENT)</a></h3>
-
-
-<p>
-The format string placeholder is incompatible with the corresponding
-argument. For example,
-<code>
-  System.out.println("%d\n", "hello");
-</code>
-<p>The %d placeholder requires a numeric argument, but a string value is
-passed instead.
-A runtime exception will occur when
-this statement is executed.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_BAD_CONVERSION">FS: The type of a supplied argument doesn't match format specifier (VA_FORMAT_STRING_BAD_CONVERSION)</a></h3>
-
-
-<p>
-One of the arguments is uncompatible with the corresponding format string specifier.
-As a result, this will generate a runtime exception when executed.
-For example, <code>String.format("%d", "1")</code> will generate an exception, since
-the String "1" is incompatible with the format specifier %d.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED">FS: MessageFormat supplied where printf style format expected (VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED)</a></h3>
-
-
-<p>
-A method is called that expects a Java printf format string and a list of arguments.
-However, the format string doesn't contain any format specifiers (e.g., %s) but
-does contain message format elements (e.g., {0}).  It is likely
-that the code is supplying a MessageFormat string when a printf-style format string
-is required. At runtime, all of the arguments will be ignored
-and the format string will be returned exactly as provided without any formatting.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_EXTRA_ARGUMENTS_PASSED">FS: More arguments are passed than are actually used in the format string (VA_FORMAT_STRING_EXTRA_ARGUMENTS_PASSED)</a></h3>
-
-
-<p>
-A format-string method with a variable number of arguments is called,
-but more arguments are passed than are actually used by the format string.
-This won't cause a runtime exception, but the code may be silently omitting
-information that was intended to be included in the formatted string.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_ILLEGAL">FS: Illegal format string (VA_FORMAT_STRING_ILLEGAL)</a></h3>
-
-
-<p>
-The format string is syntactically invalid,
-and a runtime exception will occur when
-this statement is executed.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_MISSING_ARGUMENT">FS: Format string references missing argument (VA_FORMAT_STRING_MISSING_ARGUMENT)</a></h3>
-
-
-<p>
-Not enough arguments are passed to satisfy a placeholder in the format string.
-A runtime exception will occur when
-this statement is executed.
-</p>
-
-     
-<h3><a name="VA_FORMAT_STRING_NO_PREVIOUS_ARGUMENT">FS: No previous argument for format string (VA_FORMAT_STRING_NO_PREVIOUS_ARGUMENT)</a></h3>
-
-
-<p>
-The format string specifies a relative index to request that the argument for the previous format specifier
-be reused. However, there is no previous argument.
-For example,
-</p>
-<p><code>formatter.format("%&lt;s %s", "a", "b")</code>
-</p>
-<p>would throw a MissingFormatArgumentException when executed.
-</p>
-
-     
-<h3><a name="GC_UNRELATED_TYPES">GC: No relationship between generic parameter and method argument (GC_UNRELATED_TYPES)</a></h3>
-
-     
-     <p> This call to a generic collection method contains an argument
-     with an incompatible class from that of the collection's parameter
-    (i.e., the type of the argument is neither a supertype nor a subtype
-        of the corresponding generic type argument).
-     Therefore, it is unlikely that the collection contains any objects
-    that are equal to the method argument used here.
-    Most likely, the wrong value is being passed to the method.</p>
-    <p>In general, instances of two unrelated classes are not equal.
-    For example, if the <code>Foo</code> and <code>Bar</code> classes
-    are not related by subtyping, then an instance of <code>Foo</code>
-        should not be equal to an instance of <code>Bar</code>.
-    Among other issues, doing so will likely result in an equals method
-    that is not symmetrical. For example, if you define the <code>Foo</code> class
-    so that a <code>Foo</code> can be equal to a <code>String</code>,
-    your equals method isn't symmetrical since a <code>String</code> can only be equal
-    to a <code>String</code>.
-    </p>
-    <p>In rare cases, people do define nonsymmetrical equals methods and still manage to make
-    their code work. Although none of the APIs document or guarantee it, it is typically
-    the case that if you check if a <code>Collection&lt;String&gt;</code> contains
-    a <code>Foo</code>, the equals method of argument (e.g., the equals method of the
-    <code>Foo</code> class) used to perform the equality checks.
-    </p>
-     
-    
-<h3><a name="HE_SIGNATURE_DECLARES_HASHING_OF_UNHASHABLE_CLASS">HE: Signature declares use of unhashable class in hashed construct (HE_SIGNATURE_DECLARES_HASHING_OF_UNHASHABLE_CLASS)</a></h3>
-
-
-  <p> A method, field or class declares a generic signature where a non-hashable class
-is used in context where a hashable class is required.
-A class that declares an equals method but inherits a hashCode() method
-from Object is unhashable, since it doesn't fulfill the requirement that
-equal objects have equal hashCodes.
-</p>
-
-    
-<h3><a name="HE_USE_OF_UNHASHABLE_CLASS">HE: Use of class without a hashCode() method in a hashed data structure (HE_USE_OF_UNHASHABLE_CLASS)</a></h3>
-
-
-  <p> A class defines an equals(Object)  method but not a hashCode() method,
-and thus doesn't fulfill the requirement that equal objects have equal hashCodes.
-An instance of this class is used in a hash data structure, making the need to
-fix this problem of highest importance.
-
-    
-<h3><a name="ICAST_INT_2_LONG_AS_INSTANT">ICAST: int value converted to long and used as absolute time (ICAST_INT_2_LONG_AS_INSTANT)</a></h3>
-
-
-<p>
-This code converts a 32-bit int value to a 64-bit long value, and then
-passes that value for a method parameter that requires an absolute time value.
-An absolute time value is the number
-of milliseconds since the standard base time known as "the epoch", namely January 1, 1970, 00:00:00 GMT.
-For example, the following method, intended to convert seconds since the epoc into a Date, is badly
-broken:</p>
-<pre>
-Date getDate(int seconds) { return new Date(seconds * 1000); }
-</pre>
-<p>The multiplication is done using 32-bit arithmetic, and then converted to a 64-bit value.
-When a 32-bit value is converted to 64-bits and used to express an absolute time
-value, only dates in December 1969 and January 1970 can be represented.</p>
-
-<p>Correct implementations for the above method are:</p>
-
-<pre>
-// Fails for dates after 2037
-Date getDate(int seconds) { return new Date(seconds * 1000L); }
-
-// better, works for all dates
-Date getDate(long seconds) { return new Date(seconds * 1000); }
-</pre>
-
-    
-<h3><a name="ICAST_INT_CAST_TO_DOUBLE_PASSED_TO_CEIL">ICAST: Integral value cast to double and then passed to Math.ceil (ICAST_INT_CAST_TO_DOUBLE_PASSED_TO_CEIL)</a></h3>
-
-
-<p>
-This code converts an integral value (e.g., int or long)
-to a double precision
-floating point number and then
-passing the result to the Math.ceil() function, which rounds a double to
-the next higher integer value. This operation should always be a no-op,
-since the converting an integer to a double should give a number with no fractional part.
-It is likely that the operation that generated the value to be passed
-to Math.ceil was intended to be performed using double precision
-floating point arithmetic.
-</p>
-
-
-    
-<h3><a name="ICAST_INT_CAST_TO_FLOAT_PASSED_TO_ROUND">ICAST: int value cast to float and then passed to Math.round (ICAST_INT_CAST_TO_FLOAT_PASSED_TO_ROUND)</a></h3>
-
-
-<p>
-This code converts an int value to a float precision
-floating point number and then
-passing the result to the Math.round() function, which returns the int/long closest
-to the argument. This operation should always be a no-op,
-since the converting an integer to a float should give a number with no fractional part.
-It is likely that the operation that generated the value to be passed
-to Math.round was intended to be performed using
-floating point arithmetic.
-</p>
-
-
-    
-<h3><a name="IJU_ASSERT_METHOD_INVOKED_FROM_RUN_METHOD">IJU: JUnit assertion in run method will not be noticed by JUnit (IJU_ASSERT_METHOD_INVOKED_FROM_RUN_METHOD)</a></h3>
-
-
-<p> A JUnit assertion is performed in a run method. Failed JUnit assertions
-just result in exceptions being thrown.
-Thus, if this exception occurs in a thread other than the thread that invokes
-the test method, the exception will terminate the thread but not result
-in the test failing.
-</p>
-
-    
-<h3><a name="IJU_BAD_SUITE_METHOD">IJU: TestCase declares a bad suite method  (IJU_BAD_SUITE_METHOD)</a></h3>
-
-
-<p> Class is a JUnit TestCase and defines a suite() method.
-However, the suite method needs to be declared as either</p>
-<pre>public static junit.framework.Test suite()</pre>
-or
-<pre>public static junit.framework.TestSuite suite()</pre>
-
-    
-<h3><a name="IJU_NO_TESTS">IJU: TestCase has no tests (IJU_NO_TESTS)</a></h3>
-
-
-<p> Class is a JUnit TestCase but has not implemented any test methods</p>
-
-    
-<h3><a name="IJU_SETUP_NO_SUPER">IJU: TestCase defines setUp that doesn't call super.setUp() (IJU_SETUP_NO_SUPER)</a></h3>
-
-
-<p> Class is a JUnit TestCase and implements the setUp method. The setUp method should call
-super.setUp(), but doesn't.</p>
-
-    
-<h3><a name="IJU_SUITE_NOT_STATIC">IJU: TestCase implements a non-static suite method  (IJU_SUITE_NOT_STATIC)</a></h3>
-
-
-<p> Class is a JUnit TestCase and implements the suite() method.
- The suite method should be declared as being static, but isn't.</p>
-
-    
-<h3><a name="IJU_TEARDOWN_NO_SUPER">IJU: TestCase defines tearDown that doesn't call super.tearDown() (IJU_TEARDOWN_NO_SUPER)</a></h3>
-
-
-<p> Class is a JUnit TestCase and implements the tearDown method. The tearDown method should call
-super.tearDown(), but doesn't.</p>
-
-    
-<h3><a name="IL_CONTAINER_ADDED_TO_ITSELF">IL: A collection is added to itself (IL_CONTAINER_ADDED_TO_ITSELF)</a></h3>
-
-
-<p>A collection is added to itself. As a result, computing the hashCode of this
-set will throw a StackOverflowException.
-</p>
-
-    
-<h3><a name="IL_INFINITE_LOOP">IL: An apparent infinite loop (IL_INFINITE_LOOP)</a></h3>
-
-
-<p>This loop doesn't seem to have a way to terminate (other than by perhaps
-throwing an exception).</p>
-
-    
-<h3><a name="IL_INFINITE_RECURSIVE_LOOP">IL: An apparent infinite recursive loop (IL_INFINITE_RECURSIVE_LOOP)</a></h3>
-
-
-<p>This method unconditionally invokes itself. This would seem to indicate
-an infinite recursive loop that will result in a stack overflow.</p>
-
-    
-<h3><a name="IM_MULTIPLYING_RESULT_OF_IREM">IM: Integer multiply of result of integer remainder (IM_MULTIPLYING_RESULT_OF_IREM)</a></h3>
-
-
-<p>
-The code multiplies the result of an integer remaining by an integer constant.
-Be sure you don't have your operator precedence confused. For example
-i % 60 * 1000 is (i % 60) * 1000, not i % (60 * 1000).
-</p>
-
-    
-<h3><a name="INT_BAD_COMPARISON_WITH_INT_VALUE">INT: Bad comparison of int value with long constant (INT_BAD_COMPARISON_WITH_INT_VALUE)</a></h3>
-
-
-<p> This code compares an int value with a long constant that is outside
-the range of values that can be represented as an int value.
-This comparison is vacuous and possibily to be incorrect.
-</p>
-
-    
-<h3><a name="INT_BAD_COMPARISON_WITH_NONNEGATIVE_VALUE">INT: Bad comparison of nonnegative value with negative constant (INT_BAD_COMPARISON_WITH_NONNEGATIVE_VALUE)</a></h3>
-
-
-<p> This code compares a value that is guaranteed to be non-negative with a negative constant.
-</p>
-
-    
-<h3><a name="INT_BAD_COMPARISON_WITH_SIGNED_BYTE">INT: Bad comparison of signed byte (INT_BAD_COMPARISON_WITH_SIGNED_BYTE)</a></h3>
-
-
-<p> Signed bytes can only have a value in the range -128 to 127. Comparing
-a signed byte with a value outside that range is vacuous and likely to be incorrect.
-To convert a signed byte <code>b</code> to an unsigned value in the range 0..255,
-use <code>0xff &amp; b</code>
-</p>
-
-    
-<h3><a name="IO_APPENDING_TO_OBJECT_OUTPUT_STREAM">IO: Doomed attempt to append to an object output stream (IO_APPENDING_TO_OBJECT_OUTPUT_STREAM)</a></h3>
-
-      
-      <p>
-     This code opens a file in append mode and then wraps the result in an object output stream.
-     This won't allow you to append to an existing object output stream stored in a file. If you want to be
-     able to append to an object output stream, you need to keep the object output stream open.
-      </p>
-      <p>The only situation in which opening a file in append mode and the writing an object output stream
-      could work is if on reading the file you plan to open it in random access mode and seek to the byte offset
-      where the append started.
-      </p>
-
-      <p>
-      TODO: example.
-      </p>
-      
-    
-<h3><a name="IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN">IP: A parameter is dead upon entry to a method but overwritten (IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN)</a></h3>
-
-
-<p>
-The initial value of this parameter is ignored, and the parameter
-is overwritten here. This often indicates a mistaken belief that
-the write to the parameter will be conveyed back to
-the caller.
-</p>
-
-    
-<h3><a name="MF_CLASS_MASKS_FIELD">MF: Class defines field that masks a superclass field (MF_CLASS_MASKS_FIELD)</a></h3>
-
-
-<p> This class defines a field with the same name as a visible
-instance field in a superclass.  This is confusing, and
-may indicate an error if methods update or access one of
-the fields when they wanted the other.</p>
-
-    
-<h3><a name="MF_METHOD_MASKS_FIELD">MF: Method defines a variable that obscures a field (MF_METHOD_MASKS_FIELD)</a></h3>
-
-
-<p> This method defines a local variable with the same name as a field
-in this class or a superclass.  This may cause the method to
-read an uninitialized value from the field, leave the field uninitialized,
-or both.</p>
-
-    
-<h3><a name="NP_ALWAYS_NULL">NP: Null pointer dereference (NP_ALWAYS_NULL)</a></h3>
-
-
-<p> A null pointer is dereferenced here.&nbsp; This will lead to a
-<code>NullPointerException</code> when the code is executed.</p>
-
-    
-<h3><a name="NP_ALWAYS_NULL_EXCEPTION">NP: Null pointer dereference in method on exception path (NP_ALWAYS_NULL_EXCEPTION)</a></h3>
-
-
-<p> A pointer which is null on an exception path is dereferenced here.&nbsp;
-This will lead to a <code>NullPointerException</code> when the code is executed.&nbsp;
-Note that because FindBugs currently does not prune infeasible exception paths,
-this may be a false warning.</p>
-
-<p> Also note that FindBugs considers the default case of a switch statement to
-be an exception path, since the default case is often infeasible.</p>
-
-    
-<h3><a name="NP_ARGUMENT_MIGHT_BE_NULL">NP: Method does not check for null argument (NP_ARGUMENT_MIGHT_BE_NULL)</a></h3>
-
-      
-      <p>
-    A parameter to this method has been identified as a value that should
-    always be checked to see whether or not it is null, but it is being dereferenced
-    without a preceding null check.
-      </p>
-      
-   
-<h3><a name="NP_CLOSING_NULL">NP: close() invoked on a value that is always null (NP_CLOSING_NULL)</a></h3>
-
-
-<p> close() is being invoked on a value that is always null. If this statement is executed,
-a null pointer exception will occur. But the big risk here you never close
-something that should be closed.
-
-    
-<h3><a name="NP_GUARANTEED_DEREF">NP: Null value is guaranteed to be dereferenced (NP_GUARANTEED_DEREF)</a></h3>
-
-          
-              <p>
-              There is a statement or branch that if executed guarantees that
-              a value is null at this point, and that
-              value that is guaranteed to be dereferenced
-              (except on forward paths involving runtime exceptions).
-              </p>
-        <p>Note that a check such as
-            <code>if (x == null) throw new NullPointerException();</code>
-            is treated as a dereference of <code>x</code>.
-          
-      
-<h3><a name="NP_GUARANTEED_DEREF_ON_EXCEPTION_PATH">NP: Value is null and guaranteed to be dereferenced on exception path (NP_GUARANTEED_DEREF_ON_EXCEPTION_PATH)</a></h3>
-
-          
-              <p>
-              There is a statement or branch on an exception path
-                that if executed guarantees that
-              a value is null at this point, and that
-              value that is guaranteed to be dereferenced
-              (except on forward paths involving runtime exceptions).
-              </p>
-          
-      
-<h3><a name="NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR">NP: Nonnull field is not initialized (NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR)</a></h3>
-
-       
-       <p> The field is marked as nonnull, but isn't written to by the constructor.
-    The field might be initialized elsewhere during constructor, or might always
-    be initialized before use.
-       </p>
-       
-       
-<h3><a name="NP_NONNULL_PARAM_VIOLATION">NP: Method call passes null to a nonnull parameter  (NP_NONNULL_PARAM_VIOLATION)</a></h3>
-
-      
-      <p>
-      This method passes a null value as the parameter of a method which
-    must be nonnull. Either this parameter has been explicitly marked
-    as @Nonnull, or analysis has determined that this parameter is
-    always dereferenced.
-      </p>
-      
-   
-<h3><a name="NP_NONNULL_RETURN_VIOLATION">NP: Method may return null, but is declared @NonNull (NP_NONNULL_RETURN_VIOLATION)</a></h3>
-
-      
-      <p>
-      This method may return a null value, but the method (or a superclass method
-      which it overrides) is declared to return @NonNull.
-      </p>
-      
-   
-<h3><a name="NP_NULL_INSTANCEOF">NP: A known null value is checked to see if it is an instance of a type (NP_NULL_INSTANCEOF)</a></h3>
-
-
-<p>
-This instanceof test will always return false, since the value being checked is guaranteed to be null.
-Although this is safe, make sure it isn't
-an indication of some misunderstanding or some other logic error.
-</p>
-
-    
-<h3><a name="NP_NULL_ON_SOME_PATH">NP: Possible null pointer dereference (NP_NULL_ON_SOME_PATH)</a></h3>
-
-
-<p> There is a branch of statement that, <em>if executed,</em>  guarantees that
-a null value will be dereferenced, which
-would generate a <code>NullPointerException</code> when the code is executed.
-Of course, the problem might be that the branch or statement is infeasible and that
-the null pointer exception can't ever be executed; deciding that is beyond the ability of FindBugs.
-</p>
-
-    
-<h3><a name="NP_NULL_ON_SOME_PATH_EXCEPTION">NP: Possible null pointer dereference in method on exception path (NP_NULL_ON_SOME_PATH_EXCEPTION)</a></h3>
-
-
-<p> A reference value which is null on some exception control path is
-dereferenced here.&nbsp; This may lead to a <code>NullPointerException</code>
-when the code is executed.&nbsp;
-Note that because FindBugs currently does not prune infeasible exception paths,
-this may be a false warning.</p>
-
-<p> Also note that FindBugs considers the default case of a switch statement to
-be an exception path, since the default case is often infeasible.</p>
-
-    
-<h3><a name="NP_NULL_PARAM_DEREF">NP: Method call passes null for nonnull parameter (NP_NULL_PARAM_DEREF)</a></h3>
-
-      
-      <p>
-      This method call passes a null value for a nonnull method parameter.
-    Either the parameter is annotated as a parameter that should
-    always be nonnull, or analysis has shown that it will always be
-    dereferenced.
-      </p>
-      
-   
-<h3><a name="NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS">NP: Method call passes null for nonnull parameter (NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS)</a></h3>
-
-      
-      <p>
-      A possibly-null value is passed at a call site where all known
-      target methods require the parameter to be nonnull.
-    Either the parameter is annotated as a parameter that should
-    always be nonnull, or analysis has shown that it will always be
-    dereferenced.
-      </p>
-      
-   
-<h3><a name="NP_NULL_PARAM_DEREF_NONVIRTUAL">NP: Non-virtual method call passes null for nonnull parameter (NP_NULL_PARAM_DEREF_NONVIRTUAL)</a></h3>
-
-      
-      <p>
-      A possibly-null value is passed to a nonnull method parameter.
-    Either the parameter is annotated as a parameter that should
-    always be nonnull, or analysis has shown that it will always be
-    dereferenced.
-      </p>
-      
-   
-<h3><a name="NP_STORE_INTO_NONNULL_FIELD">NP: Store of null value into field annotated NonNull (NP_STORE_INTO_NONNULL_FIELD)</a></h3>
-
-      
-<p> A value that could be null is stored into a field that has been annotated as NonNull. </p>
-
-    
-<h3><a name="NP_UNWRITTEN_FIELD">NP: Read of unwritten field (NP_UNWRITTEN_FIELD)</a></h3>
-
-
-  <p> The program is dereferencing a field that does not seem to ever have a non-null value written to it.
-Unless the field is initialized via some mechanism not seen by the analysis,
-dereferencing this value will generate a null pointer exception.
-</p>
-
-    
-<h3><a name="NM_BAD_EQUAL">Nm: Class defines equal(Object); should it be equals(Object)? (NM_BAD_EQUAL)</a></h3>
-
-
-<p> This class defines a method <code>equal(Object)</code>.&nbsp; This method does
-not override the <code>equals(Object)</code> method in <code>java.lang.Object</code>,
-which is probably what was intended.</p>
-
-    
-<h3><a name="NM_LCASE_HASHCODE">Nm: Class defines hashcode(); should it be hashCode()? (NM_LCASE_HASHCODE)</a></h3>
-
-
-  <p> This class defines a method called <code>hashcode()</code>.&nbsp; This method
-  does not override the <code>hashCode()</code> method in <code>java.lang.Object</code>,
-  which is probably what was intended.</p>
-
-    
-<h3><a name="NM_LCASE_TOSTRING">Nm: Class defines tostring(); should it be toString()? (NM_LCASE_TOSTRING)</a></h3>
-
-
-  <p> This class defines a method called <code>tostring()</code>.&nbsp; This method
-  does not override the <code>toString()</code> method in <code>java.lang.Object</code>,
-  which is probably what was intended.</p>
-
-    
-<h3><a name="NM_METHOD_CONSTRUCTOR_CONFUSION">Nm: Apparent method/constructor confusion (NM_METHOD_CONSTRUCTOR_CONFUSION)</a></h3>
-
-
-  <p> This regular method has the same name as the class it is defined in. It is likely that this was intended to be a constructor.
-      If it was intended to be a constructor, remove the declaration of a void return value.
-    If you had accidently defined this method, realized the mistake, defined a proper constructor
-    but can't get rid of this method due to backwards compatibility, deprecate the method.
-</p>
-
-    
-<h3><a name="NM_VERY_CONFUSING">Nm: Very confusing method names (NM_VERY_CONFUSING)</a></h3>
-
-
-  <p> The referenced methods have names that differ only by capitalization.
-This is very confusing because if the capitalization were
-identical then one of the methods would override the other.
-</p>
-
-    
-<h3><a name="NM_WRONG_PACKAGE">Nm: Method doesn't override method in superclass due to wrong package for parameter (NM_WRONG_PACKAGE)</a></h3>
-
-
-  <p> The method in the subclass doesn't override a similar method in a superclass because the type of a parameter doesn't exactly match
-the type of the corresponding parameter in the superclass. For example, if you have:</p>
-
-<blockquote>
-<pre>
-import alpha.Foo;
-public class A {
-  public int f(Foo x) { return 17; }
-}
-----
-import beta.Foo;
-public class B extends A {
-  public int f(Foo x) { return 42; }
-}
-</pre>
-</blockquote>
-
-<p>The <code>f(Foo)</code> method defined in class <code>B</code> doesn't
-override the
-<code>f(Foo)</code> method defined in class <code>A</code>, because the argument
-types are <code>Foo</code>'s from different packages.
-</p>
-
-    
-<h3><a name="QBA_QUESTIONABLE_BOOLEAN_ASSIGNMENT">QBA: Method assigns boolean literal in boolean expression (QBA_QUESTIONABLE_BOOLEAN_ASSIGNMENT)</a></h3>
-
-      
-      <p>
-      This method assigns a literal boolean value (true or false) to a boolean variable inside
-      an if or while expression. Most probably this was supposed to be a boolean comparison using
-      ==, not an assignment using =.
-      </p>
-      
-    
-<h3><a name="RC_REF_COMPARISON">RC: Suspicious reference comparison (RC_REF_COMPARISON)</a></h3>
-
-
-<p> This method compares two reference values using the == or != operator,
-where the correct way to compare instances of this type is generally
-with the equals() method.
-It is possible to create distinct instances that are equal but do not compare as == since
-they are different objects.
-Examples of classes which should generally
-not be compared by reference are java.lang.Integer, java.lang.Float, etc.</p>
-
-    
-<h3><a name="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE">RCN: Nullcheck of value previously dereferenced (RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE)</a></h3>
-
-
-<p> A value is checked here to see whether it is null, but this value can't
-be null because it was previously dereferenced and if it were null a null pointer
-exception would have occurred at the earlier dereference.
-Essentially, this code and the previous dereference
-disagree as to whether this value is allowed to be null. Either the check is redundant
-or the previous dereference is erroneous.</p>
-
-    
-<h3><a name="RE_BAD_SYNTAX_FOR_REGULAR_EXPRESSION">RE: Invalid syntax for regular expression (RE_BAD_SYNTAX_FOR_REGULAR_EXPRESSION)</a></h3>
-
-
-<p>
-The code here uses a regular expression that is invalid according to the syntax
-for regular expressions. This statement will throw a PatternSyntaxException when
-executed.
-</p>
-
-    
-<h3><a name="RE_CANT_USE_FILE_SEPARATOR_AS_REGULAR_EXPRESSION">RE: File.separator used for regular expression (RE_CANT_USE_FILE_SEPARATOR_AS_REGULAR_EXPRESSION)</a></h3>
-
-
-<p>
-The code here uses <code>File.separator</code>
-where a regular expression is required. This will fail on Windows
-platforms, where the <code>File.separator</code> is a backslash, which is interpreted in a
-regular expression as an escape character. Amoung other options, you can just use
-<code>File.separatorChar=='\\' ? "\\\\" : File.separator</code> instead of
-<code>File.separator</code>
-
-</p>
-
-    
-<h3><a name="RE_POSSIBLE_UNINTENDED_PATTERN">RE: "." or "|" used for regular expression (RE_POSSIBLE_UNINTENDED_PATTERN)</a></h3>
-
-
-<p>
-A String function is being invoked and "." or "|" is being passed
-to a parameter that takes a regular expression as an argument. Is this what you intended?
-For example
-<li>s.replaceAll(".", "/") will return a String in which <em>every</em> character has been replaced by a '/' character
-<li>s.split(".") <em>always</em> returns a zero length array of String
-<li>"ab|cd".replaceAll("|", "/") will return "/a/b/|/c/d/"
-<li>"ab|cd".split("|") will return array with six (!) elements: [, a, b, |, c, d]
-</p>
-
-    
-<h3><a name="RV_01_TO_INT">RV: Random value from 0 to 1 is coerced to the integer 0 (RV_01_TO_INT)</a></h3>
-
-
-  <p>A random value from 0 to 1 is being coerced to the integer value 0. You probably
-want to multiple the random value by something else before coercing it to an integer, or use the <code>Random.nextInt(n)</code> method.
-</p>
-
-    
-<h3><a name="RV_ABSOLUTE_VALUE_OF_HASHCODE">RV: Bad attempt to compute absolute value of signed 32-bit hashcode  (RV_ABSOLUTE_VALUE_OF_HASHCODE)</a></h3>
-
-
-<p> This code generates a hashcode and then computes
-the absolute value of that hashcode.  If the hashcode
-is <code>Integer.MIN_VALUE</code>, then the result will be negative as well (since
-<code>Math.abs(Integer.MIN_VALUE) == Integer.MIN_VALUE</code>).
-</p>
-<p>One out of 2^32 strings have a hashCode of Integer.MIN_VALUE,
-including "polygenelubricants" "GydZG_" and ""DESIGNING WORKHOUSES".
-</p>
-
-    
-<h3><a name="RV_ABSOLUTE_VALUE_OF_RANDOM_INT">RV: Bad attempt to compute absolute value of signed random integer (RV_ABSOLUTE_VALUE_OF_RANDOM_INT)</a></h3>
-
-
-<p> This code generates a random signed integer and then computes
-the absolute value of that random integer.  If the number returned by the random number
-generator is <code>Integer.MIN_VALUE</code>, then the result will be negative as well (since
-<code>Math.abs(Integer.MIN_VALUE) == Integer.MIN_VALUE</code>). (Same problem arised for long values as well).
-</p>
-
-    
-<h3><a name="RV_CHECK_COMPARETO_FOR_SPECIFIC_RETURN_VALUE">RV: Code checks for specific values returned by compareTo (RV_CHECK_COMPARETO_FOR_SPECIFIC_RETURN_VALUE)</a></h3>
-
-
-   <p> This code invoked a compareTo or compare method, and checks to see if the return value is a specific value,
-such as 1 or -1. When invoking these methods, you should only check the sign of the result, not for any specific
-non-zero value. While many or most compareTo and compare methods only return -1, 0 or 1, some of them
-will return other values.
-
-    
-<h3><a name="RV_EXCEPTION_NOT_THROWN">RV: Exception created and dropped rather than thrown (RV_EXCEPTION_NOT_THROWN)</a></h3>
-
-
-   <p> This code creates an exception (or error) object, but doesn't do anything with it. For example,
-something like </p>
-<blockquote>
-<pre>
-if (x &lt; 0)
-  new IllegalArgumentException("x must be nonnegative");
-</pre>
-</blockquote>
-<p>It was probably the intent of the programmer to throw the created exception:</p>
-<blockquote>
-<pre>
-if (x &lt; 0)
-  throw new IllegalArgumentException("x must be nonnegative");
-</pre>
-</blockquote>
-
-    
-<h3><a name="RV_RETURN_VALUE_IGNORED">RV: Method ignores return value (RV_RETURN_VALUE_IGNORED)</a></h3>
-
-
-   <p> The return value of this method should be checked. One common
-cause of this warning is to invoke a method on an immutable object,
-thinking that it updates the object. For example, in the following code
-fragment,</p>
-<blockquote>
-<pre>
-String dateString = getHeaderField(name);
-dateString.trim();
-</pre>
-</blockquote>
-<p>the programmer seems to be thinking that the trim() method will update
-the String referenced by dateString. But since Strings are immutable, the trim()
-function returns a new String value, which is being ignored here. The code
-should be corrected to: </p>
-<blockquote>
-<pre>
-String dateString = getHeaderField(name);
-dateString = dateString.trim();
-</pre>
-</blockquote>
-
-    
-<h3><a name="RpC_REPEATED_CONDITIONAL_TEST">RpC: Repeated conditional tests (RpC_REPEATED_CONDITIONAL_TEST)</a></h3>
-
-
-<p>The code contains a conditional test is performed twice, one right after the other
-(e.g., <code>x == 0 || x == 0</code>). Perhaps the second occurrence is intended to be something else
-(e.g., <code>x == 0 || y == 0</code>).
-</p>
-
-    
-<h3><a name="SA_FIELD_SELF_ASSIGNMENT">SA: Self assignment of field (SA_FIELD_SELF_ASSIGNMENT)</a></h3>
-
-
-<p> This method contains a self assignment of a field; e.g.
-</p>
-<pre>
-  int x;
-  public void foo() {
-    x = x;
-  }
-</pre>
-<p>Such assignments are useless, and may indicate a logic error or typo.</p>
-
-    
-<h3><a name="SA_FIELD_SELF_COMPARISON">SA: Self comparison of field with itself (SA_FIELD_SELF_COMPARISON)</a></h3>
-
-
-<p> This method compares a field with itself, and may indicate a typo or
-a logic error.  Make sure that you are comparing the right things.
-</p>
-
-    
-<h3><a name="SA_FIELD_SELF_COMPUTATION">SA: Nonsensical self computation involving a field (e.g., x & x) (SA_FIELD_SELF_COMPUTATION)</a></h3>
-
-
-<p> This method performs a nonsensical computation of a field with another
-reference to the same field (e.g., x&x or x-x). Because of the nature
-of the computation, this operation doesn't seem to make sense,
-and may indicate a typo or
-a logic error.  Double check the computation.
-</p>
-
-    
-<h3><a name="SA_LOCAL_SELF_ASSIGNMENT_INSTEAD_OF_FIELD">SA: Self assignment of local rather than assignment to field (SA_LOCAL_SELF_ASSIGNMENT_INSTEAD_OF_FIELD)</a></h3>
-
-
-<p> This method contains a self assignment of a local variable, and there
-is a field with an identical name.
-assignment appears to have been ; e.g.</p>
-<pre>
-  int foo;
-  public void setFoo(int foo) {
-    foo = foo;
-  }
-</pre>
-<p>The assignment is useless. Did you mean to assign to the field instead?</p>
-
-    
-<h3><a name="SA_LOCAL_SELF_COMPARISON">SA: Self comparison of value with itself (SA_LOCAL_SELF_COMPARISON)</a></h3>
-
-
-<p> This method compares a local variable with itself, and may indicate a typo or
-a logic error.  Make sure that you are comparing the right things.
-</p>
-
-    
-<h3><a name="SA_LOCAL_SELF_COMPUTATION">SA: Nonsensical self computation involving a variable (e.g., x & x) (SA_LOCAL_SELF_COMPUTATION)</a></h3>
-
-
-<p> This method performs a nonsensical computation of a local variable with another
-reference to the same variable (e.g., x&x or x-x). Because of the nature
-of the computation, this operation doesn't seem to make sense,
-and may indicate a typo or
-a logic error.  Double check the computation.
-</p>
-
-    
-<h3><a name="SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH">SF: Dead store due to switch statement fall through (SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH)</a></h3>
-
-
-  <p> A value stored in the previous switch case is overwritten here due to a switch fall through. It is likely that
-    you forgot to put a break or return at the end of the previous case.
-</p>
-
-    
-<h3><a name="SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH_TO_THROW">SF: Dead store due to switch statement fall through to throw (SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH_TO_THROW)</a></h3>
-
-
-  <p> A value stored in the previous switch case is ignored here due to a switch fall through to a place where
-    an exception is thrown. It is likely that
-    you forgot to put a break or return at the end of the previous case.
-</p>
-
-    
-<h3><a name="SIC_THREADLOCAL_DEADLY_EMBRACE">SIC: Deadly embrace of non-static inner class and thread local (SIC_THREADLOCAL_DEADLY_EMBRACE)</a></h3>
-
-
-  <p> This class is an inner class, but should probably be a static inner class.
-  As it is, there is a serious danger of a deadly embrace between the inner class
-  and the thread local in the outer class. Because the inner class isn't static,
-  it retains a reference to the outer class.
-  If the thread local contains a reference to an instance of the inner
-  class, the inner and outer instance will both be reachable
-  and not eligible for garbage collection.
-</p>
-
-    
-<h3><a name="SIO_SUPERFLUOUS_INSTANCEOF">SIO: Unnecessary type check done using instanceof operator (SIO_SUPERFLUOUS_INSTANCEOF)</a></h3>
-
-
-<p> Type check performed using the instanceof operator where it can be statically determined whether the object
-is of the type requested. </p>
-
-    
-<h3><a name="SQL_BAD_PREPARED_STATEMENT_ACCESS">SQL: Method attempts to access a prepared statement parameter with index 0 (SQL_BAD_PREPARED_STATEMENT_ACCESS)</a></h3>
-
-
-<p> A call to a setXXX method of a prepared statement was made where the
-parameter index is 0. As parameter indexes start at index 1, this is always a mistake.</p>
-
-    
-<h3><a name="SQL_BAD_RESULTSET_ACCESS">SQL: Method attempts to access a result set field with index 0 (SQL_BAD_RESULTSET_ACCESS)</a></h3>
-
-
-<p> A call to getXXX or updateXXX methods of a result set was made where the
-field index is 0. As ResultSet fields start at index 1, this is always a mistake.</p>
-
-    
-<h3><a name="STI_INTERRUPTED_ON_CURRENTTHREAD">STI: Unneeded use of currentThread() call, to call interrupted()  (STI_INTERRUPTED_ON_CURRENTTHREAD)</a></h3>
-
-
-<p>
-This method invokes the Thread.currentThread() call, just to call the interrupted() method. As interrupted() is a
-static method, is more simple and clear to use Thread.interrupted().
-</p>
-
-    
-<h3><a name="STI_INTERRUPTED_ON_UNKNOWNTHREAD">STI: Static Thread.interrupted() method invoked on thread instance (STI_INTERRUPTED_ON_UNKNOWNTHREAD)</a></h3>
-
-
-<p>
-This method invokes the Thread.interrupted() method on a Thread object that appears to be a Thread object that is
-not the current thread. As the interrupted() method is static, the interrupted method will be called on a different
-object than the one the author intended.
-</p>
-
-    
-<h3><a name="SE_METHOD_MUST_BE_PRIVATE">Se: Method must be private in order for serialization to work (SE_METHOD_MUST_BE_PRIVATE)</a></h3>
-
-
-  <p> This class implements the <code>Serializable</code> interface, and defines a method
-  for custom serialization/deserialization. But since that method isn't declared private,
-  it will be silently ignored by the serialization/deserialization API.</p>
-
-    
-<h3><a name="SE_READ_RESOLVE_IS_STATIC">Se: The readResolve method must not be declared as a static method.   (SE_READ_RESOLVE_IS_STATIC)</a></h3>
-
-
-  <p> In order for the readResolve method to be recognized by the serialization
-mechanism, it must not be declared as a static method.
-</p>
-
-    
-<h3><a name="TQ_ALWAYS_VALUE_USED_WHERE_NEVER_REQUIRED">TQ: Value annotated as carrying a type qualifier used where a value that must not carry that qualifier is required (TQ_ALWAYS_VALUE_USED_WHERE_NEVER_REQUIRED)</a></h3>
-
-      
-        <p>
-        A value specified as carrying a type qualifier annotation is
-        consumed in a location or locations requiring that the value not
-        carry that annotation.
-        </p>
-
-        <p>
-        More precisely, a value annotated with a type qualifier specifying when=ALWAYS
-        is guaranteed to reach a use or uses where the same type qualifier specifies when=NEVER.
-        </p>
-
-        <p>
-        For example, say that @NonNegative is a nickname for
-        the type qualifier annotation @Negative(when=When.NEVER).
-        The following code will generate this warning because
-        the return statement requires a @NonNegative value,
-        but receives one that is marked as @Negative.
-        </p>
-        <blockquote>
-<pre>
-public @NonNegative Integer example(@Negative Integer value) {
-    return value;
-}
-</pre>
-        </blockquote>
-      
-    
-<h3><a name="TQ_COMPARING_VALUES_WITH_INCOMPATIBLE_TYPE_QUALIFIERS">TQ: Comparing values with incompatible type qualifiers (TQ_COMPARING_VALUES_WITH_INCOMPATIBLE_TYPE_QUALIFIERS)</a></h3>
-
-      
-        <p>
-        A value specified as carrying a type qualifier annotation is
-        compared with a value that doesn't ever carry that qualifier.
-        </p>
-
-        <p>
-        More precisely, a value annotated with a type qualifier specifying when=ALWAYS
-        is compared with a value that where the same type qualifier specifies when=NEVER.
-        </p>
-
-        <p>
-        For example, say that @NonNegative is a nickname for
-        the type qualifier annotation @Negative(when=When.NEVER).
-        The following code will generate this warning because
-        the return statement requires a @NonNegative value,
-        but receives one that is marked as @Negative.
-        </p>
-        <blockquote>
-<pre>
-public boolean example(@Negative Integer value1, @NonNegative Integer value2) {
-    return value1.equals(value2);
-}
-</pre>
-        </blockquote>
-      
-    
-<h3><a name="TQ_MAYBE_SOURCE_VALUE_REACHES_ALWAYS_SINK">TQ: Value that might not carry a type qualifier is always used in a way requires that type qualifier (TQ_MAYBE_SOURCE_VALUE_REACHES_ALWAYS_SINK)</a></h3>
-
-      
-      <p>
-      A value that is annotated as possibility not being an instance of
-    the values denoted by the type qualifier, and the value is guaranteed to be used
-    in a way that requires values denoted by that type qualifier.
-      </p>
-      
-    
-<h3><a name="TQ_MAYBE_SOURCE_VALUE_REACHES_NEVER_SINK">TQ: Value that might carry a type qualifier is always used in a way prohibits it from having that type qualifier (TQ_MAYBE_SOURCE_VALUE_REACHES_NEVER_SINK)</a></h3>
-
-      
-      <p>
-      A value that is annotated as possibility being an instance of
-    the values denoted by the type qualifier, and the value is guaranteed to be used
-    in a way that prohibits values denoted by that type qualifier.
-      </p>
-      
-    
-<h3><a name="TQ_NEVER_VALUE_USED_WHERE_ALWAYS_REQUIRED">TQ: Value annotated as never carrying a type qualifier used where value carrying that qualifier is required (TQ_NEVER_VALUE_USED_WHERE_ALWAYS_REQUIRED)</a></h3>
-
-      
-        <p>
-        A value specified as not carrying a type qualifier annotation is guaranteed
-        to be consumed in a location or locations requiring that the value does
-        carry that annotation.
-        </p>
-
-        <p>
-        More precisely, a value annotated with a type qualifier specifying when=NEVER
-        is guaranteed to reach a use or uses where the same type qualifier specifies when=ALWAYS.
-        </p>
-
-        <p>
-        TODO: example
-        </p>
-      
-    
-<h3><a name="TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED">TQ: Value without a type qualifier used where a value is required to have that qualifier (TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED)</a></h3>
-
-      
-        <p>
-        A value is being used in a way that requires the value be annotation with a type qualifier.
-    The type qualifier is strict, so the tool rejects any values that do not have
-    the appropriate annotation.
-        </p>
-
-        <p>
-        To coerce a value to have a strict annotation, define an identity function where the return value is annotated
-    with the strict annotation.
-    This is the only way to turn a non-annotated value into a value with a strict type qualifier annotation.
-        </p>
-
-      
-    
-<h3><a name="UMAC_UNCALLABLE_METHOD_OF_ANONYMOUS_CLASS">UMAC: Uncallable method defined in anonymous class (UMAC_UNCALLABLE_METHOD_OF_ANONYMOUS_CLASS)</a></h3>
-
-
-<p> This anonymous class defined a method that is not directly invoked and does not override
-a method in a superclass. Since methods in other classes cannot directly invoke methods
-declared in an anonymous class, it seems that this method is uncallable. The method
-might simply be dead code, but it is also possible that the method is intended to
-override a method declared in a superclass, and due to an typo or other error the method does not,
-in fact, override the method it is intended to.
-</p>
-
-
-<h3><a name="UR_UNINIT_READ">UR: Uninitialized read of field in constructor (UR_UNINIT_READ)</a></h3>
-
-
-  <p> This constructor reads a field which has not yet been assigned a value.&nbsp;
-  This is often caused when the programmer mistakenly uses the field instead
-  of one of the constructor's parameters.</p>
-
-    
-<h3><a name="UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR">UR: Uninitialized read of field method called from constructor of superclass (UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR)</a></h3>
-
-
-  <p> This method is invoked in the constructor of of the superclass. At this point,
-    the fields of the class have not yet initialized.</p>
-<p>To make this more concrete, consider the following classes:</p>
-<pre>abstract class A {
-  int hashCode;
-  abstract Object getValue();
-  A() {
-    hashCode = getValue().hashCode();
-    }
-  }
-class B extends A {
-  Object value;
-  B(Object v) {
-    this.value = v;
-    }
-  Object getValue() {
-    return value;
-  }
-  }</pre>
-<p>When a <code>B</code> is constructed,
-the constructor for the <code>A</code> class is invoked
-<em>before</em> the constructor for <code>B</code> sets <code>value</code>.
-Thus, when the constructor for <code>A</code> invokes <code>getValue</code>,
-an uninitialized value is read for <code>value</code>
-</p>
-
-    
-<h3><a name="DMI_INVOKING_TOSTRING_ON_ANONYMOUS_ARRAY">USELESS_STRING: Invocation of toString on an unnamed array (DMI_INVOKING_TOSTRING_ON_ANONYMOUS_ARRAY)</a></h3>
-
-
-<p>
-The code invokes toString on an (anonymous) array.  Calling toString on an array generates a fairly useless result
-such as [C@16f0472. Consider using Arrays.toString to convert the array into a readable
-String that gives the contents of the array. See Programming Puzzlers, chapter 3, puzzle 12.
-</p>
-
-    
-<h3><a name="DMI_INVOKING_TOSTRING_ON_ARRAY">USELESS_STRING: Invocation of toString on an array (DMI_INVOKING_TOSTRING_ON_ARRAY)</a></h3>
-
-
-<p>
-The code invokes toString on an array, which will generate a fairly useless result
-such as [C@16f0472. Consider using Arrays.toString to convert the array into a readable
-String that gives the contents of the array. See Programming Puzzlers, chapter 3, puzzle 12.
-</p>
-
-    
-<h3><a name="VA_FORMAT_STRING_BAD_CONVERSION_FROM_ARRAY">USELESS_STRING: Array formatted in useless way using format string (VA_FORMAT_STRING_BAD_CONVERSION_FROM_ARRAY)</a></h3>
-
-
-<p>
-One of the arguments being formatted with a format string is an array. This will be formatted
-using a fairly useless format, such as [I@304282, which doesn't actually show the contents
-of the array.
-Consider wrapping the array using <code>Arrays.asList(...)</code> before handling it off to a formatted.
-</p>
-
-     
-<h3><a name="UWF_NULL_FIELD">UwF: Field only ever set to null (UWF_NULL_FIELD)</a></h3>
-
-
-  <p> All writes to this field are of the constant value null, and thus
-all reads of the field will return null.
-Check for errors, or remove it if it is useless.</p>
-
-    
-<h3><a name="UWF_UNWRITTEN_FIELD">UwF: Unwritten field (UWF_UNWRITTEN_FIELD)</a></h3>
-
-
-  <p> This field is never written.&nbsp; All reads of it will return the default
-value. Check for errors (should it have been initialized?), or remove it if it is useless.</p>
-
-    
-<h3><a name="VA_PRIMITIVE_ARRAY_PASSED_TO_OBJECT_VARARG">VA: Primitive array passed to function expecting a variable number of object arguments (VA_PRIMITIVE_ARRAY_PASSED_TO_OBJECT_VARARG)</a></h3>
-
-
-<p>
-This code passes a primitive array to a function that takes a variable number of object arguments.
-This creates an array of length one to hold the primitive array and passes it to the function.
-</p>
-
-    
-<h3><a name="LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE">LG: Potential lost logger changes due to weak reference in OpenJDK (LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE)</a></h3>
-
-          
-<p>OpenJDK introduces a potential incompatibility.
- In particular, the java.util.logging.Logger behavior has
-  changed. Instead of using strong references, it now uses weak references
-  internally. That's a reasonable change, but unfortunately some code relies on
-  the old behavior - when changing logger configuration, it simply drops the
-  logger reference. That means that the garbage collector is free to reclaim
-  that memory, which means that the logger configuration is lost. For example,
-consider:
-</p>
-
-<pre>public static void initLogging() throws Exception {
- Logger logger = Logger.getLogger("edu.umd.cs");
- logger.addHandler(new FileHandler()); // call to change logger configuration
- logger.setUseParentHandlers(false); // another call to change logger configuration
-}</pre>
-
-<p>The logger reference is lost at the end of the method (it doesn't
-escape the method), so if you have a garbage collection cycle just
-after the call to initLogging, the logger configuration is lost
-(because Logger only keeps weak references).</p>
-
-<pre>public static void main(String[] args) throws Exception {
- initLogging(); // adds a file handler to the logger
- System.gc(); // logger configuration lost
- Logger.getLogger("edu.umd.cs").info("Some message"); // this isn't logged to the file as expected
-}</pre>
-<p><em>Ulf Ochsenfahrt and Eric Fellheimer</em></p>
-          
-      
-<h3><a name="OBL_UNSATISFIED_OBLIGATION">OBL: Method may fail to clean up stream or resource (OBL_UNSATISFIED_OBLIGATION)</a></h3>
-
-          
-          <p>
-          This method may fail to clean up (close, dispose of) a stream,
-          database object, or other
-          resource requiring an explicit cleanup operation.
-          </p>
-
-          <p>
-          In general, if a method opens a stream or other resource,
-          the method should use a try/finally block to ensure that
-          the stream or resource is cleaned up before the method
-          returns.
-          </p>
-
-          <p>
-          This bug pattern is essentially the same as the
-          OS_OPEN_STREAM and ODR_OPEN_DATABASE_RESOURCE
-          bug patterns, but is based on a different
-          (and hopefully better) static analysis technique.
-          We are interested is getting feedback about the
-          usefulness of this bug pattern.
-          To send feedback, either:
-          </p>
-          <ul>
-            <li>send email to findbugs@cs.umd.edu</li>
-            <li>file a bug report: <a href="http://findbugs.sourceforge.net/reportingBugs.html">http://findbugs.sourceforge.net/reportingBugs.html</a></li>
-          </ul>
-
-          <p>
-          In particular,
-          the false-positive suppression heuristics for this
-          bug pattern have not been extensively tuned, so
-          reports about false positives are helpful to us.
-          </p>
-
-          <p>
-          See Weimer and Necula, <i>Finding and Preventing Run-Time Error Handling Mistakes</i>, for
-          a description of the analysis technique.
-          </p>
-          
-      
-<h3><a name="OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE">OBL: Method may fail to clean up stream or resource on checked exception (OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE)</a></h3>
-
-          
-          <p>
-          This method may fail to clean up (close, dispose of) a stream,
-          database object, or other
-          resource requiring an explicit cleanup operation.
-          </p>
-
-          <p>
-          In general, if a method opens a stream or other resource,
-          the method should use a try/finally block to ensure that
-          the stream or resource is cleaned up before the method
-          returns.
-          </p>
-
-          <p>
-          This bug pattern is essentially the same as the
-          OS_OPEN_STREAM and ODR_OPEN_DATABASE_RESOURCE
-          bug patterns, but is based on a different
-          (and hopefully better) static analysis technique.
-          We are interested is getting feedback about the
-          usefulness of this bug pattern.
-          To send feedback, either:
-          </p>
-          <ul>
-            <li>send email to findbugs@cs.umd.edu</li>
-            <li>file a bug report: <a href="http://findbugs.sourceforge.net/reportingBugs.html">http://findbugs.sourceforge.net/reportingBugs.html</a></li>
-          </ul>
-
-          <p>
-          In particular,
-          the false-positive suppression heuristics for this
-          bug pattern have not been extensively tuned, so
-          reports about false positives are helpful to us.
-          </p>
-
-          <p>
-          See Weimer and Necula, <i>Finding and Preventing Run-Time Error Handling Mistakes</i>, for
-          a description of the analysis technique.
-          </p>
-          
-      
-<h3><a name="DM_CONVERT_CASE">Dm: Consider using Locale parameterized version of invoked method (DM_CONVERT_CASE)</a></h3>
-
-
-  <p> A String is being converted to upper or lowercase, using the platform's default encoding. This may
-      result in improper conversions when used with international characters. Use the </p>
-      <ul>
-    <li>String.toUpperCase( Locale l )</li>
-    <li>String.toLowerCase( Locale l )</li>
-    </ul>
-      <p>versions instead.</p>
-
-    
-<h3><a name="DM_DEFAULT_ENCODING">Dm: Reliance on default encoding (DM_DEFAULT_ENCODING)</a></h3>
-
-
-<p> Found a call to a method which will perform a byte to String (or String to byte) conversion, and will assume that the default platform encoding is suitable. This will cause the application behaviour to vary between platforms. Use an alternative API and specify a charset name or Charset object explicitly.  </p>
-
-      
-<h3><a name="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED">DP: Classloaders should only be created inside doPrivileged block (DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED)</a></h3>
-
-
-  <p> This code creates a classloader,  which needs permission if a security manage is installed.
-  If this code might be invoked by code that does not
-  have security permissions, then the classloader creation needs to occur inside a doPrivileged block.</p>
-
-    
-<h3><a name="DP_DO_INSIDE_DO_PRIVILEGED">DP: Method invoked that should be only be invoked inside a doPrivileged block (DP_DO_INSIDE_DO_PRIVILEGED)</a></h3>
-
-
-  <p> This code invokes a method that requires a security permission check.
-  If this code will be granted security permissions, but might be invoked by code that does not
-  have security permissions, then the invocation needs to occur inside a doPrivileged block.</p>
-
-    
-<h3><a name="EI_EXPOSE_REP">EI: May expose internal representation by returning reference to mutable object (EI_EXPOSE_REP)</a></h3>
-
-
-  <p> Returning a reference to a mutable object value stored in one of the object's fields
-  exposes the internal representation of the object.&nbsp;
-   If instances
-   are accessed by untrusted code, and unchecked changes to
-   the mutable object would compromise security or other
-   important properties, you will need to do something different.
-  Returning a new copy of the object is better approach in many situations.</p>
-
-    
-<h3><a name="EI_EXPOSE_REP2">EI2: May expose internal representation by incorporating reference to mutable object (EI_EXPOSE_REP2)</a></h3>
-
-
-  <p> This code stores a reference to an externally mutable object into the
-  internal representation of the object.&nbsp;
-   If instances
-   are accessed by untrusted code, and unchecked changes to
-   the mutable object would compromise security or other
-   important properties, you will need to do something different.
-  Storing a copy of the object is better approach in many situations.</p>
-
-    
-<h3><a name="FI_PUBLIC_SHOULD_BE_PROTECTED">FI: Finalizer should be protected, not public (FI_PUBLIC_SHOULD_BE_PROTECTED)</a></h3>
-
-
-  <p> A class's <code>finalize()</code> method should have protected access,
-   not public.</p>
-
-    
-<h3><a name="EI_EXPOSE_STATIC_REP2">MS: May expose internal static state by storing a mutable object into a static field (EI_EXPOSE_STATIC_REP2)</a></h3>
-
-
-  <p> This code stores a reference to an externally mutable object into a static
-   field.
-   If unchecked changes to
-   the mutable object would compromise security or other
-   important properties, you will need to do something different.
-  Storing a copy of the object is better approach in many situations.</p>
-
-    
-<h3><a name="MS_CANNOT_BE_FINAL">MS: Field isn't final and can't be protected from malicious code (MS_CANNOT_BE_FINAL)</a></h3>
-
-
-  <p>
- A mutable static field could be changed by malicious code or
-        by accident from another package.
-   Unfortunately, the way the field is used doesn't allow
-   any easy fix to this problem.</p>
-
-    
-<h3><a name="MS_EXPOSE_REP">MS: Public static method may expose internal representation by returning array (MS_EXPOSE_REP)</a></h3>
-
-
-  <p> A public static method returns a reference to
-   an array that is part of the static state of the class.
-   Any code that calls this method can freely modify
-   the underlying array.
-   One fix is to return a copy of the array.</p>
-
-    
-<h3><a name="MS_FINAL_PKGPROTECT">MS: Field should be both final and package protected (MS_FINAL_PKGPROTECT)</a></h3>
-
-
- <p>
-   A mutable static field could be changed by malicious code or
-        by accident from another package.
-        The field could be made package protected and/or made final
-   to avoid
-        this vulnerability.</p>
-
-    
-<h3><a name="MS_MUTABLE_ARRAY">MS: Field is a mutable array (MS_MUTABLE_ARRAY)</a></h3>
-
-
-<p> A final static field references an array
-   and can be accessed by malicious code or
-        by accident from another package.
-   This code can freely modify the contents of the array.</p>
-
-    
-<h3><a name="MS_MUTABLE_HASHTABLE">MS: Field is a mutable Hashtable (MS_MUTABLE_HASHTABLE)</a></h3>
-
-
- <p>A final static field references a Hashtable
-   and can be accessed by malicious code or
-        by accident from another package.
-   This code can freely modify the contents of the Hashtable.</p>
-
-    
-<h3><a name="MS_OOI_PKGPROTECT">MS: Field should be moved out of an interface and made package protected (MS_OOI_PKGPROTECT)</a></h3>
-
-
-<p>
- A final static field that is
-defined in an interface references a mutable
-   object such as an array or hashtable.
-   This mutable object could
-   be changed by malicious code or
-        by accident from another package.
-   To solve this, the field needs to be moved to a class
-   and made package protected
-   to avoid
-        this vulnerability.</p>
-
-    
-<h3><a name="MS_PKGPROTECT">MS: Field should be package protected (MS_PKGPROTECT)</a></h3>
-
-
-  <p> A mutable static field could be changed by malicious code or
-   by accident.
-   The field could be made package protected to avoid
-   this vulnerability.</p>
-
-    
-<h3><a name="MS_SHOULD_BE_FINAL">MS: Field isn't final but should be (MS_SHOULD_BE_FINAL)</a></h3>
-
-
-   <p>
-This static field public but not final, and
-could be changed by malicious code or
-        by accident from another package.
-        The field could be made final to avoid
-        this vulnerability.</p>
-
-    
-<h3><a name="MS_SHOULD_BE_REFACTORED_TO_BE_FINAL">MS: Field isn't final but should be refactored to be so (MS_SHOULD_BE_REFACTORED_TO_BE_FINAL)</a></h3>
-
-
-   <p>
-This static field public but not final, and
-could be changed by malicious code or
-by accident from another package.
-The field could be made final to avoid
-this vulnerability. However, the static initializer contains more than one write
-to the field, so doing so will require some refactoring.
-</p>
-
-    
-<h3><a name="AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION">AT: Sequence of calls to concurrent abstraction may not be atomic (AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION)</a></h3>
-
-          
-        <p>This code contains a sequence of calls to a concurrent  abstraction
-            (such as a concurrent hash map).
-            These calls will not be executed atomically.
-          
-      
-<h3><a name="DC_DOUBLECHECK">DC: Possible double check of field (DC_DOUBLECHECK)</a></h3>
-
-
-  <p> This method may contain an instance of double-checked locking.&nbsp;
-  This idiom is not correct according to the semantics of the Java memory
-  model.&nbsp; For more information, see the web page
-  <a href="http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html"
-  >http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html</a>.</p>
-
-    
-<h3><a name="DL_SYNCHRONIZATION_ON_BOOLEAN">DL: Synchronization on Boolean (DL_SYNCHRONIZATION_ON_BOOLEAN)</a></h3>
-
-      
-  <p> The code synchronizes on a boxed primitive constant, such as an Boolean.</p>
-<pre>
-private static Boolean inited = Boolean.FALSE;
-...
-  synchronized(inited) {
-    if (!inited) {
-       init();
-       inited = Boolean.TRUE;
-       }
-     }
-...
-</pre>
-<p>Since there normally exist only two Boolean objects, this code could be synchronizing on the same object as other, unrelated code, leading to unresponsiveness
-and possible deadlock</p>
-<p>See CERT <a href="https://www.securecoding.cert.org/confluence/display/java/CON08-J.+Do+not+synchronize+on+objects+that+may+be+reused">CON08-J. Do not synchronize on objects that may be reused</a> for more information.</p>
-
-    
-<h3><a name="DL_SYNCHRONIZATION_ON_BOXED_PRIMITIVE">DL: Synchronization on boxed primitive (DL_SYNCHRONIZATION_ON_BOXED_PRIMITIVE)</a></h3>
-
-      
-  <p> The code synchronizes on a boxed primitive constant, such as an Integer.</p>
-<pre>
-private static Integer count = 0;
-...
-  synchronized(count) {
-     count++;
-     }
-...
-</pre>
-<p>Since Integer objects can be cached and shared,
-this code could be synchronizing on the same object as other, unrelated code, leading to unresponsiveness
-and possible deadlock</p>
-<p>See CERT <a href="https://www.securecoding.cert.org/confluence/display/java/CON08-J.+Do+not+synchronize+on+objects+that+may+be+reused">CON08-J. Do not synchronize on objects that may be reused</a> for more information.</p>
-
-    
-<h3><a name="DL_SYNCHRONIZATION_ON_SHARED_CONSTANT">DL: Synchronization on interned String  (DL_SYNCHRONIZATION_ON_SHARED_CONSTANT)</a></h3>
-
-
-  <p> The code synchronizes on interned String.</p>
-<pre>
-private static String LOCK = "LOCK";
-...
-  synchronized(LOCK) { ...}
-...
-</pre>
-<p>Constant Strings are interned and shared across all other classes loaded by the JVM. Thus, this could
-is locking on something that other code might also be locking. This could result in very strange and hard to diagnose
-blocking and deadlock behavior. See <a href="http://www.javalobby.org/java/forums/t96352.html">http://www.javalobby.org/java/forums/t96352.html</a> and <a href="http://jira.codehaus.org/browse/JETTY-352">http://jira.codehaus.org/browse/JETTY-352</a>.
-</p>
-<p>See CERT <a href="https://www.securecoding.cert.org/confluence/display/java/CON08-J.+Do+not+synchronize+on+objects+that+may+be+reused">CON08-J. Do not synchronize on objects that may be reused</a> for more information.</p>
-
-    
-<h3><a name="DL_SYNCHRONIZATION_ON_UNSHARED_BOXED_PRIMITIVE">DL: Synchronization on boxed primitive values (DL_SYNCHRONIZATION_ON_UNSHARED_BOXED_PRIMITIVE)</a></h3>
-
-      
-  <p> The code synchronizes on an apparently unshared boxed primitive,
-such as an Integer.</p>
-<pre>
-private static final Integer fileLock = new Integer(1);
-...
-  synchronized(fileLock) {
-     .. do something ..
-     }
-...
-</pre>
-<p>It would be much better, in this code, to redeclare fileLock as</p>
-<pre>
-private static final Object fileLock = new Object();
-</pre>
-<p>
-The existing code might be OK, but it is confusing and a
-future refactoring, such as the "Remove Boxing" refactoring in IntelliJ,
-might replace this with the use of an interned Integer object shared
-throughout the JVM, leading to very confusing behavior and potential deadlock.
-</p>
-
-    
-<h3><a name="DM_MONITOR_WAIT_ON_CONDITION">Dm: Monitor wait() called on Condition (DM_MONITOR_WAIT_ON_CONDITION)</a></h3>
-
-      
-      <p>
-      This method calls <code>wait()</code> on a
-      <code>java.util.concurrent.locks.Condition</code> object.&nbsp;
-      Waiting for a <code>Condition</code> should be done using one of the <code>await()</code>
-      methods defined by the <code>Condition</code> interface.
-      </p>
-      
-   
-<h3><a name="DM_USELESS_THREAD">Dm: A thread was created using the default empty run method (DM_USELESS_THREAD)</a></h3>
-
-
-  <p>This method creates a thread without specifying a run method either by deriving from the Thread class, or
-  by passing a Runnable object. This thread, then, does nothing but waste time.
-</p>
-
-    
-<h3><a name="ESync_EMPTY_SYNC">ESync: Empty synchronized block (ESync_EMPTY_SYNC)</a></h3>
-
-
-  <p> The code contains an empty synchronized block:</p>
-<pre>
-synchronized() {}
-</pre>
-<p>Empty synchronized blocks are far more subtle and hard to use correctly
-than most people recognize, and empty synchronized blocks
-are almost never a better solution
-than less contrived solutions.
-</p>
-
-    
-<h3><a name="IS2_INCONSISTENT_SYNC">IS: Inconsistent synchronization (IS2_INCONSISTENT_SYNC)</a></h3>
-
-
-  <p> The fields of this class appear to be accessed inconsistently with respect
-  to synchronization.&nbsp; This bug report indicates that the bug pattern detector
-  judged that
-  </p>
-  <ul>
-  <li> The class contains a mix of locked and unlocked accesses,</li>
-  <li> The class is <b>not</b> annotated as javax.annotation.concurrent.NotThreadSafe,</li>
-  <li> At least one locked access was performed by one of the class's own methods, and</li>
-  <li> The number of unsynchronized field accesses (reads and writes) was no more than
-       one third of all accesses, with writes being weighed twice as high as reads</li>
-  </ul>
-
-  <p> A typical bug matching this bug pattern is forgetting to synchronize
-  one of the methods in a class that is intended to be thread-safe.</p>
-
-  <p> You can select the nodes labeled "Unsynchronized access" to show the
-  code locations where the detector believed that a field was accessed
-  without synchronization.</p>
-
-  <p> Note that there are various sources of inaccuracy in this detector;
-  for example, the detector cannot statically detect all situations in which
-  a lock is held.&nbsp; Also, even when the detector is accurate in
-  distinguishing locked vs. unlocked accesses, the code in question may still
-  be correct.</p>
-
-
-    
-<h3><a name="IS_FIELD_NOT_GUARDED">IS: Field not guarded against concurrent access (IS_FIELD_NOT_GUARDED)</a></h3>
-
-
-  <p> This field is annotated with net.jcip.annotations.GuardedBy or javax.annotation.concurrent.GuardedBy,
-but can be accessed in a way that seems to violate those annotations.</p>
-
-
-<h3><a name="JLM_JSR166_LOCK_MONITORENTER">JLM: Synchronization performed on Lock (JLM_JSR166_LOCK_MONITORENTER)</a></h3>
-
-
-<p> This method performs synchronization an object that implements
-java.util.concurrent.locks.Lock. Such an object is locked/unlocked
-using
-<code>acquire()</code>/<code>release()</code> rather
-than using the <code>synchronized (...)</code> construct.
-</p>
-
-
-<h3><a name="JLM_JSR166_UTILCONCURRENT_MONITORENTER">JLM: Synchronization performed on util.concurrent instance (JLM_JSR166_UTILCONCURRENT_MONITORENTER)</a></h3>
-
-
-<p> This method performs synchronization an object that is an instance of
-a class from the java.util.concurrent package (or its subclasses). Instances
-of these classes have their own concurrency control mechanisms that are orthogonal to
-the synchronization provided by the Java keyword <code>synchronized</code>. For example,
-synchronizing on an <code>AtomicBoolean</code> will not prevent other threads
-from modifying the  <code>AtomicBoolean</code>.</p>
-<p>Such code may be correct, but should be carefully reviewed and documented,
-and may confuse people who have to maintain the code at a later date.
-</p>
-
-
-<h3><a name="JML_JSR166_CALLING_WAIT_RATHER_THAN_AWAIT">JLM: Using monitor style wait methods on util.concurrent abstraction (JML_JSR166_CALLING_WAIT_RATHER_THAN_AWAIT)</a></h3>
-
-
-<p> This method calls
-<code>wait()</code>,
-<code>notify()</code> or
-<code>notifyAll()()</code>
-on an object that also provides an
-<code>await()</code>,
-<code>signal()</code>,
-<code>signalAll()</code> method (such as util.concurrent Condition objects).
-This probably isn't what you want, and even if you do want it, you should consider changing
-your design, as other developers will find it exceptionally confusing.
-</p>
-
-
-<h3><a name="LI_LAZY_INIT_STATIC">LI: Incorrect lazy initialization of static field (LI_LAZY_INIT_STATIC)</a></h3>
-
-
-<p> This method contains an unsynchronized lazy initialization of a non-volatile static field.
-Because the compiler or processor may reorder instructions,
-threads are not guaranteed to see a completely initialized object,
-<em>if the method can be called by multiple threads</em>.
-You can make the field volatile to correct the problem.
-For more information, see the
-<a href="http://www.cs.umd.edu/~pugh/java/memoryModel/">Java Memory Model web site</a>.
-</p>
-
-    
-<h3><a name="LI_LAZY_INIT_UPDATE_STATIC">LI: Incorrect lazy initialization and update of static field (LI_LAZY_INIT_UPDATE_STATIC)</a></h3>
-
-
-<p> This method contains an unsynchronized lazy initialization of a static field.
-After the field is set, the object stored into that location is further updated or accessed.
-The setting of the field is visible to other threads as soon as it is set. If the
-futher accesses in the method that set the field serve to initialize the object, then
-you have a <em>very serious</em> multithreading bug, unless something else prevents
-any other thread from accessing the stored object until it is fully initialized.
-</p>
-<p>Even if you feel confident that the method is never called by multiple
-threads, it might be better to not set the static field until the value
-you are setting it to is fully populated/initialized.
-
-    
-<h3><a name="ML_SYNC_ON_FIELD_TO_GUARD_CHANGING_THAT_FIELD">ML: Synchronization on field in futile attempt to guard that field (ML_SYNC_ON_FIELD_TO_GUARD_CHANGING_THAT_FIELD)</a></h3>
-
-
-  <p> This method synchronizes on a field in what appears to be an attempt
-to guard against simultaneous updates to that field. But guarding a field
-gets a lock on the referenced object, not on the field. This may not
-provide the mutual exclusion you need, and other threads might
-be obtaining locks on the referenced objects (for other purposes). An example
-of this pattern would be:</p>
-<pre>
-private Long myNtfSeqNbrCounter = new Long(0);
-private Long getNotificationSequenceNumber() {
-     Long result = null;
-     synchronized(myNtfSeqNbrCounter) {
-         result = new Long(myNtfSeqNbrCounter.longValue() + 1);
-         myNtfSeqNbrCounter = new Long(result.longValue());
-     }
-     return result;
- }
-</pre>
-
-    
-<h3><a name="ML_SYNC_ON_UPDATED_FIELD">ML: Method synchronizes on an updated field (ML_SYNC_ON_UPDATED_FIELD)</a></h3>
-
-
-  <p> This method synchronizes on an object
-   referenced from a mutable field.
-   This is unlikely to have useful semantics, since different
-threads may be synchronizing on different objects.</p>
-
-    
-<h3><a name="MSF_MUTABLE_SERVLET_FIELD">MSF: Mutable servlet field (MSF_MUTABLE_SERVLET_FIELD)</a></h3>
-
-
-<p>A web server generally only creates one instance of servlet or jsp class (i.e., treats
-the class as a Singleton),
-and will
-have multiple threads invoke methods on that instance to service multiple
-simultaneous requests.
-Thus, having a mutable instance field generally creates race conditions.
-
-    
-<h3><a name="MWN_MISMATCHED_NOTIFY">MWN: Mismatched notify() (MWN_MISMATCHED_NOTIFY)</a></h3>
-
-
-<p> This method calls Object.notify() or Object.notifyAll() without obviously holding a lock
-on the object.&nbsp;  Calling notify() or notifyAll() without a lock held will result in
-an <code>IllegalMonitorStateException</code> being thrown.</p>
-
-    
-<h3><a name="MWN_MISMATCHED_WAIT">MWN: Mismatched wait() (MWN_MISMATCHED_WAIT)</a></h3>
-
-
-<p> This method calls Object.wait() without obviously holding a lock
-on the object.&nbsp;  Calling wait() without a lock held will result in
-an <code>IllegalMonitorStateException</code> being thrown.</p>
-
-    
-<h3><a name="NN_NAKED_NOTIFY">NN: Naked notify (NN_NAKED_NOTIFY)</a></h3>
-
-
-  <p> A call to <code>notify()</code> or <code>notifyAll()</code>
-  was made without any (apparent) accompanying
-  modification to mutable object state.&nbsp; In general, calling a notify
-  method on a monitor is done because some condition another thread is
-  waiting for has become true.&nbsp; However, for the condition to be meaningful,
-  it must involve a heap object that is visible to both threads.</p>
-
-  <p> This bug does not necessarily indicate an error, since the change to
-  mutable object state may have taken place in a method which then called
-  the method containing the notification.</p>
-
-    
-<h3><a name="NP_SYNC_AND_NULL_CHECK_FIELD">NP: Synchronize and null check on the same field. (NP_SYNC_AND_NULL_CHECK_FIELD)</a></h3>
-
-
-<p>Since the field is synchronized on, it seems not likely to be null.
-If it is null and then synchronized on a NullPointerException will be
-thrown and the check would be pointless. Better to synchronize on
-another field.</p>
-
-
-     
-<h3><a name="NO_NOTIFY_NOT_NOTIFYALL">No: Using notify() rather than notifyAll() (NO_NOTIFY_NOT_NOTIFYALL)</a></h3>
-
-
-  <p> This method calls <code>notify()</code> rather than <code>notifyAll()</code>.&nbsp;
-  Java monitors are often used for multiple conditions.&nbsp; Calling <code>notify()</code>
-  only wakes up one thread, meaning that the thread woken up might not be the
-  one waiting for the condition that the caller just satisfied.</p>
-
-    
-<h3><a name="RS_READOBJECT_SYNC">RS: Class's readObject() method is synchronized (RS_READOBJECT_SYNC)</a></h3>
-
-
-  <p> This serializable class defines a <code>readObject()</code> which is
-  synchronized.&nbsp; By definition, an object created by deserialization
-  is only reachable by one thread, and thus there is no need for
-  <code>readObject()</code> to be synchronized.&nbsp; If the <code>readObject()</code>
-  method itself is causing the object to become visible to another thread,
-  that is an example of very dubious coding style.</p>
-
-    
-<h3><a name="RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED">RV: Return value of putIfAbsent ignored, value passed to putIfAbsent reused (RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED)</a></h3>
-
-          
-        The <code>putIfAbsent</code> method is typically used to ensure that a
-        single value is associated with a given key (the first value for which put
-        if absent succeeds).
-        If you ignore the return value and retain a reference to the value passed in,
-        you run the risk of retaining a value that is not the one that is associated with the key in the map.
-        If it matters which one you use and you use the one that isn't stored in the map,
-        your program will behave incorrectly.
-          
-      
-<h3><a name="RU_INVOKE_RUN">Ru: Invokes run on a thread (did you mean to start it instead?) (RU_INVOKE_RUN)</a></h3>
-
-
-  <p> This method explicitly invokes <code>run()</code> on an object.&nbsp;
-  In general, classes implement the <code>Runnable</code> interface because
-  they are going to have their <code>run()</code> method invoked in a new thread,
-  in which case <code>Thread.start()</code> is the right method to call.</p>
-
-    
-<h3><a name="SC_START_IN_CTOR">SC: Constructor invokes Thread.start() (SC_START_IN_CTOR)</a></h3>
-
-
-  <p> The constructor starts a thread. This is likely to be wrong if
-   the class is ever extended/subclassed, since the thread will be started
-   before the subclass constructor is started.</p>
-
-    
-<h3><a name="SP_SPIN_ON_FIELD">SP: Method spins on field (SP_SPIN_ON_FIELD)</a></h3>
-
-
-  <p> This method spins in a loop which reads a field.&nbsp; The compiler
-  may legally hoist the read out of the loop, turning the code into an
-  infinite loop.&nbsp; The class should be changed so it uses proper
-  synchronization (including wait and notify calls).</p>
-
-    
-<h3><a name="STCAL_INVOKE_ON_STATIC_CALENDAR_INSTANCE">STCAL: Call to static Calendar (STCAL_INVOKE_ON_STATIC_CALENDAR_INSTANCE)</a></h3>
-
-
-<p>Even though the JavaDoc does not contain a hint about it, Calendars are inherently unsafe for multihtreaded use.
-The detector has found a call to an instance of Calendar that has been obtained via a static
-field. This looks suspicous.</p>
-<p>For more information on this see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6231579">Sun Bug #6231579</a>
-and <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6178997">Sun Bug #6178997</a>.</p>
-
-
-<h3><a name="STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE">STCAL: Call to static DateFormat (STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE)</a></h3>
-
-
-<p>As the JavaDoc states, DateFormats are inherently unsafe for multithreaded use.
-The detector has found a call to an instance of DateFormat that has been obtained via a static
-field. This looks suspicous.</p>
-<p>For more information on this see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6231579">Sun Bug #6231579</a>
-and <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6178997">Sun Bug #6178997</a>.</p>
-
-
-<h3><a name="STCAL_STATIC_CALENDAR_INSTANCE">STCAL: Static Calendar field (STCAL_STATIC_CALENDAR_INSTANCE)</a></h3>
-
-
-<p>Even though the JavaDoc does not contain a hint about it, Calendars are inherently unsafe for multihtreaded use.
-Sharing a single instance across thread boundaries without proper synchronization will result in erratic behavior of the
-application. Under 1.4 problems seem to surface less often than under Java 5 where you will probably see
-random ArrayIndexOutOfBoundsExceptions or IndexOutOfBoundsExceptions in sun.util.calendar.BaseCalendar.getCalendarDateFromFixedDate().</p>
-<p>You may also experience serialization problems.</p>
-<p>Using an instance field is recommended.</p>
-<p>For more information on this see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6231579">Sun Bug #6231579</a>
-and <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6178997">Sun Bug #6178997</a>.</p>
-
-
-<h3><a name="STCAL_STATIC_SIMPLE_DATE_FORMAT_INSTANCE">STCAL: Static DateFormat (STCAL_STATIC_SIMPLE_DATE_FORMAT_INSTANCE)</a></h3>
-
-
-<p>As the JavaDoc states, DateFormats are inherently unsafe for multithreaded use.
-Sharing a single instance across thread boundaries without proper synchronization will result in erratic behavior of the
-application.</p>
-<p>You may also experience serialization problems.</p>
-<p>Using an instance field is recommended.</p>
-<p>For more information on this see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6231579">Sun Bug #6231579</a>
-and <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6178997">Sun Bug #6178997</a>.</p>
-
-
-<h3><a name="SWL_SLEEP_WITH_LOCK_HELD">SWL: Method calls Thread.sleep() with a lock held (SWL_SLEEP_WITH_LOCK_HELD)</a></h3>
-
-      
-      <p>
-      This method calls Thread.sleep() with a lock held.  This may result
-      in very poor performance and scalability, or a deadlock, since other threads may
-      be waiting to acquire the lock.  It is a much better idea to call
-      wait() on the lock, which releases the lock and allows other threads
-      to run.
-      </p>
-      
-   
-<h3><a name="TLW_TWO_LOCK_WAIT">TLW: Wait with two locks held (TLW_TWO_LOCK_WAIT)</a></h3>
-
-
-  <p> Waiting on a monitor while two locks are held may cause
-  deadlock.
-   &nbsp;
-   Performing a wait only releases the lock on the object
-   being waited on, not any other locks.
-   &nbsp;
-This not necessarily a bug, but is worth examining
-  closely.</p>
-
-    
-<h3><a name="UG_SYNC_SET_UNSYNC_GET">UG: Unsynchronized get method, synchronized set method (UG_SYNC_SET_UNSYNC_GET)</a></h3>
-
-
-  <p> This class contains similarly-named get and set
-  methods where the set method is synchronized and the get method is not.&nbsp;
-  This may result in incorrect behavior at runtime, as callers of the get
-  method will not necessarily see a consistent state for the object.&nbsp;
-  The get method should be made synchronized.</p>
-
-    
-<h3><a name="UL_UNRELEASED_LOCK">UL: Method does not release lock on all paths (UL_UNRELEASED_LOCK)</a></h3>
-
-
-<p> This method acquires a JSR-166 (<code>java.util.concurrent</code>) lock,
-but does not release it on all paths out of the method.  In general, the correct idiom
-for using a JSR-166 lock is:
-</p>
-<pre>
-    Lock l = ...;
-    l.lock();
-    try {
-        // do something
-    } finally {
-        l.unlock();
-    }
-</pre>
-
-    
-<h3><a name="UL_UNRELEASED_LOCK_EXCEPTION_PATH">UL: Method does not release lock on all exception paths (UL_UNRELEASED_LOCK_EXCEPTION_PATH)</a></h3>
-
-
-<p> This method acquires a JSR-166 (<code>java.util.concurrent</code>) lock,
-but does not release it on all exception paths out of the method.  In general, the correct idiom
-for using a JSR-166 lock is:
-</p>
-<pre>
-    Lock l = ...;
-    l.lock();
-    try {
-        // do something
-    } finally {
-        l.unlock();
-    }
-</pre>
-
-    
-<h3><a name="UW_UNCOND_WAIT">UW: Unconditional wait (UW_UNCOND_WAIT)</a></h3>
-
-
-  <p> This method contains a call to <code>java.lang.Object.wait()</code> which
-  is not guarded by conditional control flow.&nbsp; The code should
-    verify that condition it intends to wait for is not already satisfied
-    before calling wait; any previous notifications will be ignored.
-  </p>
-
-    
-<h3><a name="VO_VOLATILE_INCREMENT">VO: An increment to a volatile field isn't atomic (VO_VOLATILE_INCREMENT)</a></h3>
-
-
-<p>This code increments a volatile field. Increments of volatile fields aren't
-atomic. If more than one thread is incrementing the field at the same time,
-increments could be lost.
-</p>
-
-    
-<h3><a name="VO_VOLATILE_REFERENCE_TO_ARRAY">VO: A volatile reference to an array doesn't treat the array elements as volatile (VO_VOLATILE_REFERENCE_TO_ARRAY)</a></h3>
-
-
-<p>This declares a volatile reference to an array, which might not be what
-you want. With a volatile reference to an array, reads and writes of
-the reference to the array are treated as volatile, but the array elements
-are non-volatile. To get volatile array elements, you will need to use
-one of the atomic array classes in java.util.concurrent (provided
-in Java 5.0).</p>
-
-    
-<h3><a name="WL_USING_GETCLASS_RATHER_THAN_CLASS_LITERAL">WL: Synchronization on getClass rather than class literal (WL_USING_GETCLASS_RATHER_THAN_CLASS_LITERAL)</a></h3>
-
-      
-      <p>
-     This instance method synchronizes on <code>this.getClass()</code>. If this class is subclassed,
-     subclasses will synchronize on the class object for the subclass, which isn't likely what was intended.
-     For example, consider this code from java.awt.Label:</p>
-     <pre>
-     private static final String base = "label";
-     private static int nameCounter = 0;
-     String constructComponentName() {
-        synchronized (getClass()) {
-            return base + nameCounter++;
-        }
-     }
-     </pre>
-     <p>Subclasses of <code>Label</code> won't synchronize on the same subclass, giving rise to a datarace.
-     Instead, this code should be synchronizing on <code>Label.class</code></p>
-      <pre>
-     private static final String base = "label";
-     private static int nameCounter = 0;
-     String constructComponentName() {
-        synchronized (Label.class) {
-            return base + nameCounter++;
-        }
-     }
-     </pre>
-      <p>Bug pattern contributed by Jason Mehrens</p>
-      
-    
-<h3><a name="WS_WRITEOBJECT_SYNC">WS: Class's writeObject() method is synchronized but nothing else is (WS_WRITEOBJECT_SYNC)</a></h3>
-
-
-  <p> This class has a <code>writeObject()</code> method which is synchronized;
-  however, no other method of the class is synchronized.</p>
-
-    
-<h3><a name="WA_AWAIT_NOT_IN_LOOP">Wa: Condition.await() not in loop  (WA_AWAIT_NOT_IN_LOOP)</a></h3>
-
-
-  <p> This method contains a call to <code>java.util.concurrent.await()</code>
-   (or variants)
-  which is not in a loop.&nbsp; If the object is used for multiple conditions,
-  the condition the caller intended to wait for might not be the one
-  that actually occurred.</p>
-
-    
-<h3><a name="WA_NOT_IN_LOOP">Wa: Wait not in loop  (WA_NOT_IN_LOOP)</a></h3>
-
-
-  <p> This method contains a call to <code>java.lang.Object.wait()</code>
-  which is not in a loop.&nbsp; If the monitor is used for multiple conditions,
-  the condition the caller intended to wait for might not be the one
-  that actually occurred.</p>
-
-    
-<h3><a name="BX_BOXING_IMMEDIATELY_UNBOXED">Bx: Primitive value is boxed and then immediately unboxed (BX_BOXING_IMMEDIATELY_UNBOXED)</a></h3>
-
-
-  <p>A primitive is boxed, and then immediately unboxed. This probably is due to a manual
-    boxing in a place where an unboxed value is required, thus forcing the compiler
-to immediately undo the work of the boxing.
-</p>
-
-    
-<h3><a name="BX_BOXING_IMMEDIATELY_UNBOXED_TO_PERFORM_COERCION">Bx: Primitive value is boxed then unboxed to perform primitive coercion (BX_BOXING_IMMEDIATELY_UNBOXED_TO_PERFORM_COERCION)</a></h3>
-
-
-  <p>A primitive boxed value constructed and then immediately converted into a different primitive type
-(e.g., <code>new Double(d).intValue()</code>). Just perform direct primitive coercion (e.g., <code>(int) d</code>).</p>
-
-    
-<h3><a name="BX_UNBOXING_IMMEDIATELY_REBOXED">Bx: Boxed value is unboxed and then immediately reboxed (BX_UNBOXING_IMMEDIATELY_REBOXED)</a></h3>
-
-
-  <p>A boxed value is unboxed and then immediately reboxed.
-</p>
-
-    
-<h3><a name="DM_BOXED_PRIMITIVE_FOR_PARSING">Bx: Boxing/unboxing to parse a primitive (DM_BOXED_PRIMITIVE_FOR_PARSING)</a></h3>
-
-
-  <p>A boxed primitive is created from a String, just to extract the unboxed primitive value.
-  It is more efficient to just call the static parseXXX method.</p>
-
-    
-<h3><a name="DM_BOXED_PRIMITIVE_TOSTRING">Bx: Method allocates a boxed primitive just to call toString (DM_BOXED_PRIMITIVE_TOSTRING)</a></h3>
-
-
-  <p>A boxed primitive is allocated just to call toString(). It is more effective to just use the static
-  form of toString which takes the primitive value. So,</p>
-  <table>
-     <tr><th>Replace...</th><th>With this...</th></tr>
-     <tr><td>new Integer(1).toString()</td><td>Integer.toString(1)</td></tr>
-     <tr><td>new Long(1).toString()</td><td>Long.toString(1)</td></tr>
-     <tr><td>new Float(1.0).toString()</td><td>Float.toString(1.0)</td></tr>
-     <tr><td>new Double(1.0).toString()</td><td>Double.toString(1.0)</td></tr>
-     <tr><td>new Byte(1).toString()</td><td>Byte.toString(1)</td></tr>
-     <tr><td>new Short(1).toString()</td><td>Short.toString(1)</td></tr>
-     <tr><td>new Boolean(true).toString()</td><td>Boolean.toString(true)</td></tr>
-  </table>
-
-    
-<h3><a name="DM_FP_NUMBER_CTOR">Bx: Method invokes inefficient floating-point Number constructor; use static valueOf instead (DM_FP_NUMBER_CTOR)</a></h3>
-
-      
-      <p>
-      Using <code>new Double(double)</code> is guaranteed to always result in a new object whereas
-      <code>Double.valueOf(double)</code> allows caching of values to be done by the compiler, class library, or JVM.
-      Using of cached values avoids object allocation and the code will be faster.
-      </p>
-      <p>
-      Unless the class must be compatible with JVMs predating Java 1.5,
-      use either autoboxing or the <code>valueOf()</code> method when creating instances of <code>Double</code> and <code>Float</code>.
-      </p>
-      
-    
-<h3><a name="DM_NUMBER_CTOR">Bx: Method invokes inefficient Number constructor; use static valueOf instead (DM_NUMBER_CTOR)</a></h3>
-
-      
-      <p>
-      Using <code>new Integer(int)</code> is guaranteed to always result in a new object whereas
-      <code>Integer.valueOf(int)</code> allows caching of values to be done by the compiler, class library, or JVM.
-      Using of cached values avoids object allocation and the code will be faster.
-      </p>
-      <p>
-      Values between -128 and 127 are guaranteed to have corresponding cached instances
-      and using <code>valueOf</code> is approximately 3.5 times faster than using constructor.
-      For values outside the constant range the performance of both styles is the same.
-      </p>
-      <p>
-      Unless the class must be compatible with JVMs predating Java 1.5,
-      use either autoboxing or the <code>valueOf()</code> method when creating instances of
-      <code>Long</code>, <code>Integer</code>, <code>Short</code>, <code>Character</code>, and <code>Byte</code>.
-      </p>
-      
-    
-<h3><a name="DMI_BLOCKING_METHODS_ON_URL">Dm: The equals and hashCode methods of URL are blocking (DMI_BLOCKING_METHODS_ON_URL)</a></h3>
-
-
-  <p> The equals and hashCode
-method of URL perform domain name resolution, this can result in a big performance hit.
-See <a href="http://michaelscharf.blogspot.com/2006/11/javaneturlequals-and-hashcode-make.html">http://michaelscharf.blogspot.com/2006/11/javaneturlequals-and-hashcode-make.html</a> for more information.
-Consider using <code>java.net.URI</code> instead.
-   </p>
-
-    
-<h3><a name="DMI_COLLECTION_OF_URLS">Dm: Maps and sets of URLs can be performance hogs (DMI_COLLECTION_OF_URLS)</a></h3>
-
-
-  <p> This method or field is or uses a Map or Set of URLs. Since both the equals and hashCode
-method of URL perform domain name resolution, this can result in a big performance hit.
-See <a href="http://michaelscharf.blogspot.com/2006/11/javaneturlequals-and-hashcode-make.html">http://michaelscharf.blogspot.com/2006/11/javaneturlequals-and-hashcode-make.html</a> for more information.
-Consider using <code>java.net.URI</code> instead.
-   </p>
-
-    
-<h3><a name="DM_BOOLEAN_CTOR">Dm: Method invokes inefficient Boolean constructor; use Boolean.valueOf(...) instead (DM_BOOLEAN_CTOR)</a></h3>
-
-
-  <p> Creating new instances of <code>java.lang.Boolean</code> wastes
-  memory, since <code>Boolean</code> objects are immutable and there are
-  only two useful values of this type.&nbsp; Use the <code>Boolean.valueOf()</code>
-  method (or Java 1.5 autoboxing) to create <code>Boolean</code> objects instead.</p>
-
-    
-<h3><a name="DM_GC">Dm: Explicit garbage collection; extremely dubious except in benchmarking code (DM_GC)</a></h3>
-
-
-  <p> Code explicitly invokes garbage collection.
-  Except for specific use in benchmarking, this is very dubious.</p>
-  <p>In the past, situations where people have explicitly invoked
-  the garbage collector in routines such as close or finalize methods
-  has led to huge performance black holes. Garbage collection
-   can be expensive. Any situation that forces hundreds or thousands
-   of garbage collections will bring the machine to a crawl.</p>
-
-    
-<h3><a name="DM_NEW_FOR_GETCLASS">Dm: Method allocates an object, only to get the class object (DM_NEW_FOR_GETCLASS)</a></h3>
-
-
-  <p>This method allocates an object just to call getClass() on it, in order to
-  retrieve the Class object for it. It is simpler to just access the .class property of the class.</p>
-
-    
-<h3><a name="DM_NEXTINT_VIA_NEXTDOUBLE">Dm: Use the nextInt method of Random rather than nextDouble to generate a random integer (DM_NEXTINT_VIA_NEXTDOUBLE)</a></h3>
-
-
-  <p>If <code>r</code> is a <code>java.util.Random</code>, you can generate a random number from <code>0</code> to <code>n-1</code>
-using <code>r.nextInt(n)</code>, rather than using <code>(int)(r.nextDouble() * n)</code>.
-</p>
-<p>The argument to nextInt must be positive. If, for example, you want to generate a random
-value from -99 to 0, use <code>-r.nextInt(100)</code>.
-</p>
-
-    
-<h3><a name="DM_STRING_CTOR">Dm: Method invokes inefficient new String(String) constructor (DM_STRING_CTOR)</a></h3>
-
-
-  <p> Using the <code>java.lang.String(String)</code> constructor wastes memory
-  because the object so constructed will be functionally indistinguishable
-  from the <code>String</code> passed as a parameter.&nbsp; Just use the
-  argument <code>String</code> directly.</p>
-
-    
-<h3><a name="DM_STRING_TOSTRING">Dm: Method invokes toString() method on a String (DM_STRING_TOSTRING)</a></h3>
-
-
-  <p> Calling <code>String.toString()</code> is just a redundant operation.
-  Just use the String.</p>
-
-    
-<h3><a name="DM_STRING_VOID_CTOR">Dm: Method invokes inefficient new String() constructor (DM_STRING_VOID_CTOR)</a></h3>
-
-
-  <p> Creating a new <code>java.lang.String</code> object using the
-  no-argument constructor wastes memory because the object so created will
-  be functionally indistinguishable from the empty string constant
-  <code>""</code>.&nbsp; Java guarantees that identical string constants
-  will be represented by the same <code>String</code> object.&nbsp; Therefore,
-  you should just use the empty string constant directly.</p>
-
-    
-<h3><a name="HSC_HUGE_SHARED_STRING_CONSTANT">HSC: Huge string constants is duplicated across multiple class files (HSC_HUGE_SHARED_STRING_CONSTANT)</a></h3>
-
-      
-      <p>
-    A large String constant is duplicated across multiple class files.
-    This is likely because a final field is initialized to a String constant, and the Java language
-    mandates that all references to a final field from other classes be inlined into
-that classfile. See <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6447475">JDK bug 6447475</a>
-    for a description of an occurrence of this bug in the JDK and how resolving it reduced
-    the size of the JDK by 1 megabyte.
-</p>
-      
-   
-<h3><a name="ITA_INEFFICIENT_TO_ARRAY">ITA: Method uses toArray() with zero-length array argument (ITA_INEFFICIENT_TO_ARRAY)</a></h3>
-
-
-<p> This method uses the toArray() method of a collection derived class, and passes
-in a zero-length prototype array argument.  It is more efficient to use
-<code>myCollection.toArray(new Foo[myCollection.size()])</code>
-If the array passed in is big enough to store all of the
-elements of the collection, then it is populated and returned
-directly. This avoids the need to create a second array
-(by reflection) to return as the result.</p>
-
-    
-<h3><a name="SBSC_USE_STRINGBUFFER_CONCATENATION">SBSC: Method concatenates strings using + in a loop (SBSC_USE_STRINGBUFFER_CONCATENATION)</a></h3>
-
-
-<p> The method seems to be building a String using concatenation in a loop.
-In each iteration, the String is converted to a StringBuffer/StringBuilder,
-   appended to, and converted back to a String.
-   This can lead to a cost quadratic in the number of iterations,
-   as the growing string is recopied in each iteration. </p>
-
-<p>Better performance can be obtained by using
-a StringBuffer (or StringBuilder in Java 1.5) explicitly.</p>
-
-<p> For example:</p>
-<pre>
-  // This is bad
-  String s = "";
-  for (int i = 0; i &lt; field.length; ++i) {
-    s = s + field[i];
-  }
-
-  // This is better
-  StringBuffer buf = new StringBuffer();
-  for (int i = 0; i &lt; field.length; ++i) {
-    buf.append(field[i]);
-  }
-  String s = buf.toString();
-</pre>
-
-    
-<h3><a name="SIC_INNER_SHOULD_BE_STATIC">SIC: Should be a static inner class (SIC_INNER_SHOULD_BE_STATIC)</a></h3>
-
-
-  <p> This class is an inner class, but does not use its embedded reference
-  to the object which created it.&nbsp; This reference makes the instances
-  of the class larger, and may keep the reference to the creator object
-  alive longer than necessary.&nbsp; If possible, the class should be
-   made static.
-</p>
-
-    
-<h3><a name="SIC_INNER_SHOULD_BE_STATIC_ANON">SIC: Could be refactored into a named static inner class (SIC_INNER_SHOULD_BE_STATIC_ANON)</a></h3>
-
-
-  <p> This class is an inner class, but does not use its embedded reference
-  to the object which created it.&nbsp; This reference makes the instances
-  of the class larger, and may keep the reference to the creator object
-  alive longer than necessary.&nbsp; If possible, the class should be
-  made into a <em>static</em> inner class. Since anonymous inner
-classes cannot be marked as static, doing this will require refactoring
-the inner class so that it is a named inner class.</p>
-
-    
-<h3><a name="SIC_INNER_SHOULD_BE_STATIC_NEEDS_THIS">SIC: Could be refactored into a static inner class (SIC_INNER_SHOULD_BE_STATIC_NEEDS_THIS)</a></h3>
-
-
-  <p> This class is an inner class, but does not use its embedded reference
-  to the object which created it except during construction of the
-inner object.&nbsp; This reference makes the instances
-  of the class larger, and may keep the reference to the creator object
-  alive longer than necessary.&nbsp; If possible, the class should be
-  made into a <em>static</em> inner class. Since the reference to the
-   outer object is required during construction of the inner instance,
-   the inner class will need to be refactored so as to
-   pass a reference to the outer instance to the constructor
-   for the inner class.</p>
-
-    
-<h3><a name="SS_SHOULD_BE_STATIC">SS: Unread field: should this field be static? (SS_SHOULD_BE_STATIC)</a></h3>
-
-
-  <p> This class contains an instance final field that
-   is initialized to a compile-time static value.
-   Consider making the field static.</p>
-
-    
-<h3><a name="UM_UNNECESSARY_MATH">UM: Method calls static Math class method on a constant value (UM_UNNECESSARY_MATH)</a></h3>
-
-
-<p> This method uses a static method from java.lang.Math on a constant value. This method's
-result in this case, can be determined statically, and is faster and sometimes more accurate to
-just use the constant. Methods detected are:
-</p>
-<table>
-<tr>
-   <th>Method</th> <th>Parameter</th>
-</tr>
-<tr>
-   <td>abs</td> <td>-any-</td>
-</tr>
-<tr>
-   <td>acos</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>asin</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>atan</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>atan2</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>cbrt</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>ceil</td> <td>-any-</td>
-</tr>
-<tr>
-   <td>cos</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>cosh</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>exp</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>expm1</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>floor</td> <td>-any-</td>
-</tr>
-<tr>
-   <td>log</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>log10</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>rint</td> <td>-any-</td>
-</tr>
-<tr>
-   <td>round</td> <td>-any-</td>
-</tr>
-<tr>
-   <td>sin</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>sinh</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>sqrt</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>tan</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>tanh</td> <td>0.0</td>
-</tr>
-<tr>
-   <td>toDegrees</td> <td>0.0 or 1.0</td>
-</tr>
-<tr>
-   <td>toRadians</td> <td>0.0</td>
-</tr>
-</table>
-
-    
-<h3><a name="UPM_UNCALLED_PRIVATE_METHOD">UPM: Private method is never called (UPM_UNCALLED_PRIVATE_METHOD)</a></h3>
-
-
-<p> This private method is never called. Although it is
-possible that the method will be invoked through reflection,
-it is more likely that the method is never used, and should be
-removed.
-</p>
-
-
-<h3><a name="URF_UNREAD_FIELD">UrF: Unread field (URF_UNREAD_FIELD)</a></h3>
-
-
-  <p> This field is never read.&nbsp; Consider removing it from the class.</p>
-
-    
-<h3><a name="UUF_UNUSED_FIELD">UuF: Unused field (UUF_UNUSED_FIELD)</a></h3>
-
-
-  <p> This field is never used.&nbsp; Consider removing it from the class.</p>
-
-    
-<h3><a name="WMI_WRONG_MAP_ITERATOR">WMI: Inefficient use of keySet iterator instead of entrySet iterator (WMI_WRONG_MAP_ITERATOR)</a></h3>
-
-
-<p> This method accesses the value of a Map entry, using a key that was retrieved from
-a keySet iterator. It is more efficient to use an iterator on the entrySet of the map, to avoid the
-Map.get(key) lookup.</p>
-
-        
-<h3><a name="DMI_CONSTANT_DB_PASSWORD">Dm: Hardcoded constant database password (DMI_CONSTANT_DB_PASSWORD)</a></h3>
-
-      
-    <p>This code creates a database connect using a hardcoded, constant password. Anyone with access to either the source code or the compiled code can
-    easily learn the password.
-</p>
-
-
-    
-<h3><a name="DMI_EMPTY_DB_PASSWORD">Dm: Empty database password (DMI_EMPTY_DB_PASSWORD)</a></h3>
-
-      
-    <p>This code creates a database connect using a blank or empty password. This indicates that the database is not protected by a password.
-</p>
-
-
-    
-<h3><a name="HRS_REQUEST_PARAMETER_TO_COOKIE">HRS: HTTP cookie formed from untrusted input (HRS_REQUEST_PARAMETER_TO_COOKIE)</a></h3>
-
-      
-    <p>This code constructs an HTTP Cookie using an untrusted HTTP parameter. If this cookie is added to an HTTP response, it will allow a HTTP response splitting
-vulnerability. See <a href="http://en.wikipedia.org/wiki/HTTP_response_splitting">http://en.wikipedia.org/wiki/HTTP_response_splitting</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of HTTP response splitting.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more
-vulnerabilities that FindBugs doesn't report. If you are concerned about HTTP response splitting, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-    
-<h3><a name="HRS_REQUEST_PARAMETER_TO_HTTP_HEADER">HRS: HTTP Response splitting vulnerability (HRS_REQUEST_PARAMETER_TO_HTTP_HEADER)</a></h3>
-
-            
-    <p>This code directly writes an HTTP parameter to an HTTP header, which allows for a HTTP response splitting
-vulnerability. See <a href="http://en.wikipedia.org/wiki/HTTP_response_splitting">http://en.wikipedia.org/wiki/HTTP_response_splitting</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of HTTP response splitting.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more
-vulnerabilities that FindBugs doesn't report. If you are concerned about HTTP response splitting, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-        
-<h3><a name="PT_ABSOLUTE_PATH_TRAVERSAL">PT: Absolute path traversal in servlet (PT_ABSOLUTE_PATH_TRAVERSAL)</a></h3>
-
-
-    <p>The software uses an HTTP request parameter to construct a pathname that should be within a restricted directory,
-but it does not properly neutralize absolute path sequences such as "/abs/path" that can resolve to a location that is outside of that directory.
-
-See <a href="http://cwe.mitre.org/data/definitions/36.html">http://cwe.mitre.org/data/definitions/36.html</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of absolute path traversal.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more
-vulnerabilities that FindBugs doesn't report. If you are concerned about absolute path traversal, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-    
-<h3><a name="PT_RELATIVE_PATH_TRAVERSAL">PT: Relative path traversal in servlet (PT_RELATIVE_PATH_TRAVERSAL)</a></h3>
-
-
-    <p>The software uses an HTTP request parameter to construct a pathname that should be within a restricted directory, but it does not properly neutralize sequences such as ".." that can resolve to a location that is outside of that directory.
-
-See <a href="http://cwe.mitre.org/data/definitions/23.html">http://cwe.mitre.org/data/definitions/23.html</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of relative path traversal.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more
-vulnerabilities that FindBugs doesn't report. If you are concerned about relative path traversal, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-    
-<h3><a name="SQL_NONCONSTANT_STRING_PASSED_TO_EXECUTE">SQL: Nonconstant string passed to execute method on an SQL statement (SQL_NONCONSTANT_STRING_PASSED_TO_EXECUTE)</a></h3>
-
-
-  <p>The method invokes the execute method on an SQL statement with a String that seems
-to be dynamically generated. Consider using
-a prepared statement instead. It is more efficient and less vulnerable to
-SQL injection attacks.
-</p>
-
-    
-<h3><a name="SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRING">SQL: A prepared statement is generated from a nonconstant String (SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRING)</a></h3>
-
-
-  <p>The code creates an SQL prepared statement from a nonconstant String.
-If unchecked, tainted data from a user is used in building this String, SQL injection could
-be used to make the prepared statement do something unexpected and undesirable.
-</p>
-
-    
-<h3><a name="XSS_REQUEST_PARAMETER_TO_JSP_WRITER">XSS: JSP reflected cross site scripting vulnerability (XSS_REQUEST_PARAMETER_TO_JSP_WRITER)</a></h3>
-
-
-    <p>This code directly writes an HTTP parameter to JSP output, which allows for a cross site scripting
-vulnerability. See <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">http://en.wikipedia.org/wiki/Cross-site_scripting</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of cross site scripting.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more cross site scripting
-vulnerabilities that FindBugs doesn't report. If you are concerned about cross site scripting, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-    
-<h3><a name="XSS_REQUEST_PARAMETER_TO_SEND_ERROR">XSS: Servlet reflected cross site scripting vulnerability in error page (XSS_REQUEST_PARAMETER_TO_SEND_ERROR)</a></h3>
-
-
-    <p>This code directly writes an HTTP parameter to a Server error page (using HttpServletResponse.sendError). Echoing this untrusted input allows
-for a reflected cross site scripting
-vulnerability. See <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">http://en.wikipedia.org/wiki/Cross-site_scripting</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of cross site scripting.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more cross site scripting
-vulnerabilities that FindBugs doesn't report. If you are concerned about cross site scripting, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-    
-<h3><a name="XSS_REQUEST_PARAMETER_TO_SERVLET_WRITER">XSS: Servlet reflected cross site scripting vulnerability (XSS_REQUEST_PARAMETER_TO_SERVLET_WRITER)</a></h3>
-
-
-    <p>This code directly writes an HTTP parameter to Servlet output, which allows for a reflected cross site scripting
-vulnerability. See <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">http://en.wikipedia.org/wiki/Cross-site_scripting</a>
-for more information.</p>
-<p>FindBugs looks only for the most blatant, obvious cases of cross site scripting.
-If FindBugs found <em>any</em>, you <em>almost certainly</em> have more cross site scripting
-vulnerabilities that FindBugs doesn't report. If you are concerned about cross site scripting, you should seriously
-consider using a commercial static analysis or pen-testing tool.
-</p>
-
-
-    
-<h3><a name="BC_BAD_CAST_TO_ABSTRACT_COLLECTION">BC: Questionable cast to abstract collection  (BC_BAD_CAST_TO_ABSTRACT_COLLECTION)</a></h3>
-
-
-<p>
-This code casts a Collection to an abstract collection
-(such as <code>List</code>, <code>Set</code>, or <code>Map</code>).
-Ensure that you are guaranteed that the object is of the type
-you are casting to. If all you need is to be able
-to iterate through a collection, you don't need to cast it to a Set or List.
-</p>
-
-    
-<h3><a name="BC_BAD_CAST_TO_CONCRETE_COLLECTION">BC: Questionable cast to concrete collection (BC_BAD_CAST_TO_CONCRETE_COLLECTION)</a></h3>
-
-
-<p>
-This code casts an abstract collection (such as a Collection, List, or Set)
-to a specific concrete implementation (such as an ArrayList or HashSet).
-This might not be correct, and it may make your code fragile, since
-it makes it harder to switch to other concrete implementations at a future
-point. Unless you have a particular reason to do so, just use the abstract
-collection class.
-</p>
-
-    
-<h3><a name="BC_UNCONFIRMED_CAST">BC: Unchecked/unconfirmed cast (BC_UNCONFIRMED_CAST)</a></h3>
-
-
-<p>
-This cast is unchecked, and not all instances of the type casted from can be cast to
-the type it is being cast to. Check that your program logic ensures that this
-cast will not fail.
-</p>
-
-    
-<h3><a name="BC_UNCONFIRMED_CAST_OF_RETURN_VALUE">BC: Unchecked/unconfirmed cast of return value from method (BC_UNCONFIRMED_CAST_OF_RETURN_VALUE)</a></h3>
-
-
-<p>
-This code performs an unchecked cast of the return value of a method.
-The code might be calling the method in such a way that the cast is guaranteed to be
-safe, but FindBugs is unable to verify that the cast is safe.  Check that your program logic ensures that this
-cast will not fail.
-</p>
-
-    
-<h3><a name="BC_VACUOUS_INSTANCEOF">BC: instanceof will always return true (BC_VACUOUS_INSTANCEOF)</a></h3>
-
-
-<p>
-This instanceof test will always return true (unless the value being tested is null).
-Although this is safe, make sure it isn't
-an indication of some misunderstanding or some other logic error.
-If you really want to test the value for being null, perhaps it would be clearer to do
-better to do a null test rather than an instanceof test.
-</p>
-
-    
-<h3><a name="ICAST_QUESTIONABLE_UNSIGNED_RIGHT_SHIFT">BSHIFT: Unsigned right shift cast to short/byte (ICAST_QUESTIONABLE_UNSIGNED_RIGHT_SHIFT)</a></h3>
-
-
-<p>
-The code performs an unsigned right shift, whose result is then
-cast to a short or byte, which discards the upper bits of the result.
-Since the upper bits are discarded, there may be no difference between
-a signed and unsigned right shift (depending upon the size of the shift).
-</p>
-
-    
-<h3><a name="CI_CONFUSED_INHERITANCE">CI: Class is final but declares protected field (CI_CONFUSED_INHERITANCE)</a></h3>
-
-      
-      <p>
-      This class is declared to be final, but declares fields to be protected. Since the class
-      is final, it can not be derived from, and the use of protected is confusing. The access
-      modifier for the field should be changed to private or public to represent the true
-      use for the field.
-      </p>
-      
-    
-<h3><a name="DB_DUPLICATE_BRANCHES">DB: Method uses the same code for two branches (DB_DUPLICATE_BRANCHES)</a></h3>
-
-      
-      <p>
-      This method uses the same code to implement two branches of a conditional branch.
-    Check to ensure that this isn't a coding mistake.
-      </p>
-      
-   
-<h3><a name="DB_DUPLICATE_SWITCH_CLAUSES">DB: Method uses the same code for two switch clauses (DB_DUPLICATE_SWITCH_CLAUSES)</a></h3>
-
-      
-      <p>
-      This method uses the same code to implement two clauses of a switch statement.
-    This could be a case of duplicate code, but it might also indicate
-    a coding mistake.
-      </p>
-      
-   
-<h3><a name="DLS_DEAD_LOCAL_STORE">DLS: Dead store to local variable (DLS_DEAD_LOCAL_STORE)</a></h3>
-
-
-<p>
-This instruction assigns a value to a local variable,
-but the value is not read or used in any subsequent instruction.
-Often, this indicates an error, because the value computed is never
-used.
-</p>
-<p>
-Note that Sun's javac compiler often generates dead stores for
-final local variables.  Because FindBugs is a bytecode-based tool,
-there is no easy way to eliminate these false positives.
-</p>
-
-    
-<h3><a name="DLS_DEAD_LOCAL_STORE_IN_RETURN">DLS: Useless assignment in return statement (DLS_DEAD_LOCAL_STORE_IN_RETURN)</a></h3>
-
-      
-<p>
-This statement assigns to a local variable in a return statement. This assignment
-has effect. Please verify that this statement does the right thing.
-</p>
-
-    
-<h3><a name="DLS_DEAD_LOCAL_STORE_OF_NULL">DLS: Dead store of null to local variable (DLS_DEAD_LOCAL_STORE_OF_NULL)</a></h3>
-
-
-<p>The code stores null into a local variable, and the stored value is not
-read. This store may have been introduced to assist the garbage collector, but
-as of Java SE 6.0, this is no longer needed or useful.
-</p>
-
-    
-<h3><a name="DLS_DEAD_LOCAL_STORE_SHADOWS_FIELD">DLS: Dead store to local variable that shadows field (DLS_DEAD_LOCAL_STORE_SHADOWS_FIELD)</a></h3>
-
-
-<p>
-This instruction assigns a value to a local variable,
-but the value is not read or used in any subsequent instruction.
-Often, this indicates an error, because the value computed is never
-used. There is a field with the same name as the local variable. Did you
-mean to assign to that variable instead?
-</p>
-
-    
-<h3><a name="DMI_HARDCODED_ABSOLUTE_FILENAME">DMI: Code contains a hard coded reference to an absolute pathname (DMI_HARDCODED_ABSOLUTE_FILENAME)</a></h3>
-
-
-<p>This code constructs a File object using a hard coded to an absolute pathname
-(e.g., <code>new File("/home/dannyc/workspace/j2ee/src/share/com/sun/enterprise/deployment");</code>
-</p>
-
-    
-<h3><a name="DMI_NONSERIALIZABLE_OBJECT_WRITTEN">DMI: Non serializable object written to ObjectOutput (DMI_NONSERIALIZABLE_OBJECT_WRITTEN)</a></h3>
-
-
-<p>
-This code seems to be passing a non-serializable object to the ObjectOutput.writeObject method.
-If the object is, indeed, non-serializable, an error will result.
-</p>
-
-    
-<h3><a name="DMI_USELESS_SUBSTRING">DMI: Invocation of substring(0), which returns the original value (DMI_USELESS_SUBSTRING)</a></h3>
-
-
-<p>
-This code invokes substring(0) on a String, which returns the original value.
-</p>
-
-    
-<h3><a name="DMI_THREAD_PASSED_WHERE_RUNNABLE_EXPECTED">Dm: Thread passed where Runnable expected (DMI_THREAD_PASSED_WHERE_RUNNABLE_EXPECTED)</a></h3>
-
-
-  <p> A Thread object is passed as a parameter to a method where
-a Runnable is expected. This is rather unusual, and may indicate a logic error
-or cause unexpected behavior.
-   </p>
-
-    
-<h3><a name="EQ_DOESNT_OVERRIDE_EQUALS">Eq: Class doesn't override equals in superclass (EQ_DOESNT_OVERRIDE_EQUALS)</a></h3>
-
-
-  <p> This class extends a class that defines an equals method and adds fields, but doesn't
-define an equals method itself. Thus, equality on instances of this class will
-ignore the identity of the subclass and the added fields. Be sure this is what is intended,
-and that you don't need to override the equals method. Even if you don't need to override
-the equals method, consider overriding it anyway to document the fact
-that the equals method for the subclass just return the result of
-invoking super.equals(o).
-  </p>
-
-    
-<h3><a name="EQ_UNUSUAL">Eq: Unusual equals method  (EQ_UNUSUAL)</a></h3>
-
-
-  <p> This class doesn't do any of the patterns we recognize for checking that the type of the argument
-is compatible with the type of the <code>this</code> object. There might not be anything wrong with
-this code, but it is worth reviewing.
-</p>
-
-    
-<h3><a name="FE_FLOATING_POINT_EQUALITY">FE: Test for floating point equality (FE_FLOATING_POINT_EQUALITY)</a></h3>
-
-   
-    <p>
-    This operation compares two floating point values for equality.
-    Because floating point calculations may involve rounding,
-   calculated float and double values may not be accurate.
-    For values that must be precise, such as monetary values,
-   consider using a fixed-precision type such as BigDecimal.
-    For values that need not be precise, consider comparing for equality
-    within some range, for example:
-    <code>if ( Math.abs(x - y) &lt; .0000001 )</code>.
-   See the Java Language Specification, section 4.2.4.
-    </p>
-    
-     
-<h3><a name="VA_FORMAT_STRING_BAD_CONVERSION_TO_BOOLEAN">FS: Non-Boolean argument formatted using %b format specifier (VA_FORMAT_STRING_BAD_CONVERSION_TO_BOOLEAN)</a></h3>
-
-
-<p>
-An argument not of type Boolean is being formatted with a %b format specifier. This won't throw an
-exception; instead, it will print true for any nonnull value, and false for null.
-This feature of format strings is strange, and may not be what you intended.
-</p>
-
-     
-<h3><a name="IA_AMBIGUOUS_INVOCATION_OF_INHERITED_OR_OUTER_METHOD">IA: Potentially ambiguous invocation of either an inherited or outer method (IA_AMBIGUOUS_INVOCATION_OF_INHERITED_OR_OUTER_METHOD)</a></h3>
-
-
-  <p> 
-An inner class is invoking a method that could be resolved to either a inherited method or a method defined in an outer class. 
-For example, you invoke <code>foo(17)</code>, which is defined in both a superclass and in an outer method.
-By the Java semantics,
-it will be resolved to invoke the inherited method, but this may not be want
-you intend. 
-</p>
-<p>If you really intend to invoke the inherited method,
-invoke it by invoking the method on super (e.g., invoke super.foo(17)), and
-thus it will be clear to other readers of your code and to FindBugs
-that you want to invoke the inherited method, not the method in the outer class.
-</p>
-<p>If you call <code>this.foo(17)</code>, then the inherited method will be invoked. However, since FindBugs only looks at
-classfiles, it 
-can't tell the difference between an invocation of <code>this.foo(17)</code> and <code>foo(17)</code>, it will still
-complain about a potential ambiguous invocation.
-</p>
-
-    
-<h3><a name="IC_INIT_CIRCULARITY">IC: Initialization circularity (IC_INIT_CIRCULARITY)</a></h3>
-
-
-  <p> A circularity was detected in the static initializers of the two
-  classes referenced by the bug instance.&nbsp; Many kinds of unexpected
-  behavior may arise from such circularity.</p>
-
-    
-<h3><a name="ICAST_IDIV_CAST_TO_DOUBLE">ICAST: Integral division result cast to double or float (ICAST_IDIV_CAST_TO_DOUBLE)</a></h3>
-
-
-<p>
-This code casts the result of an integral division (e.g., int or long division)
-operation to double or
-float.
-Doing division on integers truncates the result
-to the integer value closest to zero.  The fact that the result
-was cast to double suggests that this precision should have been retained.
-What was probably meant was to cast one or both of the operands to
-double <em>before</em> performing the division.  Here is an example:
-</p>
-<blockquote>
-<pre>
-int x = 2;
-int y = 5;
-// Wrong: yields result 0.0
-double value1 =  x / y;
-
-// Right: yields result 0.4
-double value2 =  x / (double) y;
-</pre>
-</blockquote>
-
-    
-<h3><a name="ICAST_INTEGER_MULTIPLY_CAST_TO_LONG">ICAST: Result of integer multiplication cast to long (ICAST_INTEGER_MULTIPLY_CAST_TO_LONG)</a></h3>
-
-
-<p>
-This code performs integer multiply and then converts the result to a long,
-as in:</p>
-<pre>
-    long convertDaysToMilliseconds(int days) { return 1000*3600*24*days; }
-</pre>
-<p>
-If the multiplication is done using long arithmetic, you can avoid
-the possibility that the result will overflow. For example, you
-could fix the above code to:</p>
-<pre>
-    long convertDaysToMilliseconds(int days) { return 1000L*3600*24*days; }
-</pre>
-or
-<pre>
-    static final long MILLISECONDS_PER_DAY = 24L*3600*1000;
-    long convertDaysToMilliseconds(int days) { return days * MILLISECONDS_PER_DAY; }
-</pre>
-
-    
-<h3><a name="IM_AVERAGE_COMPUTATION_COULD_OVERFLOW">IM: Computation of average could overflow (IM_AVERAGE_COMPUTATION_COULD_OVERFLOW)</a></h3>
-
-
-<p>The code computes the average of two integers using either division or signed right shift,
-and then uses the result as the index of an array.
-If the values being averaged are very large, this can overflow (resulting in the computation
-of a negative average).  Assuming that the result is intended to be nonnegative, you
-can use an unsigned right shift instead. In other words, rather that using <code>(low+high)/2</code>,
-use <code>(low+high) &gt;&gt;&gt; 1</code>
-</p>
-<p>This bug exists in many earlier implementations of binary search and merge sort.
-Martin Buchholz <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6412541">found and fixed it</a>
-in the JDK libraries, and Joshua Bloch
-<a href="http://googleresearch.blogspot.com/2006/06/extra-extra-read-all-about-it-nearly.html">widely
-publicized the bug pattern</a>.
-</p>
-
-    
-<h3><a name="IM_BAD_CHECK_FOR_ODD">IM: Check for oddness that won't work for negative numbers  (IM_BAD_CHECK_FOR_ODD)</a></h3>
-
-
-<p>
-The code uses x % 2 == 1 to check to see if a value is odd, but this won't work
-for negative numbers (e.g., (-5) % 2 == -1). If this code is intending to check
-for oddness, consider using x &amp; 1 == 1, or x % 2 != 0.
-</p>
-
-    
-<h3><a name="INT_BAD_REM_BY_1">INT: Integer remainder modulo 1 (INT_BAD_REM_BY_1)</a></h3>
-
-
-<p> Any expression (exp % 1) is guaranteed to always return zero.
-Did you mean (exp &amp; 1) or (exp % 2) instead?
-</p>
-
-    
-<h3><a name="INT_VACUOUS_BIT_OPERATION">INT: Vacuous bit mask operation on integer value (INT_VACUOUS_BIT_OPERATION)</a></h3>
-
-
-<p> This is an integer bit operation (and, or, or exclusive or) that doesn't do any useful work
-(e.g., <code>v & 0xffffffff</code>).
-
-</p>
-
-    
-<h3><a name="INT_VACUOUS_COMPARISON">INT: Vacuous comparison of integer value (INT_VACUOUS_COMPARISON)</a></h3>
-
-
-<p> There is an integer comparison that always returns
-the same value (e.g., x &lt;= Integer.MAX_VALUE).
-</p>
-
-    
-<h3><a name="MTIA_SUSPECT_SERVLET_INSTANCE_FIELD">MTIA: Class extends Servlet class and uses instance variables (MTIA_SUSPECT_SERVLET_INSTANCE_FIELD)</a></h3>
-
-   
-    <p>
-    This class extends from a Servlet class, and uses an instance member variable. Since only
-    one instance of a Servlet class is created by the J2EE framework, and used in a
-    multithreaded way, this paradigm is highly discouraged and most likely problematic. Consider
-    only using method local variables.
-    </p>
-    
-      
-<h3><a name="MTIA_SUSPECT_STRUTS_INSTANCE_FIELD">MTIA: Class extends Struts Action class and uses instance variables (MTIA_SUSPECT_STRUTS_INSTANCE_FIELD)</a></h3>
-
-   
-    <p>
-    This class extends from a Struts Action class, and uses an instance member variable. Since only
-    one instance of a struts Action class is created by the Struts framework, and used in a
-    multithreaded way, this paradigm is highly discouraged and most likely problematic. Consider
-    only using method local variables. Only instance fields that are written outside of a monitor
-    are reported.
-    </p>
-    
-      
-<h3><a name="NP_DEREFERENCE_OF_READLINE_VALUE">NP: Dereference of the result of readLine() without nullcheck (NP_DEREFERENCE_OF_READLINE_VALUE)</a></h3>
-
-
-  <p> The result of invoking readLine() is dereferenced without checking to see if the result is null. If there are no more lines of text
-to read, readLine() will return null and dereferencing that will generate a null pointer exception.
-</p>
-
-    
-<h3><a name="NP_IMMEDIATE_DEREFERENCE_OF_READLINE">NP: Immediate dereference of the result of readLine() (NP_IMMEDIATE_DEREFERENCE_OF_READLINE)</a></h3>
-
-
-  <p> The result of invoking readLine() is immediately dereferenced. If there are no more lines of text
-to read, readLine() will return null and dereferencing that will generate a null pointer exception.
-</p>
-
-    
-<h3><a name="NP_LOAD_OF_KNOWN_NULL_VALUE">NP: Load of known null value (NP_LOAD_OF_KNOWN_NULL_VALUE)</a></h3>
-
-
-  <p> The variable referenced at this point is known to be null due to an earlier
-   check against null. Although this is valid, it might be a mistake (perhaps you
-intended to refer to a different variable, or perhaps the earlier check to see if the
-variable is null should have been a check to see if it was nonnull).
-</p>
-
-    
-<h3><a name="NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION">NP: Method tightens nullness annotation on parameter (NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION)</a></h3>
-
-        <p>
-        A method should always implement the contract of a method it overrides. Thus, if a method takes a parameter
-	that is marked as @Nullable, you shouldn't override that method in a subclass with a method where that parameter is @Nonnull.
-	Doing so violates the contract that the method should handle a null parameter.
-        </p>
-      
-<h3><a name="NP_METHOD_RETURN_RELAXING_ANNOTATION">NP: Method relaxes nullness annotation on return value (NP_METHOD_RETURN_RELAXING_ANNOTATION)</a></h3>
-
-        <p>
-        A method should always implement the contract of a method it overrides. Thus, if a method takes is annotated
-	as returning a @Nonnull value, 
-	you shouldn't override that method in a subclass with a method annotated as returning a @Nullable or @CheckForNull value.
-	Doing so violates the contract that the method shouldn't return null.
-        </p>
-      
-<h3><a name="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE">NP: Possible null pointer dereference due to return value of called method (NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE)</a></h3>
-
-      
-<p> The return value from a method is dereferenced without a null check,
-and the return value of that method is one that should generally be checked
-for null.  This may lead to a <code>NullPointerException</code> when the code is executed.
-</p>
-      
-   
-<h3><a name="NP_NULL_ON_SOME_PATH_MIGHT_BE_INFEASIBLE">NP: Possible null pointer dereference on branch that might be infeasible (NP_NULL_ON_SOME_PATH_MIGHT_BE_INFEASIBLE)</a></h3>
-
-
-<p> There is a branch of statement that, <em>if executed,</em>  guarantees that
-a null value will be dereferenced, which
-would generate a <code>NullPointerException</code> when the code is executed.
-Of course, the problem might be that the branch or statement is infeasible and that
-the null pointer exception can't ever be executed; deciding that is beyond the ability of FindBugs.
-Due to the fact that this value had been previously tested for nullness,
-this is a definite possibility.
-</p>
-
-    
-<h3><a name="NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE">NP: Parameter must be nonnull but is marked as nullable (NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE)</a></h3>
-
-
-<p> This parameter is always used in a way that requires it to be nonnull,
-but the parameter is explicitly annotated as being Nullable. Either the use
-of the parameter or the annotation is wrong.
-</p>
-
-    
-<h3><a name="NP_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD">NP: Read of unwritten public or protected field (NP_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD)</a></h3>
-
-
-  <p> The program is dereferencing a public or protected
-field that does not seem to ever have a non-null value written to it.
-Unless the field is initialized via some mechanism not seen by the analysis,
-dereferencing this value will generate a null pointer exception.
-</p>
-
-    
-<h3><a name="NS_DANGEROUS_NON_SHORT_CIRCUIT">NS: Potentially dangerous use of non-short-circuit logic (NS_DANGEROUS_NON_SHORT_CIRCUIT)</a></h3>
-
-
-  <p> This code seems to be using non-short-circuit logic (e.g., &amp;
-or |)
-rather than short-circuit logic (&amp;&amp; or ||). In addition,
-it seem possible that, depending on the value of the left hand side, you might not
-want to evaluate the right hand side (because it would have side effects, could cause an exception
-or could be expensive.</p>
-<p>
-Non-short-circuit logic causes both sides of the expression
-to be evaluated even when the result can be inferred from
-knowing the left-hand side. This can be less efficient and
-can result in errors if the left-hand side guards cases
-when evaluating the right-hand side can generate an error.
-</p>
-
-<p>See <a href="http://java.sun.com/docs/books/jls/third_edition/html/expressions.html#15.22.2">the Java
-Language Specification</a> for details
-
-</p>
-
-    
-<h3><a name="NS_NON_SHORT_CIRCUIT">NS: Questionable use of non-short-circuit logic (NS_NON_SHORT_CIRCUIT)</a></h3>
-
-
-  <p> This code seems to be using non-short-circuit logic (e.g., &amp;
-or |)
-rather than short-circuit logic (&amp;&amp; or ||).
-Non-short-circuit logic causes both sides of the expression
-to be evaluated even when the result can be inferred from
-knowing the left-hand side. This can be less efficient and
-can result in errors if the left-hand side guards cases
-when evaluating the right-hand side can generate an error.
-
-<p>See <a href="http://java.sun.com/docs/books/jls/third_edition/html/expressions.html#15.22.2">the Java
-Language Specification</a> for details
-
-</p>
-
-    
-<h3><a name="PZLA_PREFER_ZERO_LENGTH_ARRAYS">PZLA: Consider returning a zero length array rather than null (PZLA_PREFER_ZERO_LENGTH_ARRAYS)</a></h3>
-
-
-<p> It is often a better design to
-return a length zero array rather than a null reference to indicate that there
-are no results (i.e., an empty list of results).
-This way, no explicit check for null is needed by clients of the method.</p>
-
-<p>On the other hand, using null to indicate
-"there is no answer to this question" is probably appropriate.
-For example, <code>File.listFiles()</code> returns an empty list
-if given a directory containing no files, and returns null if the file
-is not a directory.</p>
-
-    
-<h3><a name="QF_QUESTIONABLE_FOR_LOOP">QF: Complicated, subtle or wrong increment in for-loop  (QF_QUESTIONABLE_FOR_LOOP)</a></h3>
-
-
-   <p>Are you sure this for loop is incrementing the correct variable?
-   It appears that another variable is being initialized and checked
-   by the for loop.
-</p>
-
-    
-<h3><a name="RCN_REDUNDANT_COMPARISON_OF_NULL_AND_NONNULL_VALUE">RCN: Redundant comparison of non-null value to null (RCN_REDUNDANT_COMPARISON_OF_NULL_AND_NONNULL_VALUE)</a></h3>
-
-
-<p> This method contains a reference known to be non-null with another reference
-known to be null.</p>
-
-    
-<h3><a name="RCN_REDUNDANT_COMPARISON_TWO_NULL_VALUES">RCN: Redundant comparison of two null values (RCN_REDUNDANT_COMPARISON_TWO_NULL_VALUES)</a></h3>
-
-
-<p> This method contains a redundant comparison of two references known to
-both be definitely null.</p>
-
-    
-<h3><a name="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE">RCN: Redundant nullcheck of value known to be non-null (RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE)</a></h3>
-
-
-<p> This method contains a redundant check of a known non-null value against
-the constant null.</p>
-
-    
-<h3><a name="RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE">RCN: Redundant nullcheck of value known to be null (RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE)</a></h3>
-
-
-<p> This method contains a redundant check of a known null value against
-the constant null.</p>
-
-    
-<h3><a name="REC_CATCH_EXCEPTION">REC: Exception is caught when Exception is not thrown (REC_CATCH_EXCEPTION)</a></h3>
-
-  
-  <p>
-  This method uses a try-catch block that catches Exception objects, but Exception is not
-  thrown within the try block, and RuntimeException is not explicitly caught.  It is a common bug pattern to
-  say try { ... } catch (Exception e) { something } as a shorthand for catching a number of types of exception
-  each of whose catch blocks is identical, but this construct also accidentally catches RuntimeException as well,
-  masking potential bugs.
-  </p>
-  <p>A better approach is to either explicitly catch the specific exceptions that are thrown,
-  or to explicitly catch RuntimeException exception, rethrow it, and then catch all non-Runtime Exceptions, as shown below:</p>
-  <pre>
-  try {
-    ...
-  } catch (RuntimeException e) {
-    throw e;
-  } catch (Exception e) {
-    ... deal with all non-runtime exceptions ...
-  }</pre>
-  
-     
-<h3><a name="RI_REDUNDANT_INTERFACES">RI: Class implements same interface as superclass (RI_REDUNDANT_INTERFACES)</a></h3>
-
-   
-    <p>
-    This class declares that it implements an interface that is also implemented by a superclass.
-    This is redundant because once a superclass implements an interface, all subclasses by default also
-    implement this interface. It may point out that the inheritance hierarchy has changed since
-    this class was created, and consideration should be given to the ownership of
-    the interface's implementation.
-    </p>
-    
-     
-<h3><a name="RV_CHECK_FOR_POSITIVE_INDEXOF">RV: Method checks to see if result of String.indexOf is positive (RV_CHECK_FOR_POSITIVE_INDEXOF)</a></h3>
-
-
-   <p> The method invokes String.indexOf and checks to see if the result is positive or non-positive.
-   It is much more typical to check to see if the result is negative or non-negative. It is
-   positive only if the substring checked for occurs at some place other than at the beginning of
-   the String.</p>
-
-    
-<h3><a name="RV_DONT_JUST_NULL_CHECK_READLINE">RV: Method discards result of readLine after checking if it is nonnull (RV_DONT_JUST_NULL_CHECK_READLINE)</a></h3>
-
-
-   <p> The value returned by readLine is discarded after checking to see if the return
-value is non-null. In almost all situations, if the result is non-null, you will want
-to use that non-null value. Calling readLine again will give you a different line.</p>
-
-    
-<h3><a name="RV_REM_OF_HASHCODE">RV: Remainder of hashCode could be negative (RV_REM_OF_HASHCODE)</a></h3>
-
-
-<p> This code computes a hashCode, and then computes
-the remainder of that value modulo another value. Since the hashCode
-can be negative, the result of the remainder operation
-can also be negative. </p>
-<p> Assuming you want to ensure that the result of your computation is nonnegative,
-you may need to change your code.
-If you know the divisor is a power of 2,
-you can use a bitwise and operator instead (i.e., instead of
-using <code>x.hashCode()%n</code>, use <code>x.hashCode()&amp;(n-1)</code>.
-This is probably faster than computing the remainder as well.
-If you don't know that the divisor is a power of 2, take the absolute
-value of the result of the remainder operation (i.e., use
-<code>Math.abs(x.hashCode()%n)</code>
-</p>
-
-    
-<h3><a name="RV_REM_OF_RANDOM_INT">RV: Remainder of 32-bit signed random integer (RV_REM_OF_RANDOM_INT)</a></h3>
-
-
-<p> This code generates a random signed integer and then computes
-the remainder of that value modulo another value. Since the random
-number can be negative, the result of the remainder operation
-can also be negative. Be sure this is intended, and strongly
-consider using the Random.nextInt(int) method instead.
-</p>
-
-    
-<h3><a name="RV_RETURN_VALUE_IGNORED_INFERRED">RV: Method ignores return value, is this OK? (RV_RETURN_VALUE_IGNORED_INFERRED)</a></h3>
-
-
-<p>This code calls a method and ignores the return value. The return value
-is the same type as the type the method is invoked on, and from our analysis it looks
-like the return value might be important (e.g., like ignoring the
-return value of <code>String.toLowerCase()</code>).
-</p>
-<p>We are guessing that ignoring the return value might be a bad idea just from
-a simple analysis of the body of the method. You can use a @CheckReturnValue annotation
-to instruct FindBugs as to whether ignoring the return value of this method
-is important or acceptable.
-</p>
-<p>Please investigate this closely to decide whether it is OK to ignore the return value.
-</p>
-
-    
-<h3><a name="SA_FIELD_DOUBLE_ASSIGNMENT">SA: Double assignment of field (SA_FIELD_DOUBLE_ASSIGNMENT)</a></h3>
-
-
-<p> This method contains a double assignment of a field; e.g.
-</p>
-<pre>
-  int x,y;
-  public void foo() {
-    x = x = 17;
-  }
-</pre>
-<p>Assigning to a field twice is useless, and may indicate a logic error or typo.</p>
-
-    
-<h3><a name="SA_LOCAL_DOUBLE_ASSIGNMENT">SA: Double assignment of local variable  (SA_LOCAL_DOUBLE_ASSIGNMENT)</a></h3>
-
-
-<p> This method contains a double assignment of a local variable; e.g.
-</p>
-<pre>
-  public void foo() {
-    int x,y;
-    x = x = 17;
-  }
-</pre>
-<p>Assigning the same value to a variable twice is useless, and may indicate a logic error or typo.</p>
-
-    
-<h3><a name="SA_LOCAL_SELF_ASSIGNMENT">SA: Self assignment of local variable (SA_LOCAL_SELF_ASSIGNMENT)</a></h3>
-
-
-<p> This method contains a self assignment of a local variable; e.g.</p>
-<pre>
-  public void foo() {
-    int x = 3;
-    x = x;
-  }
-</pre>
-<p>
-Such assignments are useless, and may indicate a logic error or typo.
-</p>
-
-    
-<h3><a name="SF_SWITCH_FALLTHROUGH">SF: Switch statement found where one case falls through to the next case (SF_SWITCH_FALLTHROUGH)</a></h3>
-
-
-  <p> This method contains a switch statement where one case branch will fall through to the next case.
-  Usually you need to end this case with a break or return.</p>
-
-    
-<h3><a name="SF_SWITCH_NO_DEFAULT">SF: Switch statement found where default case is missing (SF_SWITCH_NO_DEFAULT)</a></h3>
-
-
-  <p> This method contains a switch statement where default case is missing.
-  Usually you need to provide a default case.</p>
-  <p>Because the analysis only looks at the generated bytecode, this warning can be incorrect triggered if
-the default case is at the end of the switch statement and doesn't end with a break statement.
-
-    
-<h3><a name="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD">ST: Write to static field from instance method (ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD)</a></h3>
-
-
-  <p> This instance method writes to a static field. This is tricky to get
-correct if multiple instances are being manipulated,
-and generally bad practice.
-</p>
-
-    
-<h3><a name="SE_PRIVATE_READ_RESOLVE_NOT_INHERITED">Se: Private readResolve method not inherited by subclasses (SE_PRIVATE_READ_RESOLVE_NOT_INHERITED)</a></h3>
-
-
-  <p> This class defines a private readResolve method. Since it is private, it won't be inherited by subclasses.
-This might be intentional and OK, but should be reviewed to ensure it is what is intended.
-</p>
-
-    
-<h3><a name="SE_TRANSIENT_FIELD_OF_NONSERIALIZABLE_CLASS">Se: Transient field of class that isn't Serializable.  (SE_TRANSIENT_FIELD_OF_NONSERIALIZABLE_CLASS)</a></h3>
-
-
-  <p> The field is marked as transient, but the class isn't Serializable, so marking it as transient
-has absolutely no effect.
-This may be leftover marking from a previous version of the code in which the class was transient, or
-it may indicate a misunderstanding of how serialization works.
-</p>
-
-    
-<h3><a name="TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_ALWAYS_SINK">TQ: Value required to have type qualifier, but marked as unknown (TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_ALWAYS_SINK)</a></h3>
-
-      
-      <p>
-      A value is used in a way that requires it to be always be a value denoted by a type qualifier, but
-    there is an explicit annotation stating that it is not known where the value is required to have that type qualifier.
-    Either the usage or the annotation is incorrect.
-      </p>
-      
-    
-<h3><a name="TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_NEVER_SINK">TQ: Value required to not have type qualifier, but marked as unknown (TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_NEVER_SINK)</a></h3>
-
-      
-      <p>
-      A value is used in a way that requires it to be never be a value denoted by a type qualifier, but
-    there is an explicit annotation stating that it is not known where the value is prohibited from having that type qualifier.
-    Either the usage or the annotation is incorrect.
-      </p>
-      
-    
-<h3><a name="UCF_USELESS_CONTROL_FLOW">UCF: Useless control flow (UCF_USELESS_CONTROL_FLOW)</a></h3>
-
-
-<p> This method contains a useless control flow statement, where
-control flow continues onto the same place regardless of whether or not
-the branch is taken. For example,
-this is caused by having an empty statement
-block for an <code>if</code> statement:</p>
-<pre>
-    if (argv.length == 0) {
-    // TODO: handle this case
-    }
-</pre>
-
-    
-<h3><a name="UCF_USELESS_CONTROL_FLOW_NEXT_LINE">UCF: Useless control flow to next line (UCF_USELESS_CONTROL_FLOW_NEXT_LINE)</a></h3>
-
-
-<p> This method contains a useless control flow statement in which control
-flow follows to the same or following line regardless of whether or not
-the branch is taken.
-Often, this is caused by inadvertently using an empty statement as the
-body of an <code>if</code> statement, e.g.:</p>
-<pre>
-    if (argv.length == 1);
-        System.out.println("Hello, " + argv[0]);
-</pre>
-
-    
-<h3><a name="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD">UrF: Unread public/protected field (URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD)</a></h3>
-
-
-  <p> This field is never read.&nbsp;
-The field is public or protected, so perhaps
-    it is intended to be used with classes not seen as part of the analysis. If not,
-consider removing it from the class.</p>
-
-    
-<h3><a name="UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD">UuF: Unused public or protected field (UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD)</a></h3>
-
-
-  <p> This field is never used.&nbsp;
-The field is public or protected, so perhaps
-    it is intended to be used with classes not seen as part of the analysis. If not,
-consider removing it from the class.</p>
-
-    
-<h3><a name="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR">UwF: Field not initialized in constructor but dereferenced without null check (UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR)</a></h3>
-
-
-  <p> This field is never initialized within any constructor, and is therefore could be null after
-the object is constructed. Elsewhere, it is loaded and dereferenced without a null check.
-This could be a either an error or a questionable design, since
-it means a null pointer exception will be generated if that field is dereferenced
-before being initialized.
-</p>
-
-    
-<h3><a name="UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD">UwF: Unwritten public or protected field (UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD)</a></h3>
-
-
-  <p> No writes were seen to this public/protected field.&nbsp; All reads of it will return the default
-value. Check for errors (should it have been initialized?), or remove it if it is useless.</p>
-
-    
-<h3><a name="XFB_XML_FACTORY_BYPASS">XFB: Method directly allocates a specific implementation of xml interfaces (XFB_XML_FACTORY_BYPASS)</a></h3>
-
-      
-      <p>
-      This method allocates a specific implementation of an xml interface. It is preferable to use
-      the supplied factory classes to create these objects so that the implementation can be
-      changed at runtime. See
-      </p>
-      <ul>
-         <li>javax.xml.parsers.DocumentBuilderFactory</li>
-         <li>javax.xml.parsers.SAXParserFactory</li>
-         <li>javax.xml.transform.TransformerFactory</li>
-         <li>org.w3c.dom.Document.create<i>XXXX</i></li>
-      </ul>
-      <p>for details.</p>
-      
-    
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-</td></tr></table>
-</body></html>
diff --git a/tools/findbugs/doc/buggy-sm.png b/tools/findbugs/doc/buggy-sm.png
deleted file mode 100644
index 7f5fc50..0000000
--- a/tools/findbugs/doc/buggy-sm.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/contributing.html b/tools/findbugs/doc/contributing.html
deleted file mode 100644
index a22b3ab..0000000
--- a/tools/findbugs/doc/contributing.html
+++ /dev/null
@@ -1,121 +0,0 @@
-<html>
-<head>
-<title>Contributing to FindBugs</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-
-<h1>Contributing to FindBugs</h1>
-
-<p> If you have a bug fix or feature enhancement you would like to contribute,
-we would be happy to consider it for inclusion.</p>
-
-<h2>Import FindBugs code as Eclipse projects</h2>
-
-<p>The preferred way to get the FindBugs source code and create the patch is to use Eclipse + SVN.
-You can easily import FindBugs code into Eclipse by following the steps described
-here: <a href="http://code.google.com/p/findbugs/source/browse/trunk/eclipsePlugin/doc/building_findbugsplugin.txt">Import Eclipse projects</a>
-. 
-</p>
-
-<h2>Preparing a patch</h2>
-
-<p> The best way to
-send an enhancement is to create a patch against the latest code
-in the FindBugs Subversion repository 
-at <a href="http://findbugs.googlecode.com/svn/trunk/">http://findbugs.googlecode.com/svn/trunk/</a>
-(those people who have been given commit priviledges should use 
-<a href="https://findbugs.googlecode.com/svn/trunk/">http<b>s</b>://findbugs.googlecode.com/svn/trunk/</a>).
-</p>
-
-<p>To create a patch from Eclipse, please right click the [findbugs] or [findBugsEclipsePlugin] project
-and choose [Team | Create Patch...] context menu.
-</p>
-
-<p> Please follow these guidelines when preparing your patch:</p>
-<ul>
-<li> <b>Use the same indentation style as the source file(s) you
-     are modifying</b>.&nbsp; In particular, please use tabs (not spaces)
-     to indent your code; one tab per indent level.
-<li> If at all possible, avoid making whitespace modifications.
-<li> Small patches are appreciated.
-<li> If you are submitting a new bug detector, please submit a small
-     standalone source file that contains an instance of the
-     kind of bug the detector looks for.
-</ul>
-
-<p> Following these guidelines makes it much easier for us
-to incorporate new code.
-
-<h2>How to submit a patch</h2>
-
-<p> Patches may be submitted through the
-<a href="http://sourceforge.net/tracker/?atid=614695&group_id=96405&func=browse">Patches</a> tracker on the
-<a href="http://sourceforge.net/projects/findbugs/">sourceforge project page</a>.
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</tr></table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/customers/ITAsoftware.png b/tools/findbugs/doc/customers/ITAsoftware.png
deleted file mode 100644
index 3ec79c0..0000000
--- a/tools/findbugs/doc/customers/ITAsoftware.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/customers/geoLocation.png b/tools/findbugs/doc/customers/geoLocation.png
deleted file mode 100644
index 0fe6ba8..0000000
--- a/tools/findbugs/doc/customers/geoLocation.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/customers/geoMap.png b/tools/findbugs/doc/customers/geoMap.png
deleted file mode 100644
index 0d58eef..0000000
--- a/tools/findbugs/doc/customers/geoMap.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/customers/glassfish.png b/tools/findbugs/doc/customers/glassfish.png
deleted file mode 100644
index 3ec28be..0000000
--- a/tools/findbugs/doc/customers/glassfish.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/customers/google.png b/tools/findbugs/doc/customers/google.png
deleted file mode 100644
index e42ab09..0000000
--- a/tools/findbugs/doc/customers/google.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/customers/logo_umd.png b/tools/findbugs/doc/customers/logo_umd.png
deleted file mode 100644
index 7d8ed11..0000000
--- a/tools/findbugs/doc/customers/logo_umd.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/customers/nsf.png b/tools/findbugs/doc/customers/nsf.png
deleted file mode 100644
index 98531a0..0000000
--- a/tools/findbugs/doc/customers/nsf.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/customers/sat4j.png b/tools/findbugs/doc/customers/sat4j.png
deleted file mode 100644
index 6454e21..0000000
--- a/tools/findbugs/doc/customers/sat4j.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/customers/sleepycat.png b/tools/findbugs/doc/customers/sleepycat.png
deleted file mode 100644
index 23911f3..0000000
--- a/tools/findbugs/doc/customers/sleepycat.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/customers/sun.png b/tools/findbugs/doc/customers/sun.png
deleted file mode 100644
index dc0cae7..0000000
--- a/tools/findbugs/doc/customers/sun.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/demo.html b/tools/findbugs/doc/demo.html
deleted file mode 100644
index 83ce7a3..0000000
--- a/tools/findbugs/doc/demo.html
+++ /dev/null
@@ -1,219 +0,0 @@
-<html>
-<head>
-<title>FindBugs&trade; 1.2 Demo and Results</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css" />
-
-</head>
-
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-<h1>
-FindBugs 1.2 demo and results
-</h1>
-
-<p>If you just want to try running FindBugs against your
-own code, you can
-<a href="http://findbugs.cs.umd.edu/demo/jnlp/findbugs.jnlp">run FindBugs</a> using Java Webstart.
-This will use our new gui under Java 1.5+ and our old gui under Java 1.4.
-The new gui provides a number of new features, but requires Java 1.5+.
-Both use exactly the same analysis engine.
-
-</p><p>This web page provides results of running FindBugs 1.2.0
-against several open source applications. We provide a summary
-of the number of bugs we found, as well as a generated HTML listing
-of the bugs and 
-a <a href="http://java.sun.com/products/javawebstart/">Java 
-WebStart</a> demo of the new GUI we've introduced in FindBugs version 1.1,
-displaying the warnings and the relevant source.
-
-
-</p><p>The applications and versions of them we report on
-are somewhat arbitrary. In some cases, they are release versions,
-in other cases nightly builds. We find lots of bugs in every large code
-base we examine; these applications are certainly not the worst we have seen.
-I have been allowed to confidentially examine the results of running FindBugs
-against several closed commercial code bases by well respected companies;
-the results I've seen there are not significantly different from
-what I've observed in open source code bases. 
-
-
-</p><p><em>Experimental details</em>: These results are from running
-FindBugs 1.2.0 at standard effort level. Our results do not include
-any low priority warnings or any warnings about vulnerabilities to 
-malicious code. Although we have (repeatedly) manually audited the results,
-we haven't manually filtered out false positives from these warnings,
-so that you can get a feeling for the quality of the warnings generated
-by FindBugs.
-</p><p>Some of the bugs contain audit comments: they are marked as to whether
-we thought the warning indicated a bug that should or must be fixed, or whether it was not, in fact, a bug.
-</p><p>In the webstart versions, we've only included the bugs for which
-we were able to identify source files. The number of lines of non-commenting source
-statements in the table below (KNCSS) is derived from the same files
-that we analyzed and in which we report bugs; we actually compute
-KNCSS from the classfiles, not the source files.
-
-</p><p><em>Vulnerability disclosure</em>: Thankfully, Java isn't C or C++. Dereferencing
-a null pointer or accessing outside the bounds of an array generates a runtime
-exception rather than a shell exploit. We do not believe that any of the
-warnings here represents a security vulnerability, although we have not audited
-them to verify that. These projects are all aware of the existence of
-FindBugs, and  FindBugs is already open source and available
-for use both by developers and attackers, we don't believe that making
-these results available constitutes a reckless disclosure.
-
-
-</p><p><em>Recommendations</em>: First, review the correctness warnings.
- We feel confident that developers
-would want to fix most of the high and medium priority correctness warnings we report.
-Once you've reviewed those,
-you might want to look at some of the other categories.  
-</p><p>
-In other categories,
-such as Bad practice and Dodgy code, we accept more false positives. You
-might decide that a pattern bug pattern isn't relevant for your code
-base (e.g.,  you never use Serialization for persistent storage,
-so you never  care about the fact that you didn't define a serializationUID),
-and even for the bug patterns relevant to your code base,
-perhaps only a minority will reflect problems serious enough to
-convince you to change your code.
-
-</p><p><em>Please be patient</em> The Web start  versions not only have to download the applications,
-	they need to download about 10 megabytes of data and source files. Please
-	be patient. Sorry we don't have a progress bar for the data and source download;
-	the ability to remotely download a data and source archive is a little bit of 
-	a hack. We've provided small versions of some of the data sets that include
-	only the correctness bugs and the source files containing those warnings. The small
-	datasets are about a quarter of the sizes of the full datasets.
-	</p>
-<p>
-</p><table border="2">
-<tr><th rowspan="2">Application</th><th colspan="2">Details</th><th colspan="2">Correctness bugs</th><th rowspan="2">Bad Practice</th><th rowspan="2">Dodgy</th><th rowspan="2">KNCSS
-</th></tr><tr><th>HTML</th><th>WebStart</th><th>NP bugs</th><th>Other
-</th></tr><tr><td align="right">Sun JDK 1.7.0-b12</td><td align="right">
-					<a href="http://findbugs.cs.umd.edu/demo/jdk7/index.html">All</a> 
-			</td><td align="right">
-					<a href="http://findbugs.cs.umd.edu/demo/jdk7/index.jnlp">All</a> 
-						<a href="http://findbugs.cs.umd.edu/demo/jdk7/small.jnlp">Small</a> 
-	</td><td align="right">68</td><td align="right">180</td><td align="right">954</td><td align="right">654</td><td align="right">597
-
-</td></tr><tr><td align="right">eclipse-SDK-3.3M7-solaris-gtk</td><td align="right">
-					<a href="http://findbugs.cs.umd.edu/demo/eclipse/index.html">All</a>
-			</td><td align="right">
-					<a href="http://findbugs.cs.umd.edu/demo/eclipse/index.jnlp">All</a>
-					<a href="http://findbugs.cs.umd.edu/demo/eclipse/small.jnlp">Small</a>
-	</td><td align="right">146</td><td align="right">259</td><td align="right">1,079</td><td align="right">643</td><td align="right">1,447
-
-</td></tr><tr><td align="right">netbeans-6_0-m8</td><td align="right">
-					<a href="http://findbugs.cs.umd.edu/demo/netbeans/index.html">All</a>
-			</td><td align="right">
-					<a href="http://findbugs.cs.umd.edu/demo/netbeans/index.jnlp">All</a>
-					<a href="http://findbugs.cs.umd.edu/demo/netbeans/small.jnlp">Small</a>
-	</td><td align="right">189</td><td align="right">305</td><td align="right">3,010</td><td align="right">1,112</td><td align="right">1,022
-
-</td></tr><tr><td align="right">glassfish-v2-b43</td><td align="right">
-					<a href="http://findbugs.cs.umd.edu/demo/glassfish/index.html">All</a>
-			</td><td align="right">
-					<a href="http://findbugs.cs.umd.edu/demo/glassfish/index.jnlp">All</a>
-					<a href="http://findbugs.cs.umd.edu/demo/glassfish/small.jnlp">Small</a>
-	</td><td align="right">146</td><td align="right">154</td><td align="right">964</td><td align="right">1,222</td><td align="right">2,176
-
-</td></tr><tr><td align="right">jboss-4.0.5</td><td align="right">
-					<a href="http://findbugs.cs.umd.edu/demo/jboss/index.html">All</a>
-			</td><td align="right">
-					<a href="http://findbugs.cs.umd.edu/demo/jboss/index.jnlp">All</a>
-					<a href="http://findbugs.cs.umd.edu/demo/jboss/small.jnlp">Small</a>
-	</td><td align="right">30</td><td align="right">57</td><td align="right">263</td><td align="right">214</td><td align="right">178
-
-</td></tr></table>
-<p><em>KNCSS</em>  - Thousands of lines of non-commenting source statements
-
-</p><h2>Bug categories</h2>
-<dl>
-<dt>Correctness bug
-</dt><dd>Probable bug - an apparent coding mistake
-            resulting in code that was probably not what the
-            developer intended. We strive for a low false positive rate.
-</dd><dt>Bad Practice
-</dt><dd>
-Violations of recommended and essential
-            coding practice. Examples include hash code and equals
-            problems, cloneable idiom, dropped exceptions,
-            serializable problems, and misuse of finalize.
-            We strive to make this analysis accurate,
-                although some groups may
-            not care about some of the bad practices.
-</dd><dt>Dodgy
-</dt><dd>
-Code that is confusing, anomalous, or
-            written in a way that leads itself to errors.
-            Examples include dead local stores, switch fall through,
-            unconfirmed casts, and redundant null check of value
-            known to be null.
-            More false positives accepted.
-            In previous versions of FindBugs, this category was known as Style.
-</dl>
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A></td></tr></table>
-
-</body>
-</html>
-
-
-
-
diff --git a/tools/findbugs/doc/downloads.html b/tools/findbugs/doc/downloads.html
deleted file mode 100644
index 28bd639..0000000
--- a/tools/findbugs/doc/downloads.html
+++ /dev/null
@@ -1,118 +0,0 @@
-<html>
-<head>
-<title>FindBugs Downloads</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-
-<h1>FindBugs downloads</h1>
-
-<p> This page contains links to downloads
-of FindBugs version 2.0.3,
-released on 17:16:15 EST, 22 November, 2013. Download links
-for all FindBugs versions and files
-are <a href="http://sourceforge.net/project/showfiles.php?group_id=96405">available
-on the sourceforge download page</a>.
-
-<ul>
-  <li>
-    FindBugs tool (standard version with command line, ant, and Swing interfaces)
-    <ul>
-      <li><a href="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3.tar.gz?download">findbugs-2.0.3.tar.gz</a></li>
-      <li><a href="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3.zip?download">findbugs-2.0.3.zip</a></li>
-      <li><a href="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3-source.zip?download">findbugs-2.0.3-source.zip</a></li>
-    </ul>
-  </li>
-  <li>
-    The following versions of FindBugs are pre-configured to disable <a href="updateChecking.html">checks for updated versions</a>
-    of FindBugs, and
-    the plugin that allows communication with the FindBugs community cloud is disabled by default.
-    Such configurations are appropriate in situations where it is important that no information about the use of FindBugs
-    be disclosed outside of the organization where it is used.
-    <ul>
-      <li><a href="http://prdownloads.sourceforge.net/findbugs/findbugs-noUpdateChecks-2.0.3.tar.gz?download">findbugs-2.0.3.tar.gz</a></li>
-      <li><a href="http://prdownloads.sourceforge.net/findbugs/findbugs-noUpdateChecks-2.0.3.zip?download">findbugs-2.0.3.zip</a></li>
-    </ul>
-  </li>
-  <li>Eclipse plugin for FindBugs version 2.0.3.20131122 (requires Eclipse 3.6 or later)
-    <ul>
-<li><a href="http://sourceforge.net/projects/findbugs/files/findbugs%20eclipse%20plugin/2.0.3/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122-15020.zip/download">edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122-15020.zip</a>
-<li><a href="http://sourceforge.net/projects/findbugs/files/findbugs%20eclipse%20plugin/2.0.3/eclipsePlugin-2.0.3.20131122-15020-source.zip/download">
-eclipsePlugin-2.0.3.20131122-15020-source.zip/download</a>
-    </ul>
-  </li>
-</ul>
-
-The Eclipse plugin may also be obtained from one of the FindBugs Eclipse plugin update sites:
-<ul>
-  <li><a href="http://findbugs.cs.umd.edu/eclipse">http://findbugs.cs.umd.edu/eclipse</a> update site for <b>official</b> releases</li>
-  <li><a href="http://findbugs.cs.umd.edu/eclipse-candidate">http://findbugs.cs.umd.edu/eclipse-candidate</a> update site for <b>candidate</b> releases and official releases</li>
-  <li><a href="http://findbugs.cs.umd.edu/eclipse-daily">http://findbugs.cs.umd.edu/eclipse-daily</a> update site for <b>all</b> releases, including developmental ones</li>
-</ul>
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</tr></table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/eclipse-filters-icon.png b/tools/findbugs/doc/eclipse-filters-icon.png
deleted file mode 100644
index 1ea0247..0000000
--- a/tools/findbugs/doc/eclipse-filters-icon.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/factSheet.html b/tools/findbugs/doc/factSheet.html
deleted file mode 100644
index 029cd18..0000000
--- a/tools/findbugs/doc/factSheet.html
+++ /dev/null
@@ -1,128 +0,0 @@
-<html>
-<head>
-<title>FindBugs&trade; Fact Sheet</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-
-<h1>FindBugs&trade; Fact Sheet</h1>
-
-<p> FindBugs looks for bugs in Java programs.&nbsp; It is based
-on the concept of <i>bug patterns</i>.&nbsp; A bug pattern is a code
-idiom that is often an error.&nbsp; Bug patterns arise for a variety
-of reasons:
-</p>
-
-<ul>
-<li> Difficult language features
-<li> Misunderstood API methods
-<li> Misunderstood invariants when code is modified during maintenance
-<li> Garden variety mistakes: typos, use of the wrong boolean operator
-</ul>
-
-<p> FindBugs uses <i>static analysis</i> to inspect Java bytecode
-for occurrences of bug patterns.&nbsp;
-Static analysis means that FindBugs can find bugs by simply inspecting
-a program's code: executing the program is not necessary.&nbsp;
-This makes FindBugs very easy to use: in general, you should be
-able to use it to look for bugs in your code within a few minutes of downloading it.&nbsp;
-FindBugs works by analyzing Java bytecode (compiled class files),
-so you don't even need the program's source code to use it.&nbsp;
-Because its analysis is
-sometimes imprecise, FindBugs can report <i>false warnings</i>,
-which are warnings that do not indicate real errors.&nbsp; 
-In practice, the rate of false warnings reported by FindBugs
-is less than 50%.
-</p>
-
-<p>
-FindBugs supports a plugin architecture allowing anyone to add new
-bug detectors.&nbsp; The <a href="publications.html">publications page</a>
-contains links to articles describing how to write a new detector
-for FindBugs.&nbsp; If you are familiar with Java bytecode
-you can write a new FindBugs detector in as little as a few minutes.
-</p>
-
-<p> FindBugs is free software, available under the terms of the
-<a href="http://www.gnu.org/copyleft/lesser.html">Lesser GNU Public License</a>.&nbsp;
-It is written in Java, and can be run with any virtual machine compatible
-with Sun's JDK 1.5.&nbsp; It can analyze programs written for any version
-of Java.&nbsp; FindBugs was originally developed by Bill Pugh and David Hovemeyer.&nbsp;
-It is maintained by  Bill Pugh, and
-a <a href="team.html">team of volunteers</a>.
-</p>
-
-<p> FindBugs uses <a href="http://jakarta.apache.org/bcel/">BCEL</a> to
-analyze Java bytecode.&nbsp;
-As of version 1.1, FindBugs also supports bug detectors written using
-the <a href="http://asm.objectweb.org/">ASM</a> bytecode framework.&nbsp;
-FindBugs uses <a href="http://dom4j.org/">dom4j</a>
-for XML manipulation.
-</p>
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</tr></table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/findbugs.css b/tools/findbugs/doc/findbugs.css
deleted file mode 100644
index e201695..0000000
--- a/tools/findbugs/doc/findbugs.css
+++ /dev/null
@@ -1,15 +0,0 @@
-BODY {
-    background: white;
-}
-
-A.plain {
-    text-decoration: none;
-}
-
-A.sidebar {
-    text-decoration: none;
-}
-
-A.sidebar:hover, A.sidebar:active {
-    text-decoration: underline;
-}
diff --git a/tools/findbugs/doc/findbugs2.html b/tools/findbugs/doc/findbugs2.html
deleted file mode 100644
index fc4066d..0000000
--- a/tools/findbugs/doc/findbugs2.html
+++ /dev/null
@@ -1,283 +0,0 @@
-<html>
-<head>
-<title>FindBugs 2&trade; - Find Bugs in Java Programs</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css" />
-
-</head>
-
-<body>
-
-    <table width="100%">
-        <tr>
-
-            
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-            <td align="left" valign="top">
-
-                <p></p>
-                <table>
-                    <tr>
-                        <td valign="center"><a href="http://findbugs.sourceforge.net/"><img src="buggy-sm.png" alt="FindBugs logo"
-                                border="0" /> </a></td>
-                        <td valign="center"><a href="http://www.umd.edu/"><img src="informal.png"
-                                alt="UMD logo" border="0" /> </a></td>
-                    </tr>
-                </table>
-
-                <h1>FindBugs 2</h1>
-
-                <p>This page describes the major changes in FindBugs 2. We are well aware that the documentation on
-                    the new features in FindBugs 2.0 have not kept up with the implementation. We will be working to
-                    improve the documentation, but don't want to hold up the release any longer to improve the
-                    documentation.</p>
-                <p>Anyone currently using FindBugs 1.3.9 should find FindBugs 2.0 to largely be a drop-in
-                    replacement that offers better accuracy and performance.</p>
-
-
-                <p>
-                    Also check out <a href="http://code.google.com/p/findbugs/w/list">http://code.google.com/p/findbugs/w/list</a>
-                    for more information about some recent features/changes in FindBugs.
-                </p>
-
-                <p>The major new features in FindBugs 2 are as follows:</p>
-                <ul>
-                    <li>Bug Rank - bugs are given a rank 1-20, and grouped into the categories scariest (rank 1-4),
-                        scary (rank 5-9), troubling (rank 10-14), and of concern (rank 15-20).
-                        <ul>
-                            <li>priority renamed confidence - many people were confused by the priority reported by
-                                FindBugs, and considered all HIGH priority issues to be important. To reflect the
-                                actually meaning of this attribute of issues, it has been renamed confidence. Issues of
-                                different bug patterns should be compared by there rank, not their confidence.</li>
-                        </ul>
-
-                    </li>
-                    <li><a href="#cloud">Cloud storage</a> - having a convent way for developers to share
-                        information about when an issue was first seen, and whether it is believed to be a serious
-                        problem, is important to successful and cost-effective deployment of static analysis in a large
-                        software project.</li>
-                    <li><a href="#updateChecks">update checks</a> - FindBugs will check for releases of new
-                        versions of FindBugs. Note: we leverage this capability to count the number of FindBugs users.
-                        These update checks can easily be disabled.</li>
-                    <li><a href="#plugins">Plugins</a> - FindBugs 2.0 makes it much easier to define plugins that
-                        provide various capabilities, and install these plugins either on a per user or per installation
-                        basis.</li>
-                    <li><code>fb</code> command - rather than using the rather haphazard collection of command line
-                        scripts developed over the years for running various FindBugs commands, you can now use just
-                        one: <code>fb</code>.
-                        <ul>
-                            <li><code>fb analyze</code> - invokes the FindBugs analysis</li>
-                            <li><code>fb gui</code> - launches the FindBugs GUI
-                            <li><code>fb list</code> - lists the issues from a FindBugs analysis file</li>
-                            <li><code>fb help</code> - lists the command available.</li>
-                        </ul>
-                            <p>
-                                Plugins can be used to extend the commands that can be invoked via
-                                <code>fb</code>.
-                            </p>
-                </li>
-                <li><a href="#newBugPatterns">New bug patterns and detectors</a>,
-                    and improved accuracy
-                </li>
-                <li><a href="#performance">Improved performance</a>: overall, we've seen an average 10%
-                        performance improvement over a large range of benchmarks, although a few users have experienced
-                        performance regressions we are still trying to understand.</li>
-                    <li id="guava">Guava support - working with Kevin Bourrillion, we have provided additional support for the
-                        <a href="http://code.google.com/p/guava-libraries/">Guava library</a>, recognizing many common
-                        misuse patterns.
-                    </li>
-                    <li id="jsr305">JSR-305 support - improved detection of problems identified by JSR-305 annotations. In
-                        particular, we've significantly improved both the accuracy and performance of the analysis of
-                        type qualifiers.</li>
-                </ul>
-
-                <h2 id="cloud">Cloud storage of issue evaluations</h2>
-                <p>For many years, you could store evaluations of FindBugs issues within the XML containing the
-                    analysis results. However, this approach did not work well for a team of distributed developers.
-                    Instead, we now provide a cloud based mechanism for storing this information. We are providing a
-                    free communal cloud (hostied by Google appengine) for storing evaluations of FindBugs issues. You
-                    can set up your own private cloud for storing issues, but at the moment this checking out a copy of
-                    FindBugs, making some modifications and building the cloud storage plugin from source. We hope to
-                    make it easier to have your own private cloud in FindBugs 2.0.1.</p>
-                <p>We have analyzed several large open source projects, and provide Java web start links to allow
-                    you to view the results. We'd be happy to work with projects to make the results available from a
-                    continuous build:</p>
-                <ul>
-                    <li><a href="http://findbugs.cs.umd.edu/cloud/jdk.jnlp">Sun's JDK 8</a></li>
-                    <li><a href="http://findbugs.cs.umd.edu/cloud/eclipse.jnlp">Eclipse 3.8</a></li>
-                    <li><a href="http://findbugs.cs.umd.edu/cloud/tomcat.jnlp">Apache Tomcat 7.0</a></li>
-                    <li><a href="http://findbugs.cs.umd.edu/cloud/intellij.jnlp">IntelliJ IDEA</a></li>
-                    <li><a href="http://findbugs.cs.umd.edu/cloud/jboss.jnlp">JBoss</a></li>
-                </ul>
-
-                <h2 id="updateChecks">FindBugs update checks</h2>
-                <p>
-                    FindBugs now checks to see if a new version of FindBugs or a plugin has been released. We make use
-                    of this check to collect statistics on the operating system, java version, locale and FindBugs entry
-                    point (e.g., ant, command line, GUI). <a href="updateChecking.html">More information is
-                        available</a>, including information about how to disable update checks if your organization has a
-                    policy against allowing the collection of such information. No information about the code being
-                    analyzed is reported.
-
-                </p>
-
-                <h2 id="plugins">Plugins</h2>
-                <p>FindBugs 2.0 makes it much easier to customize FindBugs with plugins.</p>
-                <p>FindBugs looks for plugins in two places: your personal home directory, and in FindBugs home
-                    (plugins installed in your home directory take precedence). In both places, it looks in two places:
-                    the plugin directory, which contains plugins that are enabled by default, and the optionalPlugin
-                    directory, which contains plugins that are disabled by default but can be enabled for a particular
-                    project.</p>
-                <p>The FindBugs project includes several plugins:</p>
-                <ul>
-                    <li><i>Cloud plugins</i>: These plugins provide ways to persist and share information about
-                        issues seen in an analysis (e.g., when was this issue first seen, and any evaluations as to
-                        whether this is harmless or a must fix issue, as well as comments about the issue from
-                        developers)
-                        <ul>
-                            <li><code>bugCollectionCloud</code> - stores issue evaluations in the XML. The way
-                                issue evaluations were always stored before FindBugs 2.0. Distributed in the
-                                optionalPlugin directory.</li>
-                            <li><code>findbugsCommunalCloud</code> Stores issue evaluations in the communal cloud
-                                hosted at findbugs.appspot.com. Distributed in the plugin directory.</li>
-                            <li><code>jdbcCloudClient</code> an older, deprecated cloud that stored information in
-                                an SQL database. Not distributed, most be built from source.</li>
-                        </ul></li>
-                    <li><code>noUpdateChecks</code> - Disables checks for updated versions and usage counting.
-                        Distributed in the optionalPlugin directory.</li>
-                    <li><code>poweruser</code> - provides a number of additional commands for the <code>fb</code>
-                        command. It is believed most of these commands are used by few people outside of the FindBugs
-                        development team. Distributed in the optionalPlugin directory.</li>
-                    <li><i>Bug filing plugins</i>: these plugins assist in the filing of FindBugs issues in built
-                        trackers. The bug filing framework is designed to be extensible to other bug filing systems. At
-                        the moment, these plugins are not supported, and must be built from source.
-                        <ul>
-                            <li><code>jira</code></li>
-                            <li><code>google code</code></li>
-                        </ul></li>
-                </ul>
-                <h2 id="performance">Performance Improvements/regressions</h2>
-                <p>
-                    In our own testing, <a href="performance.html">we've seen an overall improvement of 9% in
-                        FindBugs performance from 1.3.9 to 2.0.0, with the majority of benchmarks seeing improvements</a>. A
-                    few users have reported significant performance regressions and we are <a href="performance.html">asking
-                        for more information from anyone seeing significant performance regressions</a>.
-
-                </p>
-                <h2 id="newBugPatterns">New Bug patterns</h2>
-                <ul>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION">AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#BX_UNBOXING_IMMEDIATELY_REBOXED">BX_UNBOXING_IMMEDIATELY_REBOXED</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#CO_COMPARETO_RESULTS_MIN_VALUE">CO_COMPARETO_RESULTS_MIN_VALUE</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#DLS_DEAD_LOCAL_STORE_SHADOWS_FIELD">DLS_DEAD_LOCAL_STORE_SHADOWS_FIELD</a>
-                    </li>
-                    <li><a href="http://findbugs.sourceforge.net/bugDescriptions.html#DMI_ARGUMENTS_WRONG_ORDER">DMI_ARGUMENTS_WRONG_ORDER</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#DMI_BIGDECIMAL_CONSTRUCTED_FROM_DOUBLE">DMI_BIGDECIMAL_CONSTRUCTED_FROM_DOUBLE</a>
-                    </li>
-                    <li><a href="http://findbugs.sourceforge.net/bugDescriptions.html#DMI_DOH">DMI_DOH</a></li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#DMI_ENTRY_SETS_MAY_REUSE_ENTRY_OBJECTS">DMI_ENTRY_SETS_MAY_REUSE_ENTRY_OBJECTS</a>
-                    </li>
-                    <li><a href="http://findbugs.sourceforge.net/bugDescriptions.html#DM_DEFAULT_ENCODING">DM_DEFAULT_ENCODING</a>
-                    </li>
-                    <li><a href="http://findbugs.sourceforge.net/bugDescriptions.html#ICAST_INT_2_LONG_AS_INSTANT">ICAST_INT_2_LONG_AS_INSTANT</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#INT_BAD_COMPARISON_WITH_INT_VALUE">INT_BAD_COMPARISON_WITH_INT_VALUE</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#JML_JSR166_CALLING_WAIT_RATHER_THAN_AWAIT">JML_JSR166_CALLING_WAIT_RATHER_THAN_AWAIT</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#NP_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD">NP_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE">OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#PZ_DONT_REUSE_ENTRY_OBJECTS_IN_ITERATORS">PZ_DONT_REUSE_ENTRY_OBJECTS_IN_ITERATORS</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#RV_CHECK_COMPARETO_FOR_SPECIFIC_RETURN_VALUE">RV_CHECK_COMPARETO_FOR_SPECIFIC_RETURN_VALUE</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#RV_NEGATING_RESULT_OF_COMPARETO">RV_NEGATING_RESULT_OF_COMPARETO</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#RV_RETURN_VALUE_IGNORED_INFERRED">RV_RETURN_VALUE_IGNORED_INFERRED</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#SA_LOCAL_SELF_ASSIGNMENT_INSTEAD_OF_FIELD">SA_LOCAL_SELF_ASSIGNMENT_INSTEAD_OF_FIELD</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD">URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD">UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD">UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD</a>
-                    </li>
-                    <li><a
-                        href="http://findbugs.sourceforge.net/bugDescriptions.html#VA_FORMAT_STRING_USES_NEWLINE">VA_FORMAT_STRING_USES_NEWLINE</a>
-                    </li>
-                    <li><a href="http://findbugs.sourceforge.net/bugDescriptions.html#VO_VOLATILE_INCREMENT">VO_VOLATILE_INCREMENT</a>
-                    </li>
-                </ul>
-
-            </td>
-        </tr>
-    </table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/guaranteedDereference.png b/tools/findbugs/doc/guaranteedDereference.png
deleted file mode 100644
index d0676f0..0000000
--- a/tools/findbugs/doc/guaranteedDereference.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/index.html b/tools/findbugs/doc/index.html
deleted file mode 100644
index 111f6ef..0000000
--- a/tools/findbugs/doc/index.html
+++ /dev/null
@@ -1,340 +0,0 @@
-<html>
-<head>
-<title>FindBugs&trade; - Find Bugs in Java Programs</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css" />
-
-</head>
-
-<body>
-
-    <table width="100%">
-        <tr>
-
-            
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-            <td align="left" valign="top">
-
-                <p></p>
-                <table>
-                    <tr>
-                        <td valign="center"><a href="http://findbugs.sourceforge.net/"><img src="buggy-sm.png" alt="FindBugs logo"
-                                border="0" /> </a></td>
-                        <td valign="center"><a href="http://www.umd.edu/"><img src="informal.png"
-                                alt="UMD logo" border="0" /> </a></td>
-                    </tr>
-                </table>
-
-                <h1>FindBugs&trade; - Find Bugs in Java Programs</h1>
-
-                <p>
-                    This is the web page for FindBugs, a program which uses static analysis to look for bugs in Java
-                    code.&nbsp; It is free software, distributed under the terms of the <a
-                        href="http://www.gnu.org/licenses/lgpl.html">Lesser GNU Public License</a>. The name
-                    FindBugs&trade; and the <a href="buggy-sm.png">FindBugs logo</a> are trademarked by <a
-                        href="http://www.umd.edu">The University of Maryland</a>. FindBugs has been downloaded more than
-                    a million times.
-                </p>
-
-                <p>The current version of FindBugs is 2.0.3.</p>
-
-                <p>
-                    FindBugs requires JRE (or JDK) 1.5.0 or later to run.&nbsp; However, it can analyze programs
-                    compiled for any version of Java, from 1.0 to 1.7. Some classfiles compiled for Java 1.8 give 
-                    FindBugs problems, the next major release of FindBugs will handle Java 1.8 classfiles.
-                    
-                <p> The current version of FindBugs is 2.0.3,
-
-                    released on 17:16:15 EST, 22 November, 2013. <a href="reportingBugs.html">We are very interested in getting
-                        feedback on how to improve FindBugs</a>. File bug reports on <a
-                        href="http://sourceforge.net/tracker/?func=browse&amp;group_id=96405&amp;atid=614693"> our
-                        sourceforge bug tracker</a>
-                </p>
-                <p>The current version of FindBugs may encounter errors when analyzing 
-                Java 1.8 bytecode, due to changes in the classfile format. After FindBugs 2.0.3
-                is released, work will start on the next major release of FindBugs, which will
-                be able to analyze Java 1.8 (and will require Java 1.7 to compile and run).
-                
-
-                <p>
-                    <a href="#changes">Changes</a> | <a href="#talks">Talks</a> | <a href="#papers">Papers </a> | <a
-                        href="#sponsors">Sponsors</a> | <a href="#support">Support</a>
-                </p>
-
-                <h1>FindBugs 2.0.3 Release</h1>
-                <p>FindBugs 2.0.3 is intended to be a minor bug fix release over
-                FindBugs 2.0.2. Although than some improvements to existing bug detectors
-                and analysis engines, and a few new bug patterns, and some 
-                important bug fixes to the Eclipse plugin, no significant changes
-                should be observed. Consult the <a href="Changes.html">Change log</a>
-                for more details.</p>
-
-                <p>
-                    Also check out <a href="http://code.google.com/p/findbugs/w/list">http://code.google.com/p/findbugs/w/list</a>
-                    for more information about some recent features/changes in FindBugs.
-                </p>
-
-
-                <h3>
-                    <a href="findbugs2.html">Major changes in FindBugs 2.0 (from FindBugs 1.3.x)</a>
-                </h3>
-                <ul>
-                    <li><a href="findbugs2.html#cloud">FindBugs Communal cloud</a></li>
-                    <li><a href="findbugs2.html#updateChecks">checks for updated versions of FindBugs</a></li>
-                    <li><a href="findbugs2.html#plugins">Powerful plugin capabilities</a></li>
-                    <li><a href="findbugs2.html#newBugPatterns">new bug patterns</a>,
-                        including new/improved support for <a href="findbugs2.html#guava">Guava</a>
-                        and <a href="findbugs2.html#jsr305">JSR-305</a>
-                    </li>
-                    <li><a href="findbugs2.html#performance">improved performance</a></li>
-                </ul>
-
-
-                <h2>Ways to run FindBugs</h2>
-                <p>Here are various ways to run FindBugs. For plugins not supported by the FindBugs team, check to
-                    see what version of FindBugs they provide; it might take a little while for the plugins to update to
-                    FindBugs 2.0.</p>
-                <dl>
-                    <dt>Command line, ant, GUI</dt>
-                    <dd>Provided in FindBugs download</dd>
-                    <dt>
-                        <a href="http://www.eclipse.org/">Eclipse</a>
-                    </dt>
-                    <dd>
-                        Update site for Eclipse plugin: <a href="http://findbugs.cs.umd.edu/eclipse">http://findbugs.cs.umd.edu/eclipse</a>.
-                        Supported by the FindBugs project.
-                    </dd>
-                    <dt>
-                        <a href="http://maven.apache.org/">Maven</a>
-                    </dt>
-                    <dd>
-                        <a href="http://mojo.codehaus.org/findbugs-maven-plugin/">http://mojo.codehaus.org/findbugs-maven-plugin/</a>
-                    </dd>
-                    <dt>
-                        <a href="http://netbeans.org/">Netbeans</a>
-                    </dt>
-                    <dd>
-                        <a href="http://kenai.com/projects/sqe/pages/Home">SQE: Software Quality Environment</a>
-                    </dd>
-                    <dt><a href="https://wiki.jenkins-ci.org/display/JENKINS">Jenkins</a></dt>
-                    <dd> <a href="https://wiki.jenkins-ci.org/display/JENKINS/FindBugs+Plugin">Jenkins FindBugs Plugin</a>
-                 
-                    <dt>
-                        <a href="http://wiki.hudson-ci.org/display/HUDSON/Home">Hudson</a>
-                    </dt>
-                    <dd>
-                        <a href="http://wiki.hudson-ci.org/display/HUDSON/FindBugs+Plugin"> HUDSON FindBugs Plugin</a>
-                    </dd>
-                    <dt>
-                        <a href="http://www.jetbrains.com/idea/">IntelliJ</a>
-                    </dt>
-                    <dd>
-                        Several plugins, see <a href="http://code.google.com/p/findbugs/wiki/IntellijFindBugsPlugins">http://code.google.com/p/findbugs/wiki/IntellijFindBugsPlugins</a>
-                        for a description.
-
-                    </dd>
-                </dl>
-
-
-                <h1>New</h1>
-                <ul>
-
-                <li>jFormatString library republished at 
-                <a href="http://code.google.com/p/j-format-string">http://code.google.com/p/j-format-string</a>.
-                This is the library we use for compile time checking of format strings. It is separately published to
-                                 
-                <li>We're releasing FindBugs 2.0.3.
-
-                    Mostly small changes to address false positives, with one important fix to the Eclipse plugin
-                    to fix a problem that had prevented the plugin from running in some versions of Eclipse.
-                        Check the <a href="Changes.html">change log</a> for more details.
-
-                    <li>We've released <a href="findbugs2.html">FindBugs 2.0</a>
-                    </li>
-                    <li>FindBugs communal cloud and Java web start links:. We have analyzed several large open
-                        source projects, and provide Java web start links to allow you to view the results. We'd be
-                        happy to work with projects to make the results available from a continuous build:
-                        <p></p>
-                        <ul>
-                            <li><a href="http://findbugs.cs.umd.edu/cloud/jdk.jnlp">Sun's JDK 8</a></li>
-                            <li><a href="http://findbugs.cs.umd.edu/cloud/eclipse.jnlp">Eclipse 3.8</a></li>
-                            <li><a href="http://findbugs.cs.umd.edu/cloud/tomcat.jnlp">Apache Tomcat 7.0</a></li>
-                            <li><a href="http://findbugs.cs.umd.edu/cloud/intellij.jnlp">IntelliJ IDEA</a></li>
-                            <li><a href="http://findbugs.cs.umd.edu/cloud/jboss.jnlp">JBoss</a></li>
-                        </ul>
-                    </li>
-                </ul>
-
-
-
-                <h1>Experience with FindBugs</h1>
-                <ul>
-                <li><b>Google FindBugs Fixit</b>: Google has a tradition of <a
-                    href="http://www.nytimes.com/2007/10/21/jobs/21pre.html">engineering fixits</a>, special days where
-                    they try to get all of their engineers focused on some specific problem or technique for improving
-                    the systems at Google. A fixit might work to improve web accessibility, internal testing, removing
-                    TODO's from internal software, etc.
-
-                    <p>In 2009, Google held a global fixit for UMD's FindBugs tool a static analysis tool for
-                        finding coding mistakes in Java software. The focus of the fixit was to get feedback on the
-                        4,000 highest confidence issues found by FindBugs at Google, and let Google engineers decide
-                        which issues, if any, needed fixing.</p>
-                    <p>More than 700 engineers ran FindBugs from dozens of offices. More than 250 of them entered
-                        more than 8,000 reviews of the issues. A review is a classification of an issue as must-fix,
-                        should-fix, mostly-harmless, not-a-bug, and several other categories. More than 75% of the
-                        reviews classified issues as must fix, should fix or I will fix. Many of the scariest issues
-                        received more than 10 reviews each.</p>
-                    <p>Engineers have already submitted changes that made more than 1,100 of the 3,800 issues go
-                        away. Engineers filed more than 1,700 bug reports, of which 600 have already been marked as
-                        fixed Work continues on addressing the issues raised by the fixit, and on supporting the
-                        integration of FindBugs into the software development process at Google.</p>
-                    <p>The fixit at Google showcased new capabilities of FindBugs that provide a cloud computing /
-                        social networking backdrop. Reviews of issues are immediately persisted into a central store,
-                        where they can be seen by other developers, and FindBugs is integrated into the internal Google
-                        tools for filing and viewing bug reports and for viewing the version control history of source
-                        files. For the Fixit, FindBugs was configured in a mode where engineers could not see reviews
-                        from other engineers until they had entered their own; after the fixit, the configuration will
-                        be changed to a more open configuration where engineers can see reviews from others without
-                        having to provide their own review first. These capabilities have all been contributed to UMD's
-                        open source FindBugs tool, although a fair bit of engineering remains to prepare the
-                        capabilities for general release and make sure they can integrate into systems outside of
-                        Google. The new capabilities are expected to be ready for general release in Fall 2009.</p>
-                  </li>
-                </ul>
-
-                <h2>
-                    <a name="talks">Talks about FindBugs</a>
-                </h2>
-                <ul>
-                    <li>
-                        <a href="http://www.cs.umd.edu/~pugh/MistakesThatMatter.pdf">Mistakes That Matter</a>, JavaOne,
-                        2009
-                    </li>
-                    <li><a href="http://youtu.be/jflQSFhYTEo?hd=1">Youtube video</a> showing of demo
-                        of our 2.0 Eclipse plugin (5 minutes)</li>
-                    <li><a href="http://findbugs.cs.umd.edu/talks/findbugs.mov">Quicktime movie</a> showing of demo
-                        of our new GUI to view some of the null pointer bugs in Eclipse (Big file warning: 23 Megabytes)</li>
-                    <li><a href="http://findbugs.cs.umd.edu/talks/JavaOne2007-TS2007.pdf">JavaOne 2007 talk on
-                            Improving Software Quality Using Static Analysis</a></li>
-                    <li><a href="http://findbugs.cs.umd.edu/talks/fb-sdbp-2006.pdf">Talk</a> Bill Pugh gave at <a
-                        href="http://www.sdexpo.com/2006/sdbp/">SD Best Practices</a>, Sept 14th (more of a handle on
-                        tutorial about using FindBugs)</li>
-                    <li><a href="http://findbugs.cs.umd.edu/talks/fb-Sept1213-2006.pdf">Talk</a> Bill Pugh gave at
-                        <a href="http://itasoftware.com/">ITA Software</a> and <a href="http://www.csail.mit.edu/">MIT</a>,
-                        Sept 12th and 13th (more of a research focus)</li>
-                    <li><a href="http://video.google.com/videoplay?docid=-8150751070230264609">Video of talk</a>
-                        Bill Pugh gave at <a href="http://www.google.com">Google</a>, July 6th, 2006</li>
-                    <li><a href="http://javaposse.com/index.php?post_id=95780">Java Posse podcast interview
-                            with Bill Pugh and Brian Goetz</a></li>
-                </ul>
-                <h2>
-                    <a name="papers">Papers about FindBugs</a>
-                </h2>
-                <ul>
-                    <li><a href="http://findbugs.cs.umd.edu/papers/MoreNullPointerBugs07.pdf">Finding More Null
-                            Pointer Bugs, But Not Too Many</a>, by <a href="http://faculty.ycp.edu/~dhovemey/">David
-                            Hovemeyer</a>, York College of Pennsylvania and <a href="http://www.cs.umd.edu/~pugh/">William
-                            Pugh</a>, Univ. of Maryland, <a href="http://paste07.cs.washington.edu/">7th ACM
-                            SIGPLAN-SIGSOFT Workshop on Program Analysis for Software Tools and Engineering</a>, June, 2007</li>
-                    <li><a href="http://findbugs.cs.umd.edu/papers/FindBugsExperiences07.pdf">Evaluating Static
-                            Analysis Defect Warnings On Production Software,</a> <a href="http://www.cs.umd.edu/~nat/">Nathaniel
-                            Ayewah</a> and <a href="http://www.cs.umd.edu/~pugh/">William Pugh</a>, Univ. of Maryland, and
-                            J. David Morgenthaler, John Penix and YuQian Zhou, Google, Inc., <a
-                            href="http://paste07.cs.washington.edu/">7th ACM SIGPLAN-SIGSOFT Workshop on Program
-                                Analysis for Software Tools and Engineering</a>, June, 2007
-                    </li>
-                </ul>
-
-                <h1>
-                    <a name="sponsors">Contributors and Sponsors</a>
-                </h1>
-                <p>
-                    The <a href="team.html">current development team</a> consists of <a
-                        href="http://www.cs.umd.edu/~pugh">Bill Pugh</a> and <a
-                        href="http://andrei.gmxhome.de/privat.html">Andrey Loskutov</a>.
-                </p>
-                <p>The most recent funding for FindBugs comes from a Google Faculty Research Awards.</p>
-                <h2>
-                    <a name="support">Additional Support</a>
-                </h2>
-                <p>
-                    Numerous <a =href="team.html">people</a> have made significant contributions to the FindBugs
-                    project, including founding work by <a href="http://goose.ycp.edu/~dhovemey/">David Hovemeyer</a>
-                    and the web cloud infrastructure by Keith Lea.
-                </p>
-                <p>
-                    YourKit is kindly supporting open source projects with its full-featured Java Profiler. YourKit, LLC
-                    is creator of innovative and intelligent tools for profiling Java and .NET applications. Take a look
-                    at YourKit's leading software products: <a href="http://www.yourkit.com/java/profiler/index.jsp">YourKit
-                        Java Profiler</a> and <a href="http://www.yourkit.com/.net/profiler/index.jsp">YourKit .NET
-                        Profiler</a>.
-                </p>
-                <p>
-                    The FindBugs project also uses <a href="http://www.atlassian.com/software/fisheye/">FishEye</a> and
-                    <a href="http://www.atlassian.com/software/clover/">Clover</a>, which are generously provided by <a
-                        href="http://www.cenqua.com/">Cenqua/Atlassian</a>.
-                </p>
-                <p>
-                    Additional financial support for the FindBugs project was provided by <a href="http://www.nsf.gov">National
-                        Science Foundation</a> grants ASC9720199 and CCR-0098162,
-                </p>
-                <p>Any opinions, findings and conclusions or recommendations expressed in this material are those of
-                    the author(s) and do not necessarily reflect the views of the National Science Foundation (NSF).
-                  </p>
-                    
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-            </td>
-        </tr>
-    </table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/infiniteRecursiveLoops.png b/tools/findbugs/doc/infiniteRecursiveLoops.png
deleted file mode 100644
index 7cacd6b..0000000
--- a/tools/findbugs/doc/infiniteRecursiveLoops.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/informal.png b/tools/findbugs/doc/informal.png
deleted file mode 100644
index c8ba6b3..0000000
--- a/tools/findbugs/doc/informal.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/ja/manual/acknowledgments.html b/tools/findbugs/doc/ja/manual/acknowledgments.html
deleted file mode 100644
index 744ee58..0000000
--- a/tools/findbugs/doc/ja/manual/acknowledgments.html
+++ /dev/null
@@ -1,123 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;14&#31456; &#35613;&#36766;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="license.html" title="&#31532;13&#31456; &#12521;&#12452;&#12475;&#12531;&#12473;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;14&#31456; &#35613;&#36766;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="license.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;</td></tr></table><hr></div><div class="chapter" title="&#31532;14&#31456; &#35613;&#36766;"><div class="titlepage"><div><div><h2 class="title"><a name="acknowledgments"></a>&#31532;14&#31456; &#35613;&#36766;</h2></div></div></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="sect1"><a href="acknowledgments.html#d0e3438">1. &#36002;&#29486;&#32773;</a></span></dt><dt><span class="sect1"><a href="acknowledgments.html#d0e3561">2. &#20351;&#29992;&#12375;&#12390;&#12356;&#12427;&#12477;&#12501;&#12488;&#12454;&#12455;&#12450;</a></span></dt></dl></div><div class="sect1" title="1. &#36002;&#29486;&#32773;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3438"></a>1. &#36002;&#29486;&#32773;</h2></div></div></div><p><span class="application">FindBugs</span> was originally written by Bill Pugh (<code class="email">&lt;<a class="email" href="mailto:pugh@cs.umd.edu">pugh@cs.umd.edu</a>&gt;</code>).
-David Hovemeyer (<code class="email">&lt;<a class="email" href="mailto:daveho@cs.umd.edu">daveho@cs.umd.edu</a>&gt;</code>) implemented some of the
-detectors, added the Swing GUI, and is a co-maintainer.</p><p>Mike Fagan (<code class="email">&lt;<a class="email" href="mailto:mfagan@tde.com">mfagan@tde.com</a>&gt;</code>) contributed the <span class="application">Ant</span> build script,
-the <span class="application">Ant</span> task, and several enhancements and bug fixes to the GUI.</p><p>Germano Leichsenring contributed Japanese translations of the bug
-summaries.</p><p>David Li contributed the Emacs bug report format.</p><p>Peter D. Stout contributed recursive detection of Class-Path
-attributes in analyzed Jar files, German translations of
-text used in the Swing GUI, and other fixes.</p><p>Peter Friese wrote the <span class="application">FindBugs</span> Eclipse plugin.</p><p>Rohan Lloyd contributed several Mac OS X enhancements,
-bug detector improvements,
-and maintains the Fink package for <span class="application">FindBugs</span>.</p><p>Hiroshi Okugawa translated the <span class="application">FindBugs</span> manual and
-more of the bug summaries into Japanese.</p><p>Phil Crosby enhanced the Eclipse plugin to add a view
-to display the bug details.</p><p>Dave Brosius fixed a number of bugs, added user preferences
-to the Swing GUI, improved several bug detectors, and
-contributed the string concatenation detector.</p><p>Thomas Klaeger contributed a number of bug fixes and
-bug detector improvements.</p><p>Andrei Loskutov made a number of improvements to the
-Eclipse plugin.</p><p>Brian Goetz contributed a major refactoring of the
-visitor classes to improve readability and understandability.</p><p> Pete Angstadt fixed several problems in the Swing GUI.</p><p>Francis Lalonde provided a task resource file for the
-FindBugs Ant task.</p><p>Garvin LeClaire contributed support for output in
-Xdocs format, for use by Maven.</p><p>Holger Stenzhorn contributed improved German translations of items
-in the Swing GUI.</p><p>Juha Knuutila contributed Finnish translations of items
-in the Swing GUI.</p><p>Tanel Lebedev contributed Estonian translations of items
-in the Swing GUI.</p><p>Hanai Shisei (ruimo) contributed full Japanese translations of
-bug messages, and text used in the Swing GUI.</p><p>David Cotton contributed Fresh translations for bug
-messages and for the Swing GUI.</p><p>Michael Tamm contributed support for the "errorProperty" attribute
-in the Ant task.</p><p>Thomas Kuehne improved the German translation of the Swing GUI.</p><p>Len Trigg improved source file support for the Emacs output mode.</p><p>Greg Bentz provided a fix for the hashcode/equals detector.</p><p>K. Hashimoto contributed internationalization fixes and several other
-    bug fixes.</p><p>
-    Glenn Boysko contributed support for ignoring specified local
-    variables in the dead local store detector.
-</p><p>
-    Jay Dunning contributed a detector to find equality comparisons
-    of floating-point values, and overhauled the analysis summary
-    report and its representation in the saved XML format.
-</p><p>
-    Olivier Parent contributed updated French translations for bug descriptions and
-    Swing GUI.
-</p><p>
-    Chris Nappin contributed the <code class="filename">plain.xsl</code>
-    stylesheet.
-</p><p>
-    Etienne Giraudy contributed the <code class="filename">fancy.xsl</code> and  <code class="filename">fancy-hist.xsl</code>
-    stylesheets, and made improvements to the <span class="command"><strong>-xml:withMessages</strong></span>
-    option.
-</p><p>
-    Takashi Okamoto fixed bugs in the project preferences dialog
-    in the Eclipse plugin, and contributed to its internationalization and localization.
-</p><p>Thomas Einwaller fixed bugs in the project preferences dialog in the Eclipse plugin.</p><p>Jeff Knox contributed support for the warningsProperty attribute
-in the Ant task.</p><p>Peter Hendriks extended the Eclipse plugin preferences,
-and fixed a bug related to renaming the Eclipse plugin ID.</p><p>Mark McKay contributed an Ant task to launch the findbugs frame.</p><p>Dieter von Holten (dvholten) contributed
-some German improvements to findbugs_de.properties.</p><p>If you have contributed to <span class="application">FindBugs</span>, but aren't mentioned above,
-please send email to <code class="email">&lt;<a class="email" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a>&gt;</code> (and also accept
-our humble apologies).</p></div><div class="sect1" title="2. &#20351;&#29992;&#12375;&#12390;&#12356;&#12427;&#12477;&#12501;&#12488;&#12454;&#12455;&#12450;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3561"></a>2. &#20351;&#29992;&#12375;&#12390;&#12356;&#12427;&#12477;&#12501;&#12488;&#12454;&#12455;&#12450;</h2></div></div></div><p><span class="application">FindBugs</span> &#12399;&#12289;&#12356;&#12367;&#12388;&#12363;&#12398;&#12458;&#12540;&#12503;&#12531;&#12477;&#12540;&#12473;&#12477;&#12501;&#12488;&#12454;&#12455;&#12450;&#12497;&#12483;&#12465;&#12540;&#12472;&#12434;&#20351;&#29992;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#12371;&#12428;&#12425;&#12364;&#12394;&#12369;&#12428;&#12400;&#12289; <span class="application">FindBugs</span> &#12398;&#38283;&#30330;&#12399;&#12289;&#12424;&#12426;&#19968;&#23652;&#22256;&#38627;&#12394;&#12418;&#12398;&#12395;&#12394;&#12387;&#12383;&#12371;&#12392;&#12391;&#12375;&#12423;&#12358;&#12290;</p><div class="sect2" title="2.1. BCEL"><div class="titlepage"><div><div><h3 class="title"><a name="d0e3571"></a>2.1. BCEL</h3></div></div></div><p><span class="application">FindBugs</span> includes software developed by the Apache Software Foundation
-(<a class="ulink" href="http://www.apache.org/" target="_top">http://www.apache.org/</a>).
-Specifically, it uses the <a class="ulink" href="http://jakarta.apache.org/bcel/" target="_top">Byte Code
-Engineering Library</a>.</p></div><div class="sect2" title="2.2. ASM"><div class="titlepage"><div><div><h3 class="title"><a name="d0e3584"></a>2.2. ASM</h3></div></div></div><p><span class="application">FindBugs</span> uses the <a class="ulink" href="http://asm.objectweb.org/" target="_top">ASM</a>
-bytecode framework, which is distributed under the following license:</p><div class="blockquote"><blockquote class="blockquote"><p>
-Copyright (c) 2000-2005 INRIA, France Telecom
-All rights reserved.
-</p><p>
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-</p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>
-   Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-  </p></li><li class="listitem"><p>
-   Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-  </p></li><li class="listitem"><p>
-   Neither the name of the copyright holders nor the names of its
-   contributors may be used to endorse or promote products derived from
-   this software without specific prior written permission.
-  </p></li></ol></div><p>
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
-</p></blockquote></div></div><div class="sect2" title="2.3. DOM4J"><div class="titlepage"><div><div><h3 class="title"><a name="d0e3611"></a>2.3. DOM4J</h3></div></div></div><p><span class="application">FindBugs</span> uses <a class="ulink" href="http://dom4j.org" target="_top">DOM4J</a>, which is
-distributed under the following license:</p><div class="blockquote"><blockquote class="blockquote"><p>
-Copyright 2001 (C) MetaStuff, Ltd. All Rights Reserved.
-</p><p>
-Redistribution and use of this software and associated documentation
-("Software"), with or without modification, are permitted provided that
-the following conditions are met:
-</p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>
-   Redistributions of source code must retain copyright statements and
-   notices. Redistributions must also contain a copy of this document.
-  </p></li><li class="listitem"><p>
-   Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-  </p></li><li class="listitem"><p>
-   The name "DOM4J" must not be used to endorse or promote products
-   derived from this Software without prior written permission
-   of MetaStuff, Ltd. For written permission, please contact
-   <code class="email">&lt;<a class="email" href="mailto:dom4j-info@metastuff.com">dom4j-info@metastuff.com</a>&gt;</code>.
-  </p></li><li class="listitem"><p>
-   Products derived from this Software may not be called "DOM4J" nor may
-   "DOM4J" appear in their names without prior written permission of
-   MetaStuff, Ltd. DOM4J is a registered trademark of MetaStuff, Ltd.
-  </p></li><li class="listitem"><p>
-   Due credit should be given to the DOM4J Project (<a class="ulink" href="http://dom4j.org/" target="_top">http://dom4j.org/</a>).
-  </p></li></ol></div><p>
-THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``AS IS''
-AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL METASTUFF, LTD. OR ITS
-CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-</p></blockquote></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="license.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;</td></tr><tr><td width="40%" align="left" valign="top">&#31532;13&#31456; &#12521;&#12452;&#12475;&#12531;&#12473;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/analysisprops.html b/tools/findbugs/doc/ja/manual/analysisprops.html
deleted file mode 100644
index d4cdc3f..0000000
--- a/tools/findbugs/doc/ja/manual/analysisprops.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;9&#31456; &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="filter.html" title="&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;"><link rel="next" href="annotations.html" title="&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;9&#31456; &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="filter.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="annotations.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;9&#31456; &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;"><div class="titlepage"><div><div><h2 class="title"><a name="analysisprops"></a>&#31532;9&#31456; &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;</h2></div></div></div><p><span class="application">FindBugs</span> &#12399;&#20998;&#26512;&#12377;&#12427;&#22580;&#21512;&#12395;&#12356;&#12367;&#12388;&#12363;&#12398;&#35251;&#28857;&#12434;&#25345;&#12387;&#12390;&#12356;&#12414;&#12377;&#12290;&#12381;&#12375;&#12390;&#12289;&#35251;&#28857;&#12434;&#12459;&#12473;&#12479;&#12510;&#12452;&#12474;&#12375;&#12390;&#23455;&#34892;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12471;&#12473;&#12486;&#12512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12434;&#20351;&#12387;&#12390;&#12289;&#12381;&#12428;&#12425;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;&#12371;&#12398;&#31456;&#12391;&#12399;&#12289;&#20998;&#26512;&#12458;&#12503;&#12471;&#12519;&#12531;&#12398;&#35373;&#23450;&#26041;&#27861;&#12434;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;</p><p>&#20998;&#26512;&#12458;&#12503;&#12471;&#12519;&#12531;&#12398;&#20027;&#12394;&#30446;&#30340;&#12399;&#12289; 2 &#12388;&#12354;&#12426;&#12414;&#12377;&#12290;1 &#30058;&#30446;&#12399;&#12289; <span class="application">FindBugs</span> &#12395;&#23550;&#12375;&#12390;&#20998;&#26512;&#12373;&#12428;&#12427;&#12450;&#12503;&#12522;&#12465;&#12540;&#12471;&#12519;&#12531;&#12398;&#12513;&#12477;&#12483;&#12489;&#12398;&#24847;&#21619;&#12434;&#20253;&#12360;&#12427;&#12371;&#12392;&#12391;&#12377;&#12290;&#12381;&#12358;&#12377;&#12427;&#12371;&#12392;&#12391; <span class="application">FindBugs</span> &#12364;&#12424;&#12426;&#27491;&#30906;&#12394;&#32080;&#26524;&#12434;&#20986;&#12377;&#12371;&#12392;&#12364;&#12391;&#12365;&#12289;&#35492;&#26908;&#20986;&#12434;&#28187;&#12425;&#12377;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;2 &#30058;&#30446;&#12395;&#12289;&#20998;&#26512;&#12434;&#34892;&#12358;&#12395;&#24403;&#12383;&#12426;&#12381;&#12398;&#31934;&#24230;&#12434;&#35373;&#23450;&#12391;&#12365;&#12427;&#12424;&#12358;&#12395;&#12377;&#12427;&#12371;&#12392;&#12391;&#12377;&#12290;&#20998;&#26512;&#12398;&#31934;&#24230;&#12434;&#33853;&#12392;&#12377;&#12371;&#12392;&#12391;&#12289;&#12513;&#12514;&#12522;&#20351;&#29992;&#37327;&#12392;&#20998;&#26512;&#26178;&#38291;&#12434;&#28187;&#12425;&#12377;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12383;&#12384;&#12375;&#12289;&#26412;&#24403;&#12398;&#12496;&#12464;&#12434;&#35211;&#36867;&#12375;&#12383;&#12426;&#12289;&#35492;&#26908;&#20986;&#12398;&#25968;&#12364;&#22679;&#12360;&#12427;&#12392;&#12356;&#12358;&#20195;&#20767;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p><p>&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531; <span class="command"><strong>-property</strong></span> &#12434;&#20351;&#12387;&#12390;&#12289;&#20998;&#26512;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#35373;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#27425;&#12395;&#12289;&#20363;&#12434;&#31034;&#12375;&#12414;&#12377;:</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>findbugs -textui -property "cfg.noprune=true" <em class="replaceable"><code>myApp.jar</code></em></strong></span>
-</pre><p>
-</p><p>&#35373;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12427;&#20998;&#26512;&#12458;&#12503;&#12471;&#12519;&#12531;&#12398;&#19968;&#35239;&#12434; <a class="xref" href="analysisprops.html#analysisproptable" title="&#34920;9.1 &#35373;&#23450;&#21487;&#33021;&#12394;&#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;">&#34920;9.1&#12300;&#35373;&#23450;&#21487;&#33021;&#12394;&#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12301;</a> &#12395;&#31034;&#12375;&#12414;&#12377;&#12290;</p><div class="table"><a name="analysisproptable"></a><p class="title"><b>&#34920;9.1 &#35373;&#23450;&#21487;&#33021;&#12394;&#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;</b></p><div class="table-contents"><table summary="&#35373;&#23450;&#21487;&#33021;&#12394;&#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#21517;</th><th align="left">&#35373;&#23450;&#20516;</th><th align="left">&#30446;&#30340;</th></tr></thead><tbody><tr><td align="left">findbugs.assertionmethods</td><td align="left">&#12467;&#12531;&#12510;&#21306;&#20999;&#12426;&#12398;&#23436;&#20840;&#20462;&#39166;&#12513;&#12477;&#12483;&#12489;&#21517;&#12522;&#12473;&#12488; : &#20363;&#12289; "com.foo.MyClass.checkAssertion"</td><td align="left">&#12371;&#12398;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12395;&#12399;&#12289;&#12503;&#12525;&#12464;&#12521;&#12512;&#12364;&#27491;&#12375;&#12356;&#12371;&#12392;&#12434;&#12481;&#12455;&#12483;&#12463;&#12377;&#12427;&#12383;&#12417;&#12395;&#20351;&#12431;&#12428;&#12427;&#12513;&#12477;&#12483;&#12489;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12371;&#12428;&#12425;&#12398;&#12513;&#12477;&#12483;&#12489;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289; &#12481;&#12455;&#12483;&#12463;&#12513;&#12477;&#12483;&#12489;&#12391;&#30906;&#35469;&#12375;&#12383;&#20516;&#12395;&#23550;&#12377;&#12427; null &#21442;&#29031;&#12450;&#12463;&#12475;&#12473;&#12487;&#12451;&#12486;&#12463;&#12479;&#12398;&#35492;&#26908;&#20986;&#12434;&#22238;&#36991;&#12391;&#12365;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">findbugs.de.comment</td><td align="left">true &#12414;&#12383;&#12399; false</td><td align="left">true &#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289; DroppedException (&#28961;&#35222;&#12373;&#12428;&#12383;&#20363;&#22806;) &#12487;&#12451;&#12486;&#12463;&#12479;&#12399;&#31354;&#12398; catch &#12502;&#12525;&#12483;&#12463; &#12395;&#12467;&#12513;&#12531;&#12488;&#12364;&#28961;&#12356;&#12363;&#25506;&#12375;&#12414;&#12377;&#12290;&#12381;&#12375;&#12390;&#12289;&#12467;&#12513;&#12531;&#12488;&#12364;&#12415;&#12388;&#12363;&#12387;&#12383;&#22580;&#21512;&#12395;&#12399;&#35686;&#21578;&#12364;&#22577;&#21578;&#12373;&#12428;&#12414;&#12379;&#12435;&#12290;</td></tr><tr><td align="left">findbugs.maskedfields.locals</td><td align="left">true &#12414;&#12383;&#12399; false</td><td align="left">true &#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#12501;&#12451;&#12540;&#12523;&#12489;&#12434;&#38560;&#34109;&#12375;&#12390;&#12356;&#12427;&#12525;&#12540;&#12459;&#12523;&#22793;&#25968;&#12395;&#23550;&#12375;&#12390;&#20778;&#20808;&#24230;(&#20302;)&#12398;&#35686;&#21578;&#12364;&#30330;&#34892;&#12373;&#12428;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12399;&#12289; false &#12391;&#12377;&#12290;</td></tr><tr><td align="left">findbugs.nullderef.assumensp</td><td align="left">true &#12414;&#12383;&#12399; false</td><td align="left">&#20351;&#29992;&#12373;&#12428;&#12414;&#12379;&#12435;&#12290; (&#24847;&#22259; : true &#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;null &#21442;&#29031;&#12450;&#12463;&#12475;&#12473;&#12487;&#12451;&#12486;&#12463;&#12479;&#12399;&#12513;&#12477;&#12483;&#12489;&#12363;&#12425;&#12398;&#25147;&#12426;&#20516;&#12289;&#12414;&#12383;&#12399;&#12289;&#12513;&#12477;&#12483;&#12489;&#12395;&#21463;&#12369;&#28193;&#12373;&#12428;&#12427;&#24341;&#25968;&#12434; null &#12391;&#12354;&#12427;&#12392;&#20206;&#23450;&#12375;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12399;&#12289; false &#12391;&#12377;&#12290;&#12371;&#12398;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12434;&#26377;&#21177;&#12395;&#12377;&#12427;&#12392;&#12289;&#22823;&#37327;&#12398;&#35492;&#26908;&#20986;&#12364;&#29983;&#25104;&#12373;&#12428;&#12427;&#12391;&#12354;&#12429;&#12358;&#12371;&#12392;&#12395;&#27880;&#24847;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;)</td></tr><tr><td align="left">findbugs.refcomp.reportAll</td><td align="left">true &#12414;&#12383;&#12399; false</td><td align="left">true &#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;  == &#12362;&#12424;&#12403; != &#28436;&#31639;&#23376;&#12434;&#20351;&#12387;&#12390;&#12356;&#12427;&#30097;&#12431;&#12375;&#12356;&#21442;&#29031;&#27604;&#36611;&#12364;&#12377;&#12409;&#12390;&#22577;&#21578;&#12373;&#12428;&#12414;&#12377;&#12290; false &#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#21516;&#27096;&#12398;&#35686;&#21578;&#12399; 1 &#12513;&#12477;&#12483;&#12489;&#12395;&#12388;&#12365; 1 &#12388;&#12375;&#12363;&#30330;&#34892;&#12373;&#12428;&#12414;&#12379;&#12435;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12399;&#12289; false &#12391;&#12377;&#12290;</td></tr><tr><td align="left">findbugs.sf.comment</td><td align="left">true &#12414;&#12383;&#12399; false</td><td align="left">true &#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289; SwitchFallthrough &#12487;&#12451;&#12486;&#12463;&#12479;&#12399;&#12477;&#12540;&#12473;&#12467;&#12540;&#12489;&#12395;&#12300;fall&#12301;&#12414;&#12383;&#12399;&#12300;nobreak&#12301;&#12392;&#12356;&#12358;&#21336;&#35486;&#12434;&#21547;&#12435;&#12384;&#12467;&#12513;&#12531;&#12488;&#12434;&#35352;&#36617;&#12375;&#12390;&#12356;&#12394;&#12356; case&#12521;&#12505;&#12523; &#12395;&#38480;&#12426;&#35686;&#21578;&#12434;&#22577;&#21578;&#12375;&#12414;&#12377;&#12290;(&#12371;&#12398;&#27231;&#33021;&#12364;&#27491;&#12375;&#12367;&#21205;&#20316;&#12377;&#12427;&#12383;&#12417;&#12395;&#12399;&#12289;&#27491;&#30906;&#12394;&#12477;&#12540;&#12473;&#12497;&#12473;&#12364;&#24517;&#35201;&#12391;&#12377;&#12290;) &#12371;&#12428;&#12395;&#12424;&#12426;&#12289;&#24847;&#22259;&#30340;&#12391;&#12399;&#12394;&#12356; switch &#25991;&#12398; fallthrough &#12434;&#30330;&#35211;&#12375;&#26131;&#12367;&#12394;&#12426;&#12414;&#12377;&#12290;</td></tr></tbody></table></div></div><br class="table-break"></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="filter.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="annotations.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/annotations.html b/tools/findbugs/doc/ja/manual/annotations.html
deleted file mode 100644
index 9a44cc6..0000000
--- a/tools/findbugs/doc/ja/manual/annotations.html
+++ /dev/null
@@ -1,67 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="analysisprops.html" title="&#31532;9&#31456; &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;"><link rel="next" href="rejarForAnalysis.html" title="&#31532;11&#31456; rejarForAnalysis &#12398;&#20351;&#29992;&#26041;&#27861;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="analysisprops.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="rejarForAnalysis.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;"><div class="titlepage"><div><div><h2 class="title"><a name="annotations"></a>&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;</h2></div></div></div><p><span class="application">FindBugs</span> &#12399;&#12356;&#12367;&#12388;&#12363;&#12398;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#12469;&#12509;&#12540;&#12488;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#38283;&#30330;&#32773;&#12398;&#24847;&#22259;&#12434;&#26126;&#30906;&#12395;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289; FindBugs &#12399;&#12424;&#12426;&#30340;&#30906;&#12395;&#35686;&#21578;&#12434;&#30330;&#34892;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#20351;&#29992;&#12377;&#12427;&#12383;&#12417;&#12395;&#12399; Java 5 &#12364;&#24517;&#35201;&#12391;&#12354;&#12426;&#12289; annotations.jar &#12362;&#12424;&#12403; jsr305.jar &#12501;&#12449;&#12452;&#12523;&#12434;&#12467;&#12531;&#12497;&#12452;&#12523;&#26178;&#12398;&#12463;&#12521;&#12473;&#12497;&#12473;&#12395;&#21547;&#12417;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.CheckForNull</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
-    <p>&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#12388;&#12369;&#12383;&#35201;&#32032;&#12399;&#12289; null &#12391;&#12354;&#12427;&#21487;&#33021;&#24615;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#12375;&#12383;&#12364;&#12387;&#12390;&#12289;&#24403;&#35442;&#35201;&#32032;&#12434;&#20351;&#29992;&#12377;&#12427;&#38555;&#12399; null &#12481;&#12455;&#12483;&#12463;&#12434;&#12377;&#12427;&#12409;&#12365;&#12391;&#12377;&#12290;&#12371;&#12398;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#12513;&#12477;&#12483;&#12489;&#12395;&#36969;&#29992;&#12377;&#12427;&#12392;&#12289;&#12513;&#12477;&#12483;&#12489;&#12398;&#25147;&#12426;&#20516;&#12395;&#36969;&#29992;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.CheckReturnValue</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Method, Constructor
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>priority:</strong></span> &#35686;&#21578;&#12398;&#20778;&#20808;&#24230;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377; (HIGH, MEDIUM, LOW, IGNORE) &#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#20516; :MEDIUM&#12290;</p><p>
-              <span class="command"><strong>explanation:</strong></span>&#25147;&#12426;&#20516;&#12434;&#12481;&#12455;&#12483;&#12463;&#12375;&#12394;&#12369;&#12400;&#12394;&#12425;&#12394;&#12356;&#29702;&#30001;&#12434;&#12486;&#12461;&#12473;&#12488;&#12391;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#20516; :""&#12290;</p></dd></dl></div><p>&#12371;&#12398;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#20351;&#29992;&#12375;&#12390;&#12289;&#21628;&#20986;&#12375;&#24460;&#12395;&#25147;&#12426;&#20516;&#12434;&#12481;&#12455;&#12483;&#12463;&#12377;&#12409;&#12365;&#12513;&#12477;&#12483;&#12489;&#12434;&#34920;&#12377;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.DefaultAnnotation</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Package
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12463;&#12521;&#12473;&#12398;class&#12458;&#12502;&#12472;&#12455;&#12463;&#12488;&#12290;&#35079;&#25968;&#12398;&#12463;&#12521;&#12473;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>
-              <span class="command"><strong>priority:</strong></span>&#30465;&#30053;&#26178;&#12398;&#20778;&#20808;&#24230;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377; (HIGH, MEDIUM, LOW, IGNORE) &#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#20516; :MEDIUM&#12290;</p></dd></dl></div><p>
-Indicates that all members of the class or package should be annotated with the default
-value of the supplied annotation classes. This would be used for behavior annotations
-such as @NonNull, @CheckForNull, or @CheckReturnValue. In particular, you can use
-@DefaultAnnotation(NonNull.class) on a class or package, and then use @Nullable only
-on those parameters, methods or fields that you want to allow to be null.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.DefaultAnnotationForFields</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Package
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12463;&#12521;&#12473;&#12398;class&#12458;&#12502;&#12472;&#12455;&#12463;&#12488;&#12290;&#35079;&#25968;&#12398;&#12463;&#12521;&#12473;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>
-              <span class="command"><strong>priority:</strong></span>&#30465;&#30053;&#26178;&#12398;&#20778;&#20808;&#24230;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377; (HIGH, MEDIUM, LOW, IGNORE) &#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#20516; :MEDIUM&#12290;</p></dd></dl></div><p>
-This is same as the DefaultAnnotation except it only applys to fields.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.DefaultAnnotationForMethods</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Package
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12463;&#12521;&#12473;&#12398;class&#12458;&#12502;&#12472;&#12455;&#12463;&#12488;&#12290;&#35079;&#25968;&#12398;&#12463;&#12521;&#12473;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>
-              <span class="command"><strong>priority:</strong></span>&#30465;&#30053;&#26178;&#12398;&#20778;&#20808;&#24230;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377; (HIGH, MEDIUM, LOW, IGNORE) &#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#20516; :MEDIUM&#12290;</p></dd></dl></div><p>
-This is same as the DefaultAnnotation except it only applys to methods.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.DefaultAnnotationForParameters</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Package
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12463;&#12521;&#12473;&#12398;class&#12458;&#12502;&#12472;&#12455;&#12463;&#12488;&#12290;&#35079;&#25968;&#12398;&#12463;&#12521;&#12473;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>
-              <span class="command"><strong>priority:</strong></span>&#30465;&#30053;&#26178;&#12398;&#20778;&#20808;&#24230;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377; (HIGH, MEDIUM, LOW, IGNORE) &#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#20516; :MEDIUM&#12290;</p></dd></dl></div><p>
-This is same as the DefaultAnnotation except it only applys to method parameters.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.NonNull</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
-    <p>&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#12388;&#12369;&#12383;&#35201;&#32032;&#12399;&#12289; null &#12391;&#12354;&#12387;&#12390;&#12399;&#12356;&#12369;&#12414;&#12379;&#12435;&#12290;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#12388;&#12369;&#12383;&#12501;&#12451;&#12540;&#12523;&#12489;&#12399;&#12289;&#27083;&#31689;&#23436;&#20102;&#24460; null &#12391;&#12354;&#12387;&#12390;&#12399;&#12356;&#12369;&#12414;&#12379;&#12435;&#12290;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#12388;&#12369;&#12383;&#12513;&#12477;&#12483;&#12489;&#12399;&#12289; null &#12391;&#12399;&#12394;&#12356;&#20516;&#12434;&#25147;&#12426;&#20516;&#12392;&#12375;&#12394;&#12369;&#12428;&#12400;&#12394;&#12426;&#12414;&#12379;&#12435;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.Nullable</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
-    <p>&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12434;&#12388;&#12369;&#12383;&#35201;&#32032;&#12399;&#12289; null &#12391;&#12354;&#12387;&#12390;&#12399;&#12356;&#12369;&#12414;&#12379;&#12435;&#12290;In general, this means developers will have to read the documentation to determine when a null value is acceptable and whether it is neccessary to check for a null value. FindBugs will treat the annotated items as though they had no annotation.</p><p>
-In pratice this annotation is useful only for overriding an overarching NonNull
-annotation.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.OverrideMustInvoke</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Method
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>Specify when the super invocation should be
-              performed (FIRST, ANYTIME, LAST). Default value:ANYTIME.
-            </p></dd></dl></div><p>
-Used to annotate a method that, if overridden, must (or should) be invoke super
-in the overriding method. Examples of such methods include finalize() and clone().
-The argument to the method indicates when the super invocation should occur:
-at any time, at the beginning of the overriding method, or at the end of the overriding method.
-(This anotation is not implmemented in FindBugs as of September 8, 2006).
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.PossiblyNull</strong></span></span></dt><dd><p>
-This annotation is deprecated. Use CheckForNull instead.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.SuppressWarnings</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Field, Method, Parameter, Constructor, Package
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>The name of the warning. More than one name can be specified.
-            </p><p>
-              <span class="command"><strong>justification:</strong></span>Reason why the warning should be ignored. &#12487;&#12501;&#12457;&#12523;&#12488;&#20516; :""&#12290;</p></dd></dl></div><p>
-The set of warnings that are to be suppressed by the compiler in the annotated element.
-Duplicate names are permitted.  The second and successive occurrences of a name are ignored.
-The presence of unrecognized warning names is <span class="emphasis"><em>not</em></span> an error: Compilers
-must ignore any warning names they do not recognize. They are, however, free to emit a
-warning if an annotation contains an unrecognized warning name. Compiler vendors should
-document the warning names they support in conjunction with this annotation type. They
-are encouraged to cooperate to ensure that the same names work across multiple compilers.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.UnknownNullness</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
-    <p>
-Used to indicate that the nullness of the target is unknown, or my vary in unknown ways in subclasses.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.UnknownNullness</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
-    <p>
-Used to indicate that the nullness of the target is unknown, or my vary in unknown ways in subclasses.
-      </p></dd></dl></div><p>&#12414;&#12383;&#12289; <span class="application">FindBugs</span> &#27425;&#12395;&#31034;&#12377;&#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&#12418;&#12469;&#12509;&#12540;&#12488;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290; :</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem">net.jcip.annotations.GuardedBy</li><li class="listitem">net.jcip.annotations.Immutable</li><li class="listitem">net.jcip.annotations.NotThreadSafe</li><li class="listitem">net.jcip.annotations.ThreadSafe</li></ul></div><p>
-</p><p><a class="ulink" href="http://jcip.net/" target="_top">Java Concurrency in Practice</a> &#12398; <a class="ulink" href="http://jcip.net/annotations/doc/index.html" target="_top"> API &#12489;&#12461;&#12517;&#12513;&#12531;&#12488;</a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="analysisprops.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="rejarForAnalysis.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;9&#31456; &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;11&#31456; rejarForAnalysis &#12398;&#20351;&#29992;&#26041;&#27861;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/anttask.html b/tools/findbugs/doc/ja/manual/anttask.html
deleted file mode 100644
index 259019e..0000000
--- a/tools/findbugs/doc/ja/manual/anttask.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;6&#31456; FindBugs&#8482; Ant &#12479;&#12473;&#12463;&#12398;&#20351;&#29992;&#26041;&#27861;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="gui.html" title="&#31532;5&#31456; FindBugs GUI &#12398;&#20351;&#29992;&#26041;&#27861;"><link rel="next" href="eclipse.html" title="&#31532;7&#31456; FindBugs&#8482; Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;6&#31456; <span class="application">FindBugs</span>&#8482; <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12398;&#20351;&#29992;&#26041;&#27861;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="gui.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="eclipse.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;6&#31456; FindBugs&#8482; Ant &#12479;&#12473;&#12463;&#12398;&#20351;&#29992;&#26041;&#27861;"><div class="titlepage"><div><div><h2 class="title"><a name="anttask"></a>&#31532;6&#31456; <span class="application">FindBugs</span>&#8482; <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12398;&#20351;&#29992;&#26041;&#27861;</h2></div></div></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="sect1"><a href="anttask.html#d0e1173">1. <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1209">2. build.xml &#12398;&#26360;&#12365;&#26041;</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1278">3. &#12479;&#12473;&#12463;&#12398;&#23455;&#34892;</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1303">4. &#12497;&#12521;&#12513;&#12540;&#12479;&#12540;</a></span></dt></dl></div><p>&#12371;&#12398;&#31456;&#12391;&#12399;&#12289; <span class="application">FindBugs</span> &#12434; <a class="ulink" href="http://ant.apache.org/" target="_top"><span class="application">Ant</span></a> &#12398;&#12499;&#12523;&#12489;&#12473;&#12463;&#12522;&#12503;&#12488;&#12395;&#32068;&#12415;&#20837;&#12428;&#12427;&#26041;&#27861;&#12395;&#12388;&#12356;&#12390;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290; <a class="ulink" href="http://ant.apache.org/" target="_top"><span class="application">Ant</span></a> &#12399;&#12289;&#12499;&#12523;&#12489;&#12420;&#37197;&#20633;&#12434;&#34892;&#12358;&#12371;&#12392;&#12364;&#12391;&#12365;&#12427; Java &#12391;&#12424;&#12367;&#20351;&#29992;&#12373;&#12428;&#12427;&#12484;&#12540;&#12523;&#12391;&#12377;&#12290;<span class="application">FindBugs</span> <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12434;&#20351;&#29992;&#12377;&#12427;&#12392;&#12289; &#12499;&#12523;&#12489;&#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#20316;&#25104;&#12375;&#12390;&#27231;&#26800;&#30340;&#12395; <span class="application">FindBugs</span> &#12395;&#12424;&#12427; Java &#12467;&#12540;&#12489;&#12398;&#20998;&#26512;&#12434;&#23455;&#34892;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#12371;&#12398; <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12399;&#12289; Mike Fagan &#27663;&#12398;&#22810;&#22823;&#12394;&#36002;&#29486;&#12395;&#12424;&#12427;&#12418;&#12398;&#12391;&#12377;&#12290;</p><div class="sect1" title="1. Ant &#12479;&#12473;&#12463;&#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1173"></a>1. <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</h2></div></div></div><p><span class="application">Ant</span> &#12479;&#12473;&#12463;&#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12399;&#12289; <code class="filename"><em class="replaceable"><code>$FINDBUGS_HOME</code></em>/lib/findbugs-ant.jar</code> &#12434; <span class="application">Ant</span> &#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12398;<code class="filename">lib</code> &#12469;&#12502;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12395;&#12467;&#12500;&#12540;&#12377;&#12427;&#12384;&#12369;&#12391;&#12377;&#12290;</p><div class="note" title="&#27880;&#35352;" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note"><tr><td rowspan="2" align="center" valign="top" width="25"><img alt="[&#27880;&#35352;]" src="note.png"></td><th align="left">&#27880;&#35352;</th></tr><tr><td align="left" valign="top"><p>&#20351;&#29992;&#12377;&#12427; <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12392; <span class="application">FindBugs</span> &#26412;&#20307;&#12399;&#12289;&#21516;&#26801;&#12373;&#12428;&#12390;&#12356;&#12383;&#21516;&#12376;&#12496;&#12540;&#12472;&#12519;&#12531;&#12398;&#12418;&#12398;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12434;&#24375;&#12367;&#25512;&#22888;&#12375;&#12414;&#12377;&#12290;&#21029;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12398; <span class="application">FindBugs</span> &#12395;&#21547;&#12414;&#12428;&#12390;&#12356;&#12383; <span class="application">Ant</span> &#12479;&#12473;&#12463; Jar &#12501;&#12449;&#12452;&#12523;&#12391;&#12398;&#21205;&#20316;&#12399;&#20445;&#35388;&#12375;&#12414;&#12379;&#12435;&#12290;</p></td></tr></table></div><p>
-</p></div><div class="sect1" title="2. build.xml &#12398;&#26360;&#12365;&#26041;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1209"></a>2. build.xml &#12398;&#26360;&#12365;&#26041;</h2></div></div></div><p><span class="application">FindBugs</span> &#12434; <code class="filename">build.xml</code> (<span class="application">Ant</span> &#12499;&#12523;&#12489;&#12473;&#12463;&#12522;&#12503;&#12488;) &#12395;&#32068;&#12415;&#20837;&#12428;&#12427;&#12383;&#12417;&#12395;&#12399;&#12414;&#12378;&#12289;&#12479;&#12473;&#12463;&#23450;&#32681;&#12434;&#35352;&#36848;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#12479;&#12473;&#12463;&#23450;&#32681;&#12399;&#27425;&#12398;&#12424;&#12358;&#12395;&#35352;&#36848;&#12375;&#12414;&#12377;&#12290;:</p><pre class="screen">
-  &lt;taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/&gt;
-</pre><p>&#12479;&#12473;&#12463;&#23450;&#32681;&#12399;&#12289; <code class="literal">findbugs</code> &#35201;&#32032;&#12434; <code class="filename">build.xml</code> &#19978;&#12395;&#35352;&#36848;&#12375;&#12383;&#12392;&#12365;&#12289;&#12381;&#12398;&#12479;&#12473;&#12463;&#12398;&#23455;&#34892;&#12395;&#20351;&#29992;&#12373;&#12428;&#12427;&#12463;&#12521;&#12473;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</p><p>&#12479;&#12473;&#12463;&#23450;&#32681;&#12398;&#35352;&#36848;&#12434;&#12377;&#12428;&#12400;&#12289;<code class="literal">findbugs</code> &#12479;&#12473;&#12463;&#12434;&#20351;&#12387;&#12390;&#12479;&#12540;&#12466;&#12483;&#12488;&#12434;&#23450;&#32681;&#12391;&#12365;&#12414;&#12377;&#12290;&#27425;&#12395;&#31034;&#12377;&#12398;&#12399;&#12289; Apache <a class="ulink" href="http://jakarta.apache.org/bcel/" target="_top">BCEL</a> &#12521;&#12452;&#12502;&#12521;&#12522;&#12540;&#12434;&#20998;&#26512;&#12377;&#12427;&#22580;&#21512;&#12434;&#24819;&#23450;&#12375;&#12383; <code class="filename">build.xml</code> &#12398;&#35352;&#36848;&#20363;&#12391;&#12377;&#12290;</p><pre class="screen">
-  &lt;property name="findbugs.home" value="/export/home/daveho/work/findbugs" /&gt;
-
-  &lt;target name="findbugs" depends="jar"&gt;
-    &lt;findbugs home="${findbugs.home}"
-              output="xml"
-              outputFile="bcel-fb.xml" &gt;
-      &lt;auxClasspath path="${basedir}/lib/Regex.jar" /&gt;
-      &lt;sourcePath path="${basedir}/src/java" /&gt;
-      &lt;class location="${basedir}/bin/bcel.jar" /&gt;
-    &lt;/findbugs&gt;
-  &lt;/target&gt;
-</pre><p><code class="literal">findbugs</code> &#35201;&#32032;&#12395;&#12399;&#12289; <code class="literal">home</code> &#23646;&#24615;&#12364;&#24517;&#38920;&#12391;&#12377;&#12290; <span class="application">FindBugs</span> &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12377;&#12394;&#12431;&#12385; <em class="replaceable"><code>$FINDBUGS_HOME</code></em> &#12398;&#20516;&#12434;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;<a class="xref" href="installing.html" title="&#31532;2&#31456; FindBugs&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;">2&#31456;<i><span class="application">FindBugs</span>&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</i></a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p><p>&#12371;&#12398;&#12479;&#12540;&#12466;&#12483;&#12488;&#12399; <code class="filename">bcel.jar</code> &#12395;&#23550;&#12375;&#12390; <span class="application">FindBugs</span> &#12434;&#23455;&#34892;&#12375;&#12414;&#12377;&#12290;&#12371;&#12398; Jar &#12501;&#12449;&#12452;&#12523;&#12399;&#12289; BCEL &#12499;&#12523;&#12489;&#12473;&#12463;&#12522;&#12503;&#12488;&#12395;&#12424;&#12387;&#12390;&#20316;&#25104;&#12373;&#12428;&#12427;&#12418;&#12398;&#12391;&#12377;&#12290;(&#19978;&#35352;&#12398;&#12479;&#12540;&#12466;&#12483;&#12488;&#12364;&#12300;jar&#12301;&#12479;&#12540;&#12466;&#12483;&#12488;&#12395;&#20381;&#23384;&#12375;&#12390;&#12356;&#12427; (depends) &#12392;&#35373;&#23450;&#12377;&#12427;&#12371;&#12392;&#12395;&#12424;&#12426;&#12289; <span class="application">FindBugs</span> &#12364;&#23455;&#34892;&#12373;&#12428;&#12427;&#21069;&#12395;&#24403;&#35442;&#12521;&#12452;&#12502;&#12521;&#12522;&#12540;&#12364;&#23436;&#20840;&#12395;&#12467;&#12531;&#12497;&#12452;&#12523;&#12373;&#12428;&#12390;&#12356;&#12427;&#12371;&#12392;&#12434;&#20445;&#35388;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;) <span class="application">FindBugs</span> &#12398;&#20986;&#21147;&#12399;&#12289; XML &#24418;&#24335;&#12391; <code class="filename">bcel-fb.xml</code> &#12501;&#12449;&#12452;&#12523;&#12395;&#20445;&#23384;&#12373;&#12428;&#12414;&#12377;&#12290;&#35036;&#21161; Jar &#12501;&#12449;&#12452;&#12523; <code class="filename">Regex.jar</code> &#12434; aux classpath &#12395;&#35352;&#36848;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#12394;&#12380;&#12394;&#12425;&#12289;&#24403;&#35442; Jar &#12501;&#12449;&#12452;&#12523;&#12364; BCEL &#12513;&#12452;&#12531;&#65381;&#12521;&#12452;&#12502;&#12521;&#12522;&#12540;&#12363;&#12425;&#21442;&#29031;&#12373;&#12428;&#12427;&#12363;&#12425;&#12391;&#12377;&#12290;source path &#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#20445;&#23384;&#12373;&#12428;&#12427;&#12496;&#12464;&#12487;&#12540;&#12479;&#12395; BCEL &#12477;&#12540;&#12473;&#12467;&#12540;&#12489;&#12408;&#12398;&#27491;&#30906;&#12394;&#21442;&#29031;&#12364;&#35352;&#36848;&#12373;&#12428;&#12414;&#12377;&#12290;</p></div><div class="sect1" title="3. &#12479;&#12473;&#12463;&#12398;&#23455;&#34892;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1278"></a>3. &#12479;&#12473;&#12463;&#12398;&#23455;&#34892;</h2></div></div></div><p>&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12363;&#12425; <span class="application">Ant</span> &#12434;&#36215;&#21205;&#12377;&#12427;&#20363;&#12434;&#27425;&#12395;&#31034;&#12375;&#12414;&#12377;&#12290;&#21069;&#36848;&#12398; <code class="literal">findbugs</code> &#12479;&#12540;&#12466;&#12483;&#12488;&#12434;&#20351;&#29992;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;</p><pre class="screen">
-  <code class="prompt">[daveho@noir]$</code> <span class="command"><strong>ant findbugs</strong></span>
-  Buildfile: build.xml
-
-  init:
-
-  compile:
-
-  examples:
-
-  jar:
-
-  findbugs:
-   [findbugs] Running FindBugs...
-   [findbugs] Bugs were found
-   [findbugs] Output saved to bcel-fb.xml
-
-  BUILD SUCCESSFUL
-  Total time: 35 seconds
-</pre><p>&#12371;&#12398;&#20107;&#20363;&#12395;&#12362;&#12356;&#12390;&#12399;&#12289;XML &#12501;&#12449;&#12452;&#12523;&#12391;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12434;&#20445;&#23384;&#12375;&#12390;&#12356;&#12427;&#12398;&#12391;&#12289; <span class="application">FindBugs</span> GUI &#12434;&#20351;&#12387;&#12390;&#32080;&#26524;&#12434;&#21442;&#29031;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290; <a class="xref" href="running.html" title="&#31532;4&#31456; FindBugs&#8482; &#12398;&#23455;&#34892;">4&#31456;<i><span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;</i></a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></div><div class="sect1" title="4. &#12497;&#12521;&#12513;&#12540;&#12479;&#12540;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1303"></a>4. &#12497;&#12521;&#12513;&#12540;&#12479;&#12540;</h2></div></div></div><p>&#12371;&#12398;&#12475;&#12463;&#12471;&#12519;&#12531;&#12391;&#12399;&#12289; <span class="application">FindBugs</span> &#12479;&#12473;&#12463;&#12434;&#20351;&#29992;&#12377;&#12427;&#38555;&#12395;&#12289;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12427;&#12497;&#12521;&#12513;&#12540;&#12479;&#12540;&#12395;&#12388;&#12356;&#12390;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;</p><div class="variablelist"><dl><dt><span class="term"><code class="literal">class</code></span></dt><dd><p>&#20998;&#26512;&#12398;&#23550;&#35937;&#12392;&#12394;&#12427;&#12463;&#12521;&#12473;&#32676;&#12434;&#25351;&#23450;&#12377;&#12427;&#12383;&#12417;&#12398;&#12493;&#12473;&#12488;&#12373;&#12428;&#12427;&#35201;&#32032;&#12391;&#12377;&#12290;<code class="literal">class</code> &#35201;&#32032;&#12395;&#12399; <code class="literal">location</code> &#23646;&#24615;&#12398;&#25351;&#23450;&#12364;&#24517;&#38920;&#12391;&#12377;&#12290;&#20998;&#26512;&#23550;&#35937;&#12392;&#12394;&#12427;&#12450;&#12540;&#12459;&#12452;&#12502;&#12501;&#12449;&#12452;&#12523; (jar, zip, &#20182;)&#12289;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12414;&#12383;&#12399;&#12463;&#12521;&#12473;&#12501;&#12449;&#12452;&#12523;&#12398;&#21517;&#21069;&#12434;&#35352;&#36848;&#12375;&#12414;&#12377;&#12290;1 &#12388;&#12398; <code class="literal">findbugs</code> &#35201;&#32032;&#12395;&#23550;&#12375;&#12390;&#12289;&#35079;&#25968;&#12398; <code class="literal">class</code> &#23376;&#35201;&#32032;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">auxClasspath</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#12493;&#12473;&#12488;&#12373;&#12428;&#12427;&#35201;&#32032;&#12391;&#12377;&#12290;&#20998;&#26512;&#23550;&#35937;&#12398;&#12521;&#12452;&#12502;&#12521;&#12522;&#12540;&#12414;&#12383;&#12399;&#12450;&#12503;&#12522;&#12465;&#12540;&#12471;&#12519;&#12531;&#12395;&#12424;&#12387;&#12390;&#20351;&#29992;&#12373;&#12428;&#12390;&#12356;&#12427;&#12364;&#20998;&#26512;&#12398;&#23550;&#35937;&#12395;&#12399;&#12375;&#12383;&#12367;&#12394;&#12356;&#12463;&#12521;&#12473;&#12434;&#21547;&#12435;&#12391;&#12356;&#12427;&#12463;&#12521;&#12473;&#12497;&#12473; (Jar &#12501;&#12449;&#12452;&#12523;&#12414;&#12383;&#12399;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;) &#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;  <span class="application">Ant</span> &#12398; Java &#12479;&#12473;&#12463;&#12395;&#12354;&#12427; <code class="literal">classpath</code> &#35201;&#32032; &#12392;&#21516;&#12376;&#26041;&#27861;&#12391;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">sourcePath</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#12493;&#12473;&#12488;&#12373;&#12428;&#12427;&#35201;&#32032;&#12391;&#12377;&#12290;&#20998;&#26512;&#23550;&#35937; Java &#12467;&#12540;&#12489;&#12398;&#12467;&#12531;&#12497;&#12452;&#12523;&#26178;&#12395;&#20351;&#29992;&#12375;&#12383;&#12477;&#12540;&#12473;&#12501;&#12449;&#12452;&#12523;&#12434;&#21547;&#12435;&#12391;&#12356;&#12427;&#12477;&#12540;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12408;&#12398;&#12497;&#12473;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12477;&#12540;&#12473;&#12497;&#12473;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12395;&#12424;&#12426;&#12289;&#29983;&#25104;&#12373;&#12428;&#12427; XML &#12398;&#12496;&#12464;&#20986;&#21147;&#32080;&#26524;&#12395;&#23436;&#20840;&#12394;&#12477;&#12540;&#12473;&#24773;&#22577;&#12434;&#12418;&#12383;&#12379;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12289;&#24460;&#12395;&#12394;&#12387;&#12390; GUI &#12391;&#21442;&#29031;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">home</code></span></dt><dd><p>&#24517;&#38920;&#23646;&#24615;&#12391;&#12377;&#12290;<span class="application">FindBugs</span> &#12364;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12373;&#12428;&#12390;&#12356;&#12427;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#21517;&#12434;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">quietErrors</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#12502;&#12540;&#12523;&#20516;&#23646;&#24615;&#12391;&#12377;&#12290;true &#12434;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#28145;&#21051;&#12394;&#20998;&#26512;&#12456;&#12521;&#12540;&#30330;&#29983;&#12420;&#12463;&#12521;&#12473;&#12364;&#12415;&#12388;&#12363;&#12425;&#12394;&#12356;&#12392;&#12356;&#12387;&#12383;&#24773;&#22577;&#12364; <span class="application">FindBugs</span> &#20986;&#21147;&#12395;&#35352;&#37682;&#12373;&#12428;&#12414;&#12379;&#12435;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12399;&#12289; false &#12391;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">reportLevel</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;&#22577;&#21578;&#12373;&#12428;&#12427;&#12496;&#12464;&#12398;&#20778;&#20808;&#24230;&#12398;&#12375;&#12365;&#12356;&#20516;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12300;low&#12301;&#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#12377;&#12409;&#12390;&#12398;&#12496;&#12464;&#12364;&#22577;&#21578;&#12373;&#12428;&#12414;&#12377;&#12290;&#12300;medium&#12301; (&#12487;&#12501;&#12457;&#12523;&#12488;) &#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#20778;&#20808;&#24230; (&#20013;)&#12362;&#12424;&#12403;&#20778;&#20808;&#24230; (&#39640;)&#12398;&#12496;&#12464;&#12364;&#22577;&#21578;&#12373;&#12428;&#12414;&#12377;&#12290;&#12300;high&#12301;&#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#20778;&#20808;&#24230; (&#39640;) &#12398;&#12496;&#12464;&#12398;&#12415;&#12364;&#22577;&#21578;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">output</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;&#20986;&#21147;&#24418;&#24335;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12300;xml&#12301; (&#12487;&#12501;&#12457;&#12523;&#12488;) &#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#20986;&#21147;&#12399; XML &#24418;&#24335;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;&#12300;xml:withMessages&#12301; &#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#20986;&#21147;&#12399;&#20154;&#38291;&#12364;&#35501;&#12417;&#12427;&#12513;&#12483;&#12475;&#12540;&#12472; &#12364;&#36861;&#21152;&#12373;&#12428;&#12383; XML &#24418;&#24335;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;(XSL &#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12434;&#20351;&#12387;&#12390;&#12524;&#12509;&#12540;&#12488;&#12434;&#20316;&#25104;&#12377;&#12427;&#12371;&#12392;&#12434;&#35336;&#30011;&#12375;&#12390;&#12356;&#12427;&#22580;&#21512;&#12399;&#12371;&#12398;&#24418;&#24335;&#12434;&#20351;&#29992;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;) &#12300;html&#12301;&#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#20986;&#21147;&#12399; HTML &#24418;&#24335;(&#12487;&#12501;&#12457;&#12523;&#12488;&#12398;&#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12399; default.xsl) &#12395;&#12394;&#12426;&#12414;&#12377;&#12290; &#12300;text&#12301;&#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#20986;&#21147;&#12399;&#29305;&#21029;&#12394;&#12486;&#12461;&#12473;&#12488;&#24418;&#24335;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;&#12300;emacs&#12301;&#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#20986;&#21147;&#12399; <a class="ulink" href="http://www.gnu.org/software/emacs/" target="_top">Emacs</a> &#12456;&#12521;&#12540;&#12513;&#12483;&#12475;&#12540;&#12472;&#24418;&#24335;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;&#12300;xdocs&#12301;&#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289;&#20986;&#21147;&#12399; Apache Maven &#12391;&#20351;&#29992;&#12391;&#12365;&#12427; xdoc XML &#12395;&#12394;&#12426;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">stylesheet</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;output &#23646;&#24615; &#12395; html &#12434;&#25351;&#23450;&#12375;&#12383;&#22580;&#21512;&#12395;&#12289; HTML &#20986;&#21147;&#20316;&#25104;&#12395;&#20351;&#29992;&#12373;&#12428;&#12427;&#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;FindBugs &#37197;&#24067;&#29289;&#12395;&#21547;&#12414;&#12428;&#12390;&#12356;&#12427;&#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12399;&#12289; default.xsl&#12289; fancy.xsl &#12289; fancy-hist.xsl &#12289; plain.xsl &#12362;&#12424;&#12403; summary.xsl &#12391;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#20516;&#12399; default.xsl &#12391;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">sort</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;<code class="literal">output</code> &#23646;&#24615;&#12395;&#12300;text&#12301;&#12434;&#25351;&#23450;&#12375;&#12383;&#22580;&#21512;&#12395;&#12289;&#12496;&#12464;&#12398;&#22577;&#21578;&#12434;&#12463;&#12521;&#12473;&#38918;&#12395;&#12477;&#12540;&#12488;&#12377;&#12427;&#12363;&#12393;&#12358;&#12363;&#12434; <code class="literal">sort</code> &#23646;&#24615;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12399;&#12289; true &#12391;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">outputFile</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;&#25351;&#23450;&#12375;&#12383;&#22580;&#21512;&#12289;<span class="application">FindBugs</span> &#12398;&#20986;&#21147;&#12399;&#12381;&#12398;&#21517;&#21069;&#12398;&#12501;&#12449;&#12452;&#12523;&#12408;&#12392;&#20445;&#23384;&#12373;&#12428;&#12414;&#12377;&#12290;&#30465;&#30053;&#26178;&#12289;&#20986;&#21147;&#12399; <span class="application">Ant</span> &#12395;&#12424;&#12387;&#12390;&#30452;&#25509;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">debug</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#12502;&#12540;&#12523;&#20516;&#23646;&#24615;&#12391;&#12377;&#12290;true &#12395;&#35373;&#23450;&#12377;&#12427;&#12392;&#12289; <span class="application">FindBugs</span> &#12399; &#35386;&#26029;&#24773;&#22577;&#12434;&#20986;&#21147;&#12375;&#12414;&#12377;&#12290;&#12393;&#12398;&#12463;&#12521;&#12473;&#12434;&#20998;&#26512;&#12375;&#12390;&#12356;&#12427;&#12363;&#12289;&#12393;&#12398;&#12497;&#12464;&#12497;&#12479;&#12540;&#12531;&#12487;&#12451;&#12486;&#12463;&#12479;&#12364;&#23455;&#34892;&#12373;&#12428;&#12390;&#12356;&#12427;&#12363;&#12289;&#12392;&#12356;&#12358;&#24773;&#22577;&#12364;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12399;&#12289; false &#12391;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">effort</code></span></dt><dd><p>&#20998;&#26512;&#12398;&#27963;&#21205;&#12524;&#12505;&#12523;&#12434;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;<code class="literal">min</code> &#12289;<code class="literal">default</code> &#12414;&#12383;&#12399; <code class="literal">max</code> &#12398;&#12356;&#12378;&#12428;&#12363;&#12398;&#20516;&#12434;&#35373;&#23450;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#20998;&#26512;&#12524;&#12505;&#12523;&#12398;&#35373;&#23450;&#12395;&#38306;&#12377;&#12427;&#35443;&#32048;&#24773;&#22577;&#12399;&#12289; <a class="xref" href="running.html#commandLineOptions" title="3. &#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;">&#12300;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;&#12301;</a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><code class="literal">conserveSpace</code></span></dt><dd><p>effort="min" &#12392;&#21516;&#32681;&#12391;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">workHard</code></span></dt><dd><p>effort="max" &#12392;&#21516;&#32681;&#12391;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">visitors</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;&#12393;&#12398;&#12496;&#12464;&#12487;&#12451;&#12486;&#12463;&#12479;&#12434;&#23455;&#34892;&#12377;&#12427;&#12363;&#12434;&#12467;&#12531;&#12510;&#21306;&#20999;&#12426;&#12398;&#12522;&#12473;&#12488;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12496;&#12464;&#12487;&#12451;&#12486;&#12463;&#12479;&#12399;&#12497;&#12483;&#12465;&#12540;&#12472;&#25351;&#23450;&#12394;&#12375;&#12398;&#12463;&#12521;&#12473;&#21517;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#30465;&#30053;&#26178;&#12289;&#12487;&#12501;&#12457;&#12523;&#12488;&#12391;&#28961;&#21177;&#21270;&#12373;&#12428;&#12390;&#12356;&#12427;&#12418;&#12398;&#12434;&#38500;&#12367;&#12377;&#12409;&#12390;&#12398;&#12487;&#12451;&#12486;&#12463;&#12479;&#12364;&#23455;&#34892;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">omitVisitors</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;<code class="literal">visitors</code> &#23646;&#24615;&#12392;&#20284;&#12390;&#12356;&#12414;&#12377;&#12364;&#12289;&#12371;&#12385;&#12425;&#12399; <span class="emphasis"><em>&#23455;&#34892;&#12373;&#12428;&#12394;&#12356;</em></span> &#12487;&#12451;&#12486;&#12463;&#12479;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">excludeFilter</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;&#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;&#21517;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#22577;&#21578;&#12363;&#12425;&#38500;&#22806;&#12373;&#12428;&#12427;&#12496;&#12464;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;<a class="xref" href="filter.html" title="&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;">8&#31456;<i>&#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;</i></a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><code class="literal">includeFilter</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;&#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;&#21517;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#22577;&#21578;&#12373;&#12428;&#12427;&#12496;&#12464;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;<a class="xref" href="filter.html" title="&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;">8&#31456;<i>&#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;</i></a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><code class="literal">projectFile</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12501;&#12449;&#12452;&#12523;&#21517;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12501;&#12449;&#12452;&#12523;&#12399;&#12289; <span class="application">FindBugs</span> GUI &#12391;&#20316;&#25104;&#12375;&#12414;&#12377;&#12290;&#20998;&#26512;&#12373;&#12428;&#12427;&#12463;&#12521;&#12473;&#12289;&#12362;&#12424;&#12403;&#12289;&#35036;&#21161;&#12463;&#12521;&#12473;&#12497;&#12473;&#12289;&#12477;&#12540;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12364;&#35352;&#20837;&#12373;&#12428;&#12390;&#12414;&#12377;&#12290;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12383;&#22580;&#21512;&#12399;&#12289; <code class="literal">class</code> &#35201;&#32032;&#12539; <code class="literal">auxClasspath</code> &#23646;&#24615;&#12362;&#12424;&#12403; <code class="literal">sourcePath</code> &#23646;&#24615;&#12434;&#35373;&#23450;&#12377;&#12427;&#24517;&#35201;&#12399;&#12354;&#12426;&#12414;&#12379;&#12435;&#12290;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12398;&#20316;&#25104;&#26041;&#27861;&#12399;&#12289; <a class="xref" href="running.html" title="&#31532;4&#31456; FindBugs&#8482; &#12398;&#23455;&#34892;">4&#31456;<i><span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;</i></a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><code class="literal">jvmargs</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;<span class="application">FindBugs</span> &#12434;&#23455;&#34892;&#12375;&#12390;&#12356;&#12427; Java &#20206;&#24819;&#12510;&#12471;&#12531;&#12395;&#23550;&#12375;&#12390;&#21463;&#12369;&#28193;&#12373;&#12428;&#12427;&#24341;&#25968;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#24040;&#22823;&#12394;&#12503;&#12525;&#12464;&#12521;&#12512;&#12434;&#20998;&#26512;&#12377;&#12427;&#22580;&#21512;&#12395;&#12289; JVM &#12364;&#20351;&#29992;&#12377;&#12427;&#12513;&#12514;&#12522;&#23481;&#37327;&#12434;&#22679;&#12420;&#12377;&#25351;&#23450;&#12434;&#12377;&#12427;&#12383;&#12417;&#12395;&#12371;&#12398;&#24341;&#25968;&#12434;&#21033;&#29992;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12427;&#12363;&#12418;&#12375;&#12428;&#12414;&#12379;&#12435;&#12290;</p></dd><dt><span class="term"><code class="literal">systemProperty</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#12493;&#12473;&#12488;&#12373;&#12428;&#12427;&#35201;&#32032;&#12391;&#12377;&#12290;&#25351;&#23450;&#12375;&#12383;&#22580;&#21512;&#12289;Java &#12471;&#12473;&#12486;&#12512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12434;&#23450;&#32681;&#12375;&#12414;&#12377;&#12290;<code class="literal">name</code> &#23646;&#24615;&#12395;&#12399;&#12471;&#12473;&#12486;&#12512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12398;&#21517;&#21069;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12381;&#12375;&#12390;&#12289; <code class="literal">value</code> &#23646;&#24615;&#12395;&#12399;&#12471;&#12473;&#12486;&#12512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12398;&#20516;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">timeout</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;<span class="application">FindBugs</span> &#12434;&#23455;&#34892;&#12375;&#12390;&#12356;&#12427; Java &#12503;&#12525;&#12475;&#12473; &#12398;&#23455;&#34892;&#35377;&#23481;&#26178;&#38291;&#12434;&#12511;&#12522;&#31186;&#21336;&#20301;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#26178;&#38291;&#12434;&#36229;&#36942;&#12377;&#12427;&#12392;&#12495;&#12531;&#12464;&#12450;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12392;&#21028;&#26029;&#12375;&#12390;&#12503;&#12525;&#12475;&#12473;&#12364;&#32066;&#20102;&#12373;&#12428;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12399;&#12289; 600,000 &#12511;&#12522;&#31186; (10 &#20998;) &#12391;&#12377;&#12290;&#24040;&#22823;&#12394;&#12503;&#12525;&#12464;&#12521;&#12512;&#12398;&#22580;&#21512;&#12399;&#12289; <span class="application">FindBugs</span> &#12364;&#20998;&#26512;&#12434;&#23436;&#20102;&#12377;&#12427;&#12414;&#12391;&#12395; 10 &#20998; &#20197;&#19978;&#25499;&#12363;&#12427;&#21487;&#33021;&#24615;&#12364;&#12354;&#12427;&#12371;&#12392;&#12395;&#27880;&#24847;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><code class="literal">failOnError</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#12502;&#12540;&#12523;&#20516;&#23646;&#24615;&#12391;&#12377;&#12290;<span class="application">FindBugs</span> &#12398;&#23455;&#34892;&#20013;&#12395;&#12456;&#12521;&#12540;&#12364;&#12354;&#12387;&#12383;&#22580;&#21512;&#12395;&#12289;&#12499;&#12523;&#12489;&#12503;&#12525;&#12475;&#12473;&#33258;&#20307;&#12434;&#25171;&#12385;&#20999;&#12387;&#12390;&#30064;&#24120;&#32066;&#20102;&#12373;&#12379;&#12427;&#12363;&#12393;&#12358;&#12363;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12399;&#12289;&#12300;false&#12301;&#12391;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">errorProperty</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;<span class="application">FindBugs</span> &#12398;&#23455;&#34892;&#20013;&#12395;&#12456;&#12521;&#12540;&#12364;&#30330;&#29983;&#12375;&#12383;&#22580;&#21512;&#12395;&#12289;&#12300;true&#12301;&#12364;&#35373;&#23450;&#12373;&#12428;&#12427;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12398;&#21517;&#21069;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">warningsProperty</code></span></dt><dd><p>&#20219;&#24847;&#25351;&#23450;&#12398;&#23646;&#24615;&#12391;&#12377;&#12290;<span class="application">FindBugs</span> &#12364;&#20998;&#26512;&#12375;&#12383;&#12503;&#12525;&#12464;&#12521;&#12512;&#12395;&#12496;&#12464;&#22577;&#21578;&#12364; 1 &#20214;&#12391;&#12418;&#12354;&#12427;&#22580;&#21512;&#12395;&#12289;&#12300;true&#12301;&#12364;&#35373;&#23450;&#12373;&#12428;&#12427;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12398;&#21517;&#21069;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</p></dd></dl></div><p>
-
-
-</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="gui.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="eclipse.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;5&#31456; <span class="application">FindBugs</span> GUI &#12398;&#20351;&#29992;&#26041;&#27861;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;7&#31456; <span class="application">FindBugs</span>&#8482; Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/building.html b/tools/findbugs/doc/ja/manual/building.html
deleted file mode 100644
index 299264f..0000000
--- a/tools/findbugs/doc/ja/manual/building.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;3&#31456; FindBugs&#8482; &#12398;&#12477;&#12540;&#12523;&#12363;&#12425;&#12398;&#12499;&#12523;&#12489;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="installing.html" title="&#31532;2&#31456; FindBugs&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;"><link rel="next" href="running.html" title="&#31532;4&#31456; FindBugs&#8482; &#12398;&#23455;&#34892;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;3&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#12477;&#12540;&#12523;&#12363;&#12425;&#12398;&#12499;&#12523;&#12489;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="installing.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="running.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;3&#31456; FindBugs&#8482; &#12398;&#12477;&#12540;&#12523;&#12363;&#12425;&#12398;&#12499;&#12523;&#12489;"><div class="titlepage"><div><div><h2 class="title"><a name="building"></a>&#31532;3&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#12477;&#12540;&#12523;&#12363;&#12425;&#12398;&#12499;&#12523;&#12489;</h2></div></div></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="sect1"><a href="building.html#d0e175">1. &#21069;&#25552;&#26465;&#20214;</a></span></dt><dt><span class="sect1"><a href="building.html#d0e258">2. &#12477;&#12540;&#12473;&#37197;&#24067;&#29289;&#12398;&#23637;&#38283;</a></span></dt><dt><span class="sect1"><a href="building.html#d0e271">3. <code class="filename">local.properties</code> &#12398;&#20462;&#27491;</a></span></dt><dt><span class="sect1"><a href="building.html#d0e326">4. <span class="application">Ant</span> &#12398;&#23455;&#34892;</a></span></dt><dt><span class="sect1"><a href="building.html#d0e420">5. &#12477;&#12540;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12363;&#12425;&#12398; <span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;</a></span></dt></dl></div><p>&#12371;&#12398;&#31456;&#12391;&#12399;&#12289; <span class="application">FindBugs</span> &#12434;&#12477;&#12540;&#12473;&#12467;&#12540;&#12489;&#12363;&#12425;&#12499;&#12523;&#12489;&#12377;&#12427;&#26041;&#27861;&#12434;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;<span class="application">FindBugs</span> &#12434;&#20462;&#27491;&#12377;&#12427;&#12371;&#12392;&#12395;&#33288;&#21619;&#12364;&#12394;&#12356;&#12398;&#12391;&#12354;&#12428;&#12400;&#12289; <a class="link" href="running.html" title="&#31532;4&#31456; FindBugs&#8482; &#12398;&#23455;&#34892;">&#27425;&#12398;&#31456;</a> &#12395;&#36914;&#12435;&#12391;&#12367;&#12384;&#12373;&#12356;&#12290;</p><div class="sect1" title="1. &#21069;&#25552;&#26465;&#20214;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e175"></a>1. &#21069;&#25552;&#26465;&#20214;</h2></div></div></div><p>&#12477;&#12540;&#12473;&#12363;&#12425; <span class="application">FindBugs</span> &#12434;&#12467;&#12531;&#12497;&#12452;&#12523;&#12377;&#12427;&#12383;&#12417;&#12395;&#12399;&#12289;&#20197;&#19979;&#12398;&#12418;&#12398;&#12364;&#24517;&#35201;&#12391;&#12377;&#12290;</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p><a class="ulink" href="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3-source.zip?download" target="_top"><span class="application">FindBugs</span> &#12398;&#12477;&#12540;&#12473;&#37197;&#24067;&#29289;</a>
-    </p></li><li class="listitem"><p>
-      <a class="ulink" href="http://java.sun.com/j2se/" target="_top">JDK 1.5.0 &#12505;&#12540;&#12479; &#12414;&#12383;&#12399;&#12381;&#12428;&#20197;&#38477;</a>
-    </p></li><li class="listitem"><p>
-      <a class="ulink" href="http://ant.apache.org/" target="_top">Apache <span class="application">Ant</span></a>, &#12496;&#12540;&#12472;&#12519;&#12531; 1.6.3 &#12414;&#12383;&#12399;&#12381;&#12428;&#20197;&#38477;</p></li></ul></div><p>
-</p><div class="warning" title="&#35686;&#21578;" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Warning"><tr><td rowspan="2" align="center" valign="top" width="25"><img alt="[&#35686;&#21578;]" src="warning.png"></td><th align="left">&#35686;&#21578;</th></tr><tr><td align="left" valign="top"><p>Redhat Linux &#12471;&#12473;&#12486;&#12512;&#12398; <code class="filename">/usr/bin/ant</code> &#12395;&#21516;&#26801;&#12373;&#12428;&#12390;&#12356;&#12427; <span class="application">Ant</span> &#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12391;&#12399;&#12289; <span class="application">FindBugs</span> &#12398;&#12467;&#12531;&#12497;&#12452;&#12523;&#12399;<span class="emphasis"><em>&#12358;&#12414;&#12367;&#12391;&#12365;&#12414;&#12379;&#12435;</em></span>&#12290;<a class="ulink" href="http://ant.apache.org/" target="_top"><span class="application">Ant</span> web &#12469;&#12452;&#12488;</a>&#12363;&#12425;&#12496;&#12452;&#12490;&#12522;&#37197;&#24067;&#29289;&#12434;&#12480;&#12454;&#12531;&#12525;&#12540;&#12489;&#12375;&#12390;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12377;&#12427;&#12371;&#12392;&#12434;&#25512;&#22888;&#12375;&#12414;&#12377;&#12290;<span class="application">Ant</span> &#12434;&#23455;&#34892;&#12377;&#12427;&#22580;&#21512;&#12399;&#12289; &#29872;&#22659;&#22793;&#25968; <em class="replaceable"><code>JAVA_HOME</code></em> &#12364;  JDK 1.5 (&#12414;&#12383;&#12399;&#12381;&#12428;&#20197;&#38477;)&#12434;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12375;&#12383;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12434;&#25351;&#12375;&#12390;&#12356;&#12427;&#12371;&#12392;&#12434;&#30906;&#35469;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></td></tr></table></div><p>&#20307;&#35009;&#12398;&#25972;&#12387;&#12383; <span class="application">FindBugs</span> &#12398;&#12489;&#12461;&#12517;&#12513;&#12531;&#12488;&#12434;&#29983;&#25104;&#12375;&#12383;&#12356;&#22580;&#21512;&#12399;&#12289;&#20197;&#19979;&#12398;&#12477;&#12501;&#12488;&#12454;&#12455;&#12450;&#12418;&#24517;&#35201;&#12392;&#12394;&#12426;&#12414;&#12377;:</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p><a class="ulink" href="http://docbook.sourceforge.net/projects/xsl/index.html" target="_top">DocBook XSL &#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;</a>&#12290;<span class="application">FindBugs</span> &#12398;&#12510;&#12491;&#12517;&#12450;&#12523;&#12434; HTML &#12395;&#22793;&#25563;&#12377;&#12427;&#12398;&#12395;&#24517;&#35201;&#12391;&#12377;&#12290;</p></li><li class="listitem"><p><a class="ulink" href="http://saxon.sourceforge.net/" target="_top"><span class="application">Saxon</span> XSLT &#12503;&#12525;&#12475;&#12483;&#12469;&#12540;</a>&#12290;(&#21516;&#27096;&#12395;&#12289; <span class="application">FindBugs</span> &#12398;&#12510;&#12491;&#12517;&#12450;&#12523;&#12434; HTML &#12395;&#22793;&#25563;&#12377;&#12427;&#12398;&#12395;&#24517;&#35201;&#12391;&#12377;&#12290;)</p></li></ul></div><p>
-</p></div><div class="sect1" title="2. &#12477;&#12540;&#12473;&#37197;&#24067;&#29289;&#12398;&#23637;&#38283;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e258"></a>2. &#12477;&#12540;&#12473;&#37197;&#24067;&#29289;&#12398;&#23637;&#38283;</h2></div></div></div><p>&#12477;&#12540;&#12473;&#37197;&#24067;&#29289;&#12434;&#12480;&#12454;&#12531;&#12525;&#12540;&#12489;&#12375;&#12383;&#24460;&#12395;&#12289;&#12381;&#12428;&#12434;&#20316;&#26989;&#29992;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12395;&#23637;&#38283;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#36890;&#24120;&#12399;&#12289;&#27425;&#12398;&#12424;&#12358;&#12394;&#12467;&#12510;&#12531;&#12489;&#12391;&#23637;&#38283;&#12434;&#34892;&#12356;&#12414;&#12377;:</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>unzip findbugs-2.0.3-source.zip</strong></span>
-</pre><p>
-
-</p></div><div class="sect1" title="3. local.properties &#12398;&#20462;&#27491;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e271"></a>3. <code class="filename">local.properties</code> &#12398;&#20462;&#27491;</h2></div></div></div><p>FindBugs &#12398;&#12489;&#12461;&#12517;&#12513;&#12531;&#12488;&#12434;&#12499;&#12523;&#12489;&#12377;&#12427;&#12383;&#12417;&#12395;&#12399;&#12289; <code class="filename">local.properties</code> &#12501;&#12449;&#12452;&#12523;&#12434;&#20462;&#27491;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#12371;&#12398;&#12501;&#12449;&#12452;&#12523;&#12399;&#12289; <span class="application">FindBugs</span> &#12434;&#12499;&#12523;&#12489;&#12377;&#12427;&#38555;&#12395; <a class="ulink" href="http://ant.apache.org/" target="_top"><span class="application">Ant</span></a> <code class="filename">build.xml</code> &#12501;&#12449;&#12452;&#12523;&#12364;&#21442;&#29031;&#12375;&#12414;&#12377;&#12290;FindBugs &#12398;&#12489;&#12461;&#12517;&#12513;&#12531;&#12488;&#12434;&#12499;&#12523;&#12489;&#12375;&#12394;&#12356;&#22580;&#21512;&#12399;&#12289;&#12371;&#12398;&#12501;&#12449;&#12452;&#12523;&#12399;&#28961;&#35222;&#12375;&#12390;&#12418;&#12363;&#12414;&#12356;&#12414;&#12379;&#12435;&#12290;</p><p><code class="filename">local.properties</code> &#12391;&#12398;&#23450;&#32681;&#12399;&#12289; <code class="filename">build.properties</code> &#12501;&#12449;&#12452;&#12523;&#12391;&#12398;&#23450;&#32681;&#12395;&#20778;&#20808;&#12375;&#12414;&#12377;&#12290;<code class="filename">build.properties</code> &#12399;&#27425;&#12398;&#12424;&#12358;&#12394;&#20869;&#23481;&#12391;&#12377;:</p><pre class="programlisting">
-
-# User Configuration:
-# This section must be modified to reflect your system.
-
-local.software.home     =/export/home/daveho/linux
-
-# Set this to the directory containing the DocBook Modular XSL Stylesheets
-#  from http://docbook.sourceforge.net/projects/xsl/
-
-xsl.stylesheet.home     =${local.software.home}/docbook/docbook-xsl-1.71.1
-
-# Set this to the directory where Saxon (http://saxon.sourceforge.net/)
-# is installed.
-
-saxon.home              =${local.software.home}/java/saxon-6.5.5
-
-</pre><p>
-</p><p><code class="varname">xsl.stylesheet.home</code> &#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12395;&#12399;&#12289;<a class="ulink" href="http://docbook.sourceforge.net/projects/xsl/" target="_top">DocBook Modular XSL &#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;</a>&#12364;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12375;&#12390;&#12354;&#12427;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12398;&#32118;&#23550;&#12497;&#12473;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;<span class="application">FindBugs</span> &#12489;&#12461;&#12517;&#12513;&#12531;&#12488;&#12434;&#29983;&#25104;&#12375;&#12424;&#12358;&#12392;&#32771;&#12360;&#12390;&#12356;&#12427;&#22580;&#21512;&#12395;&#12398;&#12415;&#12289;&#12371;&#12398;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12434;&#25351;&#23450;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p><p><code class="varname">saxon.home</code> &#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12395;&#12399;&#12289;<a class="ulink" href="http://saxon.sourceforge.net/" target="_top"><span class="application">Saxon</span> XSLT &#12503;&#12525;&#12475;&#12483;&#12469;&#12540;</a>&#12364;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12375;&#12390;&#12354;&#12427;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12398;&#32118;&#23550;&#12497;&#12473;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;<span class="application">FindBugs</span> &#12489;&#12461;&#12517;&#12513;&#12531;&#12488;&#12434;&#29983;&#25104;&#12375;&#12424;&#12358;&#12392;&#32771;&#12360;&#12390;&#12356;&#12427;&#22580;&#21512;&#12395;&#12398;&#12415;&#12289;&#12371;&#12398;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12434;&#25351;&#23450;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p></div><div class="sect1" title="4. Ant &#12398;&#23455;&#34892;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e326"></a>4. <span class="application">Ant</span> &#12398;&#23455;&#34892;</h2></div></div></div><p>&#12477;&#12540;&#12473;&#37197;&#24067;&#29289;&#12398;&#23637;&#38283;&#12289; <span class="application">Ant</span> &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12289;<code class="filename">build.properties</code>(<code class="filename">local.properties</code>) &#12398;&#20462;&#27491; (&#12371;&#12428;&#12399;&#20219;&#24847;) &#12362;&#12424;&#12403;&#12484;&#12540;&#12523; (<span class="application">Saxon</span> &#12394;&#12393;)&#12398;&#29872;&#22659;&#27083;&#31689;&#12364;&#12391;&#12365;&#12428;&#12400;&#12289; <span class="application">FindBugs</span> &#12434;&#12499;&#12523;&#12489;&#12377;&#12427;&#12383;&#12417;&#12398;&#28310;&#20633;&#12399;&#23436;&#20102;&#12391;&#12377;&#12290;<span class="application">Ant</span> &#12398;&#36215;&#21205;&#12377;&#12427;&#26041;&#27861;&#12399;&#12289;&#21336;&#12395;&#12467;&#12510;&#12531;&#12489;&#12434;&#23455;&#34892;&#12377;&#12427;&#12384;&#12369;&#12391;&#12377;&#12290;</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>ant <em class="replaceable"><code>target</code></em></strong></span>
-</pre><p><em class="replaceable"><code>target</code></em> &#12395;&#12399;&#20197;&#19979;&#12398;&#12356;&#12378;&#12428;&#12363;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;: </p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>build</strong></span></span></dt><dd><p>&#12371;&#12398;&#12479;&#12540;&#12466;&#12483;&#12488;&#12399;&#12289; <span class="application">FindBugs</span> &#12398;&#12467;&#12540;&#12489;&#12434;&#12467;&#12531;&#12497;&#12452;&#12523;&#12375;&#12414;&#12377;&#12290;&#12371;&#12428;&#12399;&#12289;&#12487;&#12501;&#12457;&#12523;&#12488;&#12398;&#12479;&#12540;&#12466;&#12483;&#12488;&#12391;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>docs</strong></span></span></dt><dd><p>&#12371;&#12398;&#12479;&#12540;&#12466;&#12483;&#12488;&#12399;&#12289;&#12489;&#12461;&#12517;&#12513;&#12531;&#12488;&#12398;&#25972;&#24418;&#12434;&#34892;&#12356;&#12414;&#12377;(&#12414;&#12383;&#12289;&#21103;&#20316;&#29992;&#12392;&#12375;&#12390;&#12356;&#12367;&#12388;&#12363;&#12398;&#12477;&#12540;&#12473;&#12398;&#12467;&#12531;&#12497;&#12452;&#12523;&#12418;&#34892;&#12356;&#12414;&#12377;&#12290;)</p></dd><dt><span class="term"><span class="command"><strong>runjunit</strong></span></span></dt><dd><p>&#12371;&#12398;&#12479;&#12540;&#12466;&#12483;&#12488;&#12399;&#12289;&#12467;&#12531;&#12497;&#12452;&#12523;&#12434;&#34892;&#12356; <span class="application">FindBugs</span> &#12364;&#25345;&#12387;&#12390;&#12356;&#12427; JUnit &#12486;&#12473;&#12488;&#12434;&#23455;&#34892;&#12375;&#12414;&#12377;&#12290;&#12518;&#12491;&#12483;&#12488;&#12486;&#12473;&#12488;&#12364;&#22833;&#25943;&#12375;&#12383;&#22580;&#21512;&#12399;&#12289;&#12456;&#12521;&#12540;&#12513;&#12483;&#12475;&#12540;&#12472;&#12364;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>bindist</strong></span></span></dt><dd><p><span class="application">FindBugs</span> &#12398;&#12496;&#12452;&#12490;&#12522;&#37197;&#24067;&#29289;&#12434;&#27083;&#31689;&#12375;&#12414;&#12377;&#12290;&#12371;&#12398;&#12479;&#12540;&#12466;&#12483;&#12488;&#12399;&#12289; <code class="filename">.zip</code> &#12362;&#12424;&#12403; <code class="filename">.tar.gz</code> &#12398;&#12450;&#12540;&#12459;&#12452;&#12502;&#12434;&#12381;&#12428;&#12382;&#12428;&#20316;&#25104;&#12375;&#12414;&#12377;&#12290;</p></dd></dl></div><p>
-</p><p><span class="application">Ant</span> &#12467;&#12510;&#12531;&#12489;&#12398;&#23455;&#34892;&#24460;&#12289;&#27425;&#12398;&#12424;&#12358;&#12394;&#20986;&#21147;&#12364;&#34920;&#31034;&#12373;&#12428;&#12427;&#12399;&#12378;&#12391;&#12377;&#12290; (&#12371;&#12398;&#21069;&#12395; <span class="application">Ant</span> &#12364;&#23455;&#34892;&#12375;&#12383;&#12479;&#12473;&#12463;&#12395;&#38306;&#12377;&#12427;&#12513;&#12483;&#12475;&#12540;&#12472;&#12418;&#12356;&#12367;&#12425;&#12363;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;):</p><pre class="screen">
-<code class="computeroutput">
-BUILD SUCCESSFUL
-Total time: 17 seconds
-</code>
-</pre><p>
-</p></div><div class="sect1" title="5. &#12477;&#12540;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12363;&#12425;&#12398; FindBugs&#8482; &#12398;&#23455;&#34892;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e420"></a>5. &#12477;&#12540;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12363;&#12425;&#12398; <span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;</h2></div></div></div><p><span class="command"><strong>build</strong></span> &#12479;&#12540;&#12466;&#12483;&#12488;&#12398;&#23455;&#34892;&#12364;&#32066;&#20102;&#12377;&#12427;&#12392;&#12289;&#12496;&#12452;&#12490;&#12522;&#37197;&#24067;&#29289;&#12392;&#21516;&#27096;&#12398;&#29366;&#24907;&#12364;&#20316;&#26989;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12395;&#27083;&#31689;&#12373;&#12428;&#12427;&#12424;&#12358;&#12395; <span class="application">FindBugs</span> &#12398;<span class="application">Ant</span> &#12499;&#12523;&#12489;&#12473;&#12463;&#12522;&#12503;&#12488;&#12399;&#35352;&#36848;&#12373;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;&#12375;&#12383;&#12364;&#12387;&#12390;&#12289;<a class="xref" href="running.html" title="&#31532;4&#31456; FindBugs&#8482; &#12398;&#23455;&#34892;">4&#31456;<i><span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;</i></a> &#12398;  <span class="application">FindBugs</span> &#12398;&#23455;&#34892;&#12395;&#38306;&#12377;&#12427;&#24773;&#22577;&#12399;&#12477;&#12540;&#12473;&#37197;&#24067;&#29289;&#12398;&#22580;&#21512;&#12395;&#12418;&#24540;&#29992;&#12391;&#12365;&#12414;&#12377;&#12290;</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="installing.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="running.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;2&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;4&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/datamining.html b/tools/findbugs/doc/ja/manual/datamining.html
deleted file mode 100644
index 31b97f9..0000000
--- a/tools/findbugs/doc/ja/manual/datamining.html
+++ /dev/null
@@ -1,280 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;12&#31456; FindBugs&#8482; &#12395;&#12424;&#12427;&#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="rejarForAnalysis.html" title="&#31532;11&#31456; rejarForAnalysis &#12398;&#20351;&#29992;&#26041;&#27861;"><link rel="next" href="license.html" title="&#31532;13&#31456; &#12521;&#12452;&#12475;&#12531;&#12473;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;12&#31456; <span class="application">FindBugs</span>&#8482; &#12395;&#12424;&#12427;&#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="rejarForAnalysis.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="license.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;12&#31456; FindBugs&#8482; &#12395;&#12424;&#12427;&#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464;"><div class="titlepage"><div><div><h2 class="title"><a name="datamining"></a>&#31532;12&#31456; <span class="application">FindBugs</span>&#8482; &#12395;&#12424;&#12427;&#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464;</h2></div></div></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="sect1"><a href="datamining.html#commands">1. &#12467;&#12510;&#12531;&#12489;</a></span></dt><dt><span class="sect1"><a href="datamining.html#examples">2. &#20363;</a></span></dt><dt><span class="sect1"><a href="datamining.html#antexample">3. Ant &#12398;&#20363;</a></span></dt></dl></div><p>&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12408;&#12398;&#39640;&#27231;&#33021;&#12398;&#21839;&#12356;&#21512;&#12431;&#12379;&#27231;&#33021;&#12289;&#12362;&#12424;&#12403;&#12289;&#35519;&#26619;&#23550;&#35937;&#12398;&#12467;&#12540;&#12489;&#12398;&#35079;&#25968;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#12431;&#12383;&#12427;&#35686;&#21578;&#12398;&#36861;&#36321;&#35352;&#37682;&#27231;&#33021;&#12434;&#12289; FindBugs &#12399;&#20869;&#34101;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#12371;&#12428;&#12425;&#12434;&#20351;&#12387;&#12390;&#27425;&#12398;&#12424;&#12358;&#12394;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12377;&#12394;&#12431;&#12385;&#12289;&#12356;&#12388;&#12496;&#12464;&#12364;&#26368;&#21021;&#25345;&#12385;&#36796;&#12414;&#12428;&#12383;&#12363;&#12434;&#25436;&#12375;&#20986;&#12377;&#12371;&#12392;&#12289;&#26368;&#32066;&#12522;&#12522;&#12540;&#12473;&#20197;&#24460;&#25345;&#12385;&#36796;&#12414;&#12428;&#12383;&#35686;&#21578;&#12398;&#20998;&#26512;&#12434;&#34892;&#12358;&#12371;&#12392;&#12289;&#12414;&#12383;&#12399;&#12289;&#28961;&#38480;&#20877;&#36215;&#12523;&#12540;&#12503;&#12398;&#25968;&#12434;&#26178;&#38291;&#36600;&#12391;&#12464;&#12521;&#12501;&#12395;&#12377;&#12427;&#12371;&#12392;&#12391;&#12377;&#12290;</p><p>&#12371;&#12428;&#12425;&#12398;&#25216;&#34899;&#12399;&#12289; FindBugs &#12364;&#35686;&#21578;&#12398;&#20445;&#23384;&#12395;&#20351;&#12358; XML &#26360;&#24335;&#12434;&#20351;&#29992;&#12375;&#12414;&#12377;&#12290;&#12371;&#12428;&#12425;&#12398; XML &#12501;&#12449;&#12452;&#12523;&#12399;&#12289;&#36890;&#24120;&#12289;&#29305;&#23450;&#12398; 1 &#20998;&#26512;&#12395;&#23550;&#12377;&#12427;&#35686;&#21578;&#12364;&#20837;&#12428;&#12425;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;&#12375;&#12363;&#12375;&#12381;&#12428;&#12425;&#12395;&#12399;&#12289;&#19968;&#36899;&#12398;&#12477;&#12501;&#12488;&#12454;&#12455;&#12450;&#12398;&#12499;&#12523;&#12489;&#12420;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#23550;&#12377;&#12427;&#20998;&#26512;&#32080;&#26524;&#12434;&#26684;&#32013;&#12377;&#12427;&#12371;&#12392;&#12418;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#12377;&#12409;&#12390;&#12398; FindBugs XML &#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12395;&#12399;&#12289;&#12496;&#12540;&#12472;&#12519;&#12531;&#21517;&#12392;&#12479;&#12452;&#12512;&#12539;&#12473;&#12479;&#12531;&#12503; &#12364;&#20837;&#12428;&#12425;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;FindBugs &#12399;&#20998;&#26512;&#12364;&#34892;&#12431;&#12428;&#12427;&#12501;&#12449;&#12452;&#12523;&#12398;&#26356;&#26032;&#26178;&#21051;&#12363;&#12425;&#12479;&#12452;&#12512;&#12539;&#12473;&#12479;&#12531;&#12503;&#12434;&#35336;&#31639;&#12375;&#12414;&#12377; (&#20363;&#12360;&#12400;&#12289;&#12479;&#12452;&#12512;&#12539;&#12473;&#12479;&#12531;&#12503;&#12399;&#12463;&#12521;&#12473;&#12501;&#12449;&#12452;&#12523;&#12398;&#29983;&#25104;&#26178;&#21051;&#12395;&#12394;&#12427;&#12424;&#12358;&#12395;&#12394;&#12387;&#12390;&#12356;&#12414;&#12377;&#12290;&#20998;&#26512;&#12364;&#34892;&#12431;&#12428;&#12383;&#26178;&#21051;&#12391;&#12399;&#12354;&#12426;&#12414;&#12379;&#12435;) &#12290;&#21508;&#12293;&#12398;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12395;&#12399;&#12289;&#12496;&#12540;&#12472;&#12519;&#12531;&#21517;&#12418;&#20837;&#12428;&#12425;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;&#12496;&#12540;&#12472;&#12519;&#12531;&#21517;&#12392;&#12479;&#12452;&#12512;&#12539;&#12473;&#12479;&#12531;&#12503;&#12399;&#12289; <span class="command"><strong>setBugDatabaseInfo</strong></span> (<a class="xref" href="datamining.html#setBugDatabaseInfo" title="1.7. setBugDatabaseInfo">&#12300;setBugDatabaseInfo&#12301;</a>) &#12467;&#12510;&#12531;&#12489;&#12434;&#20351;&#29992;&#12375;&#12390;&#25163;&#21205;&#12391;&#35373;&#23450;&#12377;&#12427;&#12371;&#12392;&#12418;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#35079;&#25968;&#12496;&#12540;&#12472;&#12519;&#12531;&#12434;&#26684;&#32013;&#12377;&#12427;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12395;&#12362;&#12356;&#12390;&#12399;&#12289;&#20998;&#26512;&#12373;&#12428;&#12427;&#12467;&#12540;&#12489;&#12398;&#21508;&#12496;&#12540;&#12472;&#12519;&#12531;&#12372;&#12392;&#12395;&#12471;&#12540;&#12465;&#12531;&#12473;&#30058;&#21495;&#12364;&#21106;&#12426;&#24403;&#12390;&#12425;&#12428;&#12414;&#12377;&#12290;&#12371;&#12428;&#12425;&#12398;&#12471;&#12540;&#12465;&#12531;&#12473;&#30058;&#21495;&#12399;&#21336;&#12395; 0 &#12363;&#12425;&#22987;&#12414;&#12427;&#36899;&#32154;&#12377;&#12427;&#25972;&#25968;&#20516;&#12391;&#12377; (&#20363;&#12360;&#12400;&#12289; 4 &#12388;&#12398;&#12467;&#12540;&#12489;&#12496;&#12540;&#12472;&#12519;&#12531;&#12434;&#26684;&#32013;&#12377;&#12427;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12395;&#12399;&#12289;&#12496;&#12540;&#12472;&#12519;&#12531; 0~3 &#12364;&#20837;&#12428;&#12425;&#12428;&#12414;&#12377;) &#12290;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12395;&#12399;&#12414;&#12383;&#12289;&#21508;&#12496;&#12540;&#12472;&#12519;&#12531;&#12398;&#21517;&#21069;&#12392;&#12479;&#12452;&#12512;&#12539;&#12473;&#12479;&#12531;&#12503;&#12364;&#12381;&#12428;&#12382;&#12428;&#35352;&#37682;&#12373;&#12428;&#12414;&#12377;&#12290;<span class="command"><strong>filterBugs</strong></span> &#12467;&#12510;&#12531;&#12489;&#12434;&#20351;&#29992;&#12377;&#12427;&#12392;&#12289;&#12471;&#12540;&#12465;&#12531;&#12473;&#30058;&#21495;&#12289;&#12496;&#12540;&#12472;&#12519;&#12531;&#21517;&#12414;&#12383;&#12399;&#12479;&#12452;&#12512;&#12539;&#12473;&#12479;&#12531;&#12503;&#12363;&#12425;&#12496;&#12540;&#12472;&#12519;&#12531;&#12434;&#21442;&#29031;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>1 &#12496;&#12540;&#12472;&#12519;&#12531;&#12434;&#26684;&#32013;&#12377;&#12427;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12398;&#38598;&#21512;&#12363;&#12425;&#12289; 1 &#20491;&#12398;&#35079;&#25968;&#12496;&#12540;&#12472;&#12519;&#12531;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12434;&#20316;&#25104;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12414;&#12383;&#12289;&#35079;&#25968;&#12496;&#12540;&#12472;&#12519;&#12531;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12395;&#23550;&#12375;&#12390;&#12289;&#12381;&#12428;&#20197;&#24460;&#12395;&#20316;&#25104;&#12373;&#12428;&#12383; 1 &#12496;&#12540;&#12472;&#12519;&#12531;&#12398;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12434;&#32080;&#21512;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#12371;&#12428;&#12425;&#12398;&#12467;&#12510;&#12531;&#12489;&#12398;&#12356;&#12367;&#12388;&#12363;&#12399;&#12289; ant &#12479;&#12473;&#12463;&#12392;&#12375;&#12390;&#23455;&#34892;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12467;&#12510;&#12531;&#12489;&#12398;&#23455;&#34892;&#26041;&#27861;&#12362;&#12424;&#12403;&#23646;&#24615;&#12539;&#24341;&#25968;&#12398;&#35443;&#32048;&#12399;&#12289;&#20197;&#19979;&#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#20197;&#19979;&#12398;&#12377;&#12409;&#12390;&#12398;&#20363;&#12395;&#12362;&#12356;&#12390;&#12399;&#12289; <code class="literal">findbugs.lib</code> <code class="literal">refid</code> &#12364;&#27491;&#12375;&#12367;&#35373;&#23450;&#12373;&#12428;&#12390;&#12356;&#12427;&#12371;&#12392;&#12434;&#21069;&#25552;&#12392;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#35373;&#23450;&#26041;&#27861;&#12398;&#19968;&#20363;&#12434;&#27425;&#12395;&#31034;&#12375;&#12414;&#12377; :</p><pre class="programlisting">
-
-   &lt;!-- findbugs &#12479;&#12473;&#12463;&#23450;&#32681; --&gt;
-   &lt;property name="findbugs.home" value="/your/path/to/findbugs" /&gt;
-   &lt;path id="findbugs.lib"&gt;
-      &lt;fileset dir="${findbugs.home}/lib"&gt;
-         &lt;include name="findbugs-ant.jar"/&gt;
-      &lt;/fileset&gt;
-   &lt;/path&gt;
-
-</pre><div class="sect1" title="1. &#12467;&#12510;&#12531;&#12489;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="commands"></a>1. &#12467;&#12510;&#12531;&#12489;</h2></div></div></div><p>FindBugs &#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464; &#12484;&#12540;&#12523;&#12399;&#12377;&#12409;&#12390;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12363;&#12425;&#23455;&#34892;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12414;&#12383;&#12289;&#12356;&#12367;&#12388;&#12363;&#12398;&#12424;&#12426;&#26377;&#29992;&#12394;&#12467;&#12510;&#12531;&#12489;&#12399;&#12289; ant &#12499;&#12523;&#12489;&#12501;&#12449;&#12452;&#12523;&#12363;&#12425;&#23455;&#34892;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12484;&#12540;&#12523;&#12395;&#12388;&#12356;&#12390;&#31777;&#21336;&#12395;&#35500;&#26126;&#12375;&#12414;&#12377; :</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#unionBugs" title="1.1. unionBugs">unionBugs</a></strong></span></span></dt><dd><p>&#21029;&#12398;&#12463;&#12521;&#12473;&#12395;&#23550;&#12377;&#12427;&#21029;&#20491;&#12398;&#20998;&#26512;&#32080;&#26524;&#12434;&#32080;&#21512;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#computeBugHistory" title="1.2. computeBugHistory">computeBugHistory</a></strong></span></span></dt><dd><p>&#35079;&#25968;&#12496;&#12540;&#12472;&#12519;&#12531;&#12363;&#12425;&#24471;&#12425;&#12428;&#12383;&#35079;&#25968;&#12398;&#12496;&#12464;&#35686;&#21578;&#12434;&#12289;&#12510;&#12540;&#12472;&#12375;&#12390; 1 &#20491;&#12398;&#35079;&#25968;&#12496;&#12540;&#12472;&#12519;&#12531;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12395;&#12375;&#12414;&#12377;&#12290;&#12371;&#12428;&#12434;&#20351;&#12387;&#12390;&#12289;&#26082;&#23384;&#12398;&#35079;&#25968;&#12496;&#12540;&#12472;&#12519;&#12531;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12395;&#26356;&#12395;&#12496;&#12540;&#12472;&#12519;&#12531;&#12434;&#36861;&#21152;&#12375;&#12383;&#12426;&#12289; 1 &#12496;&#12540;&#12472;&#12519;&#12531;&#12434;&#26684;&#32013;&#12377;&#12427;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12398;&#38598;&#21512;&#12363;&#12425; 1 &#20491;&#12398;&#35079;&#25968;&#12496;&#12540;&#12472;&#12519;&#12531;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12434;&#20316;&#25104;&#12375;&#12383;&#12426;&#12289;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#setBugDatabaseInfo" title="1.7. setBugDatabaseInfo">setBugDatabaseInfo</a></strong></span></span></dt><dd><p>&#12522;&#12499;&#12472;&#12519;&#12531;&#21517;&#12420;&#12479;&#12452;&#12512;&#12539;&#12473;&#12479;&#12531;&#12503;&#12394;&#12393;&#12398;&#24773;&#22577;&#12434; XML &#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12395;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#listBugDatabaseInfo" title="1.8. listBugDatabaseInfo">listBugDatabaseInfo</a></strong></span></span></dt><dd><p>XML &#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12395;&#12354;&#12427;&#12522;&#12499;&#12472;&#12519;&#12531;&#21517;&#12420;&#12479;&#12452;&#12512;&#12539;&#12473;&#12479;&#12531;&#12503;&#12394;&#12393;&#12398;&#24773;&#22577;&#12434;&#19968;&#35239;&#34920;&#31034;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#filterBugs" title="1.3. filterBugs">filterBugs</a></strong></span></span></dt><dd><p>&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12398;&#37096;&#20998;&#38598;&#21512;&#12434;&#36984;&#25246;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#mineBugHistory" title="1.4. mineBugHistory">mineBugHistory</a></strong></span></span></dt><dd><p>&#35079;&#25968;&#12496;&#12540;&#12472;&#12519;&#12531;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12398;&#21508;&#12496;&#12540;&#12472;&#12519;&#12531;&#27598;&#12398;&#35686;&#21578;&#25968;&#12434;&#19968;&#35239;&#12395;&#12375;&#12383;&#34920;&#12434;&#20316;&#25104;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#defectDensity" title="1.5. defectDensity">defectDensity</a></strong></span></span></dt><dd><p>&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#20840;&#20307;&#12362;&#12424;&#12403;&#12463;&#12521;&#12473;&#27598;&#12539;&#12497;&#12483;&#12465;&#12540;&#12472;&#27598;&#12398;&#19981;&#33391;&#23494;&#24230; (1000 NCSS &#27598;&#12398;&#35686;&#21578;&#25968;) &#12395;&#38306;&#12377;&#12427;&#24773;&#22577;&#12434;&#19968;&#35239;&#34920;&#31034;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#convertXmlToText" title="1.6. convertXmlToText">convertXmlToText</a></strong></span></span></dt><dd><p>XML &#24418;&#24335;&#12398;&#12496;&#12464;&#35686;&#21578;&#12434;&#12289; 1 &#34892; 1 &#12496;&#12464;&#12398;&#12486;&#12461;&#12473;&#12488;&#24418;&#24335;&#12289;&#12414;&#12383;&#12399;&#12289;HTML&#24418;&#24335;&#12395;&#22793;&#25563;&#12375;&#12414;&#12377;&#12290;</p></dd></dl></div><div class="sect2" title="1.1. unionBugs"><div class="titlepage"><div><div><h3 class="title"><a name="unionBugs"></a>1.1. unionBugs</h3></div></div></div><p>&#20998;&#26512;&#12377;&#12427;&#12398;&#12395;&#12450;&#12503;&#12522;&#12465;&#12540;&#12471;&#12519;&#12531;&#12398; jar &#12501;&#12449;&#12452;&#12523;&#12434;&#20998;&#21106;&#12375;&#12390;&#12356;&#12427;&#22580;&#21512;&#12289;&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#21029;&#20491;&#12395;&#29983;&#25104;&#12373;&#12428;&#12383; XML &#12496;&#12464;&#35686;&#21578;&#12501;&#12449;&#12452;&#12523;&#12434;&#12377;&#12409;&#12390;&#12398;&#35686;&#21578;&#12434;&#21547;&#12435;&#12391;&#12356;&#12427; 1 &#12388;&#12398; &#12501;&#12449;&#12452;&#12523;&#12395;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#21516;&#12376;&#12501;&#12449;&#12452;&#12523;&#12398;&#30064;&#12394;&#12427;&#12496;&#12540;&#12472;&#12519;&#12531;&#12434;&#20998;&#26512;&#12375;&#12383;&#32080;&#26524;&#12434;&#32080;&#21512;&#12377;&#12427;&#22580;&#21512;&#12399;&#12289;&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;<span class="emphasis"><em>&#20351;&#29992;&#12375;&#12394;&#12356;&#12391;&#12367;&#12384;&#12373;&#12356;</em></span>&#12290;&#20195;&#12431;&#12426;&#12395; <span class="command"><strong>computeBugHistory</strong></span> &#12434;&#20351;&#29992;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p><p>XML &#12501;&#12449;&#12452;&#12523;&#12399;&#12289;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12391;&#25351;&#23450;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#32080;&#26524;&#12399;&#12289;&#27161;&#28310;&#20986;&#21147;&#12395;&#36865;&#12425;&#12428;&#12414;&#12377;&#12290;</p></div><div class="sect2" title="1.2. computeBugHistory"><div class="titlepage"><div><div><h3 class="title"><a name="computeBugHistory"></a>1.2. computeBugHistory</h3></div></div></div><p>&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#20998;&#26512;&#12377;&#12427;&#12477;&#12501;&#12488;&#12454;&#12455;&#12450;&#12398;&#30064;&#12394;&#12427;&#12499;&#12523;&#12489;&#12414;&#12383;&#12399;&#12496;&#12540;&#12472;&#12519;&#12531;&#12398;&#24773;&#22577;&#12434;&#21547;&#12416;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12434;&#29983;&#25104;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#20837;&#21147;&#12392;&#12375;&#12390;&#25552;&#20379;&#12375;&#12383;&#12501;&#12449;&#12452;&#12523;&#12398; 1 &#30058;&#30446;&#12398;&#12501;&#12449;&#12452;&#12523;&#12363;&#12425;&#23653;&#27508;&#12364;&#21462;&#24471;&#12373;&#12428;&#12414;&#12377;&#12290;&#24460;&#12395;&#32154;&#12367;&#12501;&#12449;&#12452;&#12523;&#12399; 1 &#12496;&#12540;&#12472;&#12519;&#12531;&#12398;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12391;&#12354;&#12427;&#12424;&#12358;&#12395;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356; (&#12418;&#12375;&#12289;&#23653;&#27508;&#12434;&#25345;&#12387;&#12390;&#12356;&#12383;&#12392;&#12375;&#12390;&#12418;&#28961;&#35222;&#12373;&#12428;&#12414;&#12377;) &#12290;</p><p>&#12487;&#12501;&#12457;&#12523;&#12488;&#12391;&#12399;&#12289;&#32080;&#26524;&#12399;&#27161;&#28310;&#20986;&#21147;&#12395;&#36865;&#12425;&#12428;&#12414;&#12377;&#12290;</p><p>&#12371;&#12398;&#27231;&#33021;&#12399;&#12289; ant &#12363;&#12425;&#12418;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12414;&#12378;&#27425;&#12395;&#31034;&#12377;&#12424;&#12358;&#12395;&#12289;&#12499;&#12523;&#12489;&#12501;&#12449;&#12452;&#12523;&#12395; <span class="command"><strong>computeBugHistory</strong></span> &#12434; taskdef &#12391;&#23450;&#32681;&#12375;&#12414;&#12377; :</p><pre class="programlisting">
-
-&lt;taskdef name="computeBugHistory" classname="edu.umd.cs.findbugs.anttask.ComputeBugHistoryTask"&gt;
-    &lt;classpath refid="findbugs.lib" /&gt;
-&lt;/taskdef&gt;
-
-</pre><p>&#12371;&#12398; ant &#12479;&#12473;&#12463;&#12395;&#25351;&#23450;&#12391;&#12365;&#12427;&#23646;&#24615;&#12434;&#12289;&#19979;&#34920;&#12395;&#19968;&#35239;&#12391;&#31034;&#12375;&#12414;&#12377;&#12290;&#20837;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12377;&#12427;&#12395;&#12399;&#12289; <code class="literal">&lt;datafile&gt;</code> &#35201;&#32032;&#12434;&#20837;&#12428;&#23376;&#12395;&#12375;&#12390;&#20837;&#12428;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#27425;&#12395;&#12289;&#20363;&#12434;&#31034;&#12375;&#12414;&#12377;:</p><pre class="programlisting">
-
-&lt;computeBugHistory home="${findbugs.home}" ...&gt;
-    &lt;datafile name="analyze1.xml"/&gt;
-    &lt;datafile name="analyze2.xml"/&gt;
-&lt;/computeBugHistory&gt;
-
-</pre><div class="table"><a name="computeBugHistoryTable"></a><p class="title"><b>&#34920;12.1 computeBugHistory &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;</b></p><div class="table-contents"><table summary="computeBugHistory &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;</th><th align="left">Ant &#23646;&#24615;</th><th align="left">&#30446;&#30340;</th></tr></thead><tbody><tr><td align="left">-output &lt;file&gt;</td><td align="left">output="&lt;file&gt;"</td><td align="left">&#20986;&#21147;&#32080;&#26524;&#12434;&#20445;&#23384;&#12377;&#12427;&#12501;&#12449;&#12452;&#12523;&#21517;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290; (&#21516;&#26178;&#12395;&#20837;&#21147;&#12501;&#12449;&#12452;&#12523;&#12395;&#12418;&#12394;&#12426;&#12360;&#12414;&#12377;)</td></tr><tr><td align="left">-overrideRevisionNames[:truth]</td><td align="left">overrideRevisionNames="[true|false]"</td><td align="left">&#12501;&#12449;&#12452;&#12523;&#21517;&#12363;&#12425;&#31639;&#20986;&#12373;&#12428;&#12427;&#12381;&#12428;&#12382;&#12428;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#21517;&#12434;&#25351;&#23450;&#22793;&#26356;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-noPackageMoves[:truth]</td><td align="left">noPackageMoves="[true|false]"</td><td align="left">&#12497;&#12483;&#12465;&#12540;&#12472;&#12434;&#31227;&#21205;&#12375;&#12383;&#12463;&#12521;&#12473;&#12364;&#12354;&#12427;&#22580;&#21512;&#12289;&#24403;&#35442;&#12463;&#12521;&#12473;&#12398;&#35686;&#21578;&#12399;&#21029;&#12398;&#23384;&#22312;&#12392;&#12375;&#12390;&#25201;&#12431;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-preciseMatch[:truth]</td><td align="left">preciseMatch="[true|false]"</td><td align="left">&#12496;&#12464;&#12497;&#12479;&#12540;&#12531;&#12364;&#27491;&#30906;&#12395;&#19968;&#33268;&#12377;&#12427;&#12371;&#12392;&#12434;&#35201;&#27714;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-precisePriorityMatch[:truth]</td><td align="left">precisePriorityMatch="[true|false]"</td><td align="left">&#20778;&#20808;&#24230;&#12364;&#27491;&#30906;&#12395;&#19968;&#33268;&#12375;&#12383;&#22580;&#21512;&#12398;&#12415;&#35686;&#21578;&#12364;&#21516;&#19968;&#12391;&#12354;&#12427;&#12392;&#21028;&#26029;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-quiet[:truth]</td><td align="left">quiet="[true|false]"</td><td align="left">&#12456;&#12521;&#12540;&#12364;&#30330;&#29983;&#12375;&#12394;&#12356;&#38480;&#12426;&#12289;&#27161;&#28310;&#20986;&#21147;&#12395;&#12399;&#20309;&#12418;&#34920;&#31034;&#12373;&#12428;&#12414;&#12379;&#12435;&#12290;</td></tr><tr><td align="left">-withMessages[:truth]</td><td align="left">withMessages="[true|false]"</td><td align="left">&#20986;&#21147; XML &#12395;&#20154;&#38291;&#12364;&#35501;&#12416;&#12371;&#12392;&#12364;&#12391;&#12365;&#12427;&#12496;&#12464;&#12513;&#12483;&#12475;&#12540;&#12472;&#12364;&#21547;&#12414;&#12428;&#12414;&#12377;&#12290;</td></tr></tbody></table></div></div><br class="table-break"></div><div class="sect2" title="1.3. filterBugs"><div class="titlepage"><div><div><h3 class="title"><a name="filterBugs"></a>1.3. filterBugs</h3></div></div></div><p>&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289; FindBugs XML &#35686;&#21578;&#12501;&#12449;&#12452;&#12523;&#12363;&#12425;&#19968;&#37096;&#20998;&#12434;&#36984;&#12403;&#20986;&#12375;&#12390;&#26032;&#35215; FindBugs &#35686;&#21578;&#12501;&#12449;&#12452;&#12523;&#12395;&#36984;&#25246;&#12373;&#12428;&#12383;&#37096;&#20998;&#12434;&#26360;&#12365;&#36796;&#12416;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12395;&#12399;&#12289;&#12458;&#12503;&#12471;&#12519;&#12531;&#32676;&#12395;&#32154;&#12356;&#12390; 0 &#20491;&#12363;&#12425; 2 &#20491;&#12398; findbugs xml &#12496;&#12464;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#12501;&#12449;&#12452;&#12523;&#21517;&#12434;&#12402;&#12392;&#12388;&#12418;&#25351;&#23450;&#12375;&#12394;&#12356;&#22580;&#21512;&#12399;&#12289;&#27161;&#28310;&#20837;&#21147;&#12363;&#12425;&#35501;&#12435;&#12391;&#27161;&#28310;&#20986;&#21147;&#12395;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;&#12501;&#12449;&#12452;&#12523;&#21517;&#12434; 1 &#20491; &#25351;&#23450;&#12375;&#12383;&#22580;&#21512;&#12399;&#12289;&#25351;&#23450;&#12375;&#12383;&#12501;&#12449;&#12452;&#12523;&#12363;&#12425;&#35501;&#12435;&#12391;&#27161;&#28310;&#20986;&#21147;&#12395;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;&#12501;&#12449;&#12452;&#12523;&#21517;&#12434; 2 &#20491; &#25351;&#23450;&#12375;&#12383;&#22580;&#21512;&#12399;&#12289; 1 &#30058;&#30446;&#12395;&#25351;&#23450;&#12375;&#12383;&#12501;&#12449;&#12452;&#12523;&#12363;&#12425;&#35501;&#12435;&#12391; 2 &#30058;&#30446;&#12395;&#25351;&#23450;&#12375;&#12383;&#12501;&#12449;&#12452;&#12523;&#12395;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</p><p>&#12371;&#12398;&#27231;&#33021;&#12399;&#12289; ant &#12363;&#12425;&#12418;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12414;&#12378;&#27425;&#12395;&#31034;&#12377;&#12424;&#12358;&#12395;&#12289;&#12499;&#12523;&#12489;&#12501;&#12449;&#12452;&#12523;&#12395; <span class="command"><strong>filterBugs</strong></span> &#12434; taskdef &#12391;&#23450;&#32681;&#12375;&#12414;&#12377; :</p><pre class="programlisting">
-
-&lt;taskdef name="filterBugs" classname="edu.umd.cs.findbugs.anttask.FilterBugsTask"&gt;
-    &lt;classpath refid="findbugs.lib" /&gt;
-&lt;/taskdef&gt;
-
-</pre><p>&#12371;&#12398; ant &#12479;&#12473;&#12463;&#12395;&#25351;&#23450;&#12391;&#12365;&#12427;&#23646;&#24615;&#12434;&#12289;&#19979;&#34920;&#12395;&#19968;&#35239;&#12391;&#31034;&#12375;&#12414;&#12377;&#12290;&#20837;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12377;&#12427;&#12395;&#12399;&#12289; <code class="literal">input</code>  &#23646;&#24615;&#12434;&#20351;&#29992;&#12377;&#12427;&#12363;&#12289; <code class="literal">&lt;datafile&gt;</code> &#35201;&#32032;&#12434;&#20837;&#12428;&#23376;&#12395;&#12375;&#12390;&#20837;&#12428;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#27425;&#12395;&#12289;&#20363;&#12434;&#31034;&#12375;&#12414;&#12377;:</p><pre class="programlisting">
-
-&lt;filterBugs home="${findbugs.home}" ...&gt;
-    &lt;datafile name="analyze.xml"/&gt;
-&lt;/filterBugs&gt;
-
-</pre><div class="table"><a name="filterOptionsTable"></a><p class="title"><b>&#34920;12.2 filterBugs &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;</b></p><div class="table-contents"><table summary="filterBugs &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;</th><th align="left">Ant &#23646;&#24615;</th><th align="left">&#30446;&#30340;</th></tr></thead><tbody><tr><td align="left">&nbsp;</td><td align="left">input="&lt;file&gt;"</td><td align="left">&#20837;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">&nbsp;</td><td align="left">output="&lt;file&gt;"</td><td align="left">&#20986;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-not</td><td align="left">not="[true|false]"</td><td align="left">&#12501;&#12451;&#12523;&#12479;&#12540;&#12398;&#12473;&#12452;&#12483;&#12481;&#12434;&#21453;&#36578;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-withSource[:truth]</td><td align="left">withSource="[true|false]"</td><td align="left">&#12477;&#12540;&#12473;&#12364;&#20837;&#25163;&#21487;&#33021;&#12394;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-exclude &lt;filter file&gt;</td><td align="left">exclude="&lt;filter file&gt;"</td><td align="left">&#12501;&#12451;&#12523;&#12479;&#12540;&#12395;&#19968;&#33268;&#12377;&#12427;&#12496;&#12464;&#12364;&#38500;&#22806;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-include &lt;filter file&gt;</td><td align="left">include="&lt;filter file&gt;"</td><td align="left">&#12501;&#12451;&#12523;&#12479;&#12540;&#12395;&#19968;&#33268;&#12377;&#12427;&#12496;&#12464;&#12398;&#12415;&#12434;&#21547;&#12414;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-annotation &lt;text&gt;</td><td align="left">annotation="&lt;text&gt;"</td><td align="left">&#25163;&#12391;&#20837;&#21147;&#12375;&#12383;&#27880;&#37320;&#12395;&#25351;&#23450;&#12375;&#12383;&#25991;&#35328;&#12434;&#21547;&#12416;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-after &lt;when&gt;</td><td align="left">after="&lt;when&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12496;&#12540;&#12472;&#12519;&#12531;&#12424;&#12426;&#24460;&#12395;&#21021;&#12417;&#12390;&#20986;&#29694;&#12375;&#12383;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-before &lt;when&gt;</td><td align="left">before="&lt;when&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12496;&#12540;&#12472;&#12519;&#12531;&#12424;&#12426;&#21069;&#12395;&#21021;&#12417;&#12390;&#20986;&#29694;&#12375;&#12383;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-first &lt;when&gt;</td><td align="left">first="&lt;when&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#21021;&#12417;&#12390;&#20986;&#29694;&#12375;&#12383;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-last &lt;when&gt;</td><td align="left">last="&lt;when&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12496;&#12540;&#12472;&#12519;&#12531;&#12364;&#20986;&#29694;&#12375;&#12383;&#26368;&#24460;&#12391;&#12354;&#12427;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-fixed &lt;when&gt;</td><td align="left">fixed="&lt;when&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12496;&#12540;&#12472;&#12519;&#12531;&#12398;&#21069;&#22238;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12364;&#20986;&#29694;&#12375;&#12383;&#26368;&#24460;&#12391;&#12354;&#12427;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290; (<code class="option">-last</code> &#12395;&#20778;&#20808;&#12375;&#12414;&#12377;)&#12290;</td></tr><tr><td align="left">-present &lt;when&gt;</td><td align="left">present="&lt;when&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#23384;&#22312;&#12377;&#12427;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-absent &lt;when&gt;</td><td align="left">absent="&lt;when&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#23384;&#22312;&#12375;&#12394;&#12356;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-active[:truth]</td><td align="left">active="[true|false]"</td><td align="left">&#26368;&#32066;&#36890;&#30058;&#12395;&#23384;&#22312;&#12377;&#12427;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-introducedByChange[:truth]</td><td align="left">introducedByChange="[true|false]"</td><td align="left">&#23384;&#22312;&#12377;&#12427;&#12463;&#12521;&#12473;&#12398;&#22793;&#26356;&#12395;&#12424;&#12387;&#12390;&#12418;&#12383;&#12425;&#12373;&#12428;&#12383;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-removedByChange[:truth]</td><td align="left">removedByChange="[true|false]"</td><td align="left">&#23384;&#22312;&#12377;&#12427;&#12463;&#12521;&#12473;&#12398;&#22793;&#26356;&#12395;&#12424;&#12387;&#12390;&#38500;&#21435;&#12373;&#12428;&#12383;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-newCode[:truth]</td><td align="left">newCode="[true|false]"</td><td align="left">&#26032;&#12463;&#12521;&#12473;&#12398;&#36861;&#21152;&#12395;&#12424;&#12387;&#12390;&#12418;&#12383;&#12425;&#12373;&#12428;&#12383;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-removedCode[:truth]</td><td align="left">removedCode="[true|false]"</td><td align="left">&#12463;&#12521;&#12473;&#12398;&#21066;&#38500;&#12395;&#12424;&#12387;&#12390;&#38500;&#21435;&#12373;&#12428;&#12383;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-priority &lt;level&gt;</td><td align="left">priority="&lt;level&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#20778;&#20808;&#24230;&#20197;&#19978;&#12398;&#20778;&#20808;&#24230;&#12434;&#12418;&#12388;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-class &lt;pattern&gt;</td><td align="left">class="&lt;class&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12497;&#12479;&#12540;&#12531;&#12395;&#19968;&#33268;&#12377;&#12427;&#20027;&#12463;&#12521;&#12473;&#12434;&#12418;&#12388;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-bugPattern &lt;pattern&gt;</td><td align="left">bugPattern="&lt;pattern&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12497;&#12479;&#12540;&#12531;&#12395;&#19968;&#33268;&#12377;&#12427;&#12496;&#12464;&#31278;&#21029;&#12434;&#12418;&#12388;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-category &lt;category&gt;</td><td align="left">category="&lt;category&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#25991;&#23383;&#21015;&#12391;&#22987;&#12414;&#12427;&#12459;&#12486;&#12468;&#12522;&#12540;&#12398;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-designation &lt;designation&gt;</td><td align="left">designation="&lt;designation&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12496;&#12464;&#20998;&#39006;&#25351;&#23450;&#12434;&#12418;&#12388;&#35686;&#21578;&#12398;&#12415;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290; (&#20363;&#12289; -designation SHOULD_FIX)</td></tr><tr><td align="left">-withMessages[:truth] </td><td align="left">withMessages="[true|false]"</td><td align="left">&#12486;&#12461;&#12473;&#12488;&#12513;&#12483;&#12475;&#12540;&#12472;&#12434;&#21547;&#12435;&#12384; XML &#12364;&#29983;&#25104;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr></tbody></table></div></div><br class="table-break"></div><div class="sect2" title="1.4. mineBugHistory"><div class="titlepage"><div><div><h3 class="title"><a name="mineBugHistory"></a>1.4. mineBugHistory</h3></div></div></div><p>&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#35079;&#25968;&#12496;&#12540;&#12472;&#12519;&#12531;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12398;&#21508;&#12496;&#12540;&#12472;&#12519;&#12531;&#27598;&#12398;&#35686;&#21578;&#25968;&#12434;&#19968;&#35239;&#12395;&#12375;&#12383;&#34920;&#12434;&#20316;&#25104;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#12371;&#12398;&#27231;&#33021;&#12399;&#12289; ant &#12363;&#12425;&#12418;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12414;&#12378;&#27425;&#12395;&#31034;&#12377;&#12424;&#12358;&#12395;&#12289;&#12499;&#12523;&#12489;&#12501;&#12449;&#12452;&#12523;&#12395; <span class="command"><strong>mineBugHistory</strong></span> &#12434; taskdef &#12391;&#23450;&#32681;&#12375;&#12414;&#12377; :</p><pre class="programlisting">
-
-&lt;taskdef name="mineBugHistory" classname="edu.umd.cs.findbugs.anttask.MineBugHistoryTask"&gt;
-    &lt;classpath refid="findbugs.lib" /&gt;
-&lt;/taskdef&gt;
-
-</pre><p>&#12371;&#12398; ant &#12479;&#12473;&#12463;&#12395;&#25351;&#23450;&#12391;&#12365;&#12427;&#23646;&#24615;&#12434;&#12289;&#19979;&#34920;&#12395;&#19968;&#35239;&#12391;&#31034;&#12375;&#12414;&#12377;&#12290;&#20837;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12377;&#12427;&#12395;&#12399;&#12289; <code class="literal">input</code>  &#23646;&#24615;&#12434;&#20351;&#29992;&#12377;&#12427;&#12363;&#12289; <code class="literal">&lt;datafile&gt;</code> &#35201;&#32032;&#12434;&#20837;&#12428;&#23376;&#12395;&#12375;&#12390;&#20837;&#12428;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#27425;&#12395;&#12289;&#20363;&#12434;&#31034;&#12375;&#12414;&#12377;:</p><pre class="programlisting">
-
-&lt;mineBugHistory home="${findbugs.home}" ...&gt;
-    &lt;datafile name="analyze.xml"/&gt;
-&lt;/mineBugHistory&gt;
-
-</pre><div class="table"><a name="mineBugHistoryOptionsTable"></a><p class="title"><b>&#34920;12.3 mineBugHistory &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;</b></p><div class="table-contents"><table summary="mineBugHistory &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;</th><th align="left">Ant &#23646;&#24615;</th><th align="left">&#30446;&#30340;</th></tr></thead><tbody><tr><td align="left">&nbsp;</td><td align="left">input="&lt;file&gt;"</td><td align="left">&#20837;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">&nbsp;</td><td align="left">output="&lt;file&gt;"</td><td align="left">&#20986;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-formatDates</td><td align="left">formatDates="[true|false]"</td><td align="left">&#12487;&#12540;&#12479;&#12364;&#12486;&#12461;&#12473;&#12488;&#24418;&#24335;&#12391;&#25551;&#30011;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-noTabs</td><td align="left">noTabs="[true|false]"</td><td align="left">&#12479;&#12502;&#12398;&#20195;&#12431;&#12426;&#12395;&#35079;&#25968;&#12473;&#12506;&#12540;&#12473;&#12391;&#12459;&#12521;&#12512;&#12364;&#21306;&#20999;&#12425;&#12428;&#12414;&#12377; (&#19979;&#35352;&#21442;&#29031;)&#12290;</td></tr><tr><td align="left">-summary</td><td align="left">summary="[true|false]"</td><td align="left">&#26368;&#26032; 10 &#20214;&#12398;&#22793;&#26356;&#12398;&#35201;&#32004;&#12364;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr></tbody></table></div></div><br class="table-break"><p><code class="option">-noTabs</code> &#20986;&#21147;&#12434;&#20351;&#12358;&#12371;&#12392;&#12391;&#12289;&#22266;&#23450;&#24133;&#12501;&#12457;&#12531;&#12488;&#12398;&#12471;&#12455;&#12523;&#12391;&#35501;&#12415;&#26131;&#12367;&#12394;&#12426;&#12414;&#12377;&#12290;&#25968;&#20516;&#12459;&#12521;&#12512;&#12399;&#21491;&#23492;&#12379;&#12373;&#12428;&#12427;&#12398;&#12391;&#12289;&#12473;&#12506;&#12540;&#12473;&#12364;&#12459;&#12521;&#12512;&#20516;&#12398;&#21069;&#12395;&#25407;&#20837;&#12373;&#12428;&#12414;&#12377;&#12290;&#12414;&#12383;&#12289;&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#20351;&#29992;&#12375;&#12383;&#22580;&#21512;&#12289; <code class="option">-formatDates</code> &#12434;&#25351;&#23450;&#12375;&#12383;&#12392;&#12365;&#12395;&#35201;&#32004;&#12398;&#26085;&#20184;&#12434;&#25551;&#30011;&#12377;&#12427;&#12398;&#12395;&#31354;&#30333;&#12364;&#22475;&#12417;&#36796;&#12414;&#12428;&#12394;&#12367;&#12394;&#12426;&#12414;&#12377;&#12290;</p><p>&#20986;&#21147;&#12373;&#12428;&#12427;&#34920;&#12399;&#12289; (<code class="option">-noTabs</code> &#12364;&#28961;&#12369;&#12428;&#12400;) &#12479;&#12502;&#21306;&#20999;&#12426;&#12391;&#27425;&#12395;&#31034;&#12377;&#12459;&#12521;&#12512;&#12363;&#12425;&#25104;&#12426;&#12414;&#12377; :</p><div class="table"><a name="mineBugHistoryColumns"></a><p class="title"><b>&#34920;12.4 mineBugHistory &#20986;&#21147;&#12398;&#12459;&#12521;&#12512;&#19968;&#35239;</b></p><div class="table-contents"><table summary="mineBugHistory &#20986;&#21147;&#12398;&#12459;&#12521;&#12512;&#19968;&#35239;" border="1"><colgroup><col><col></colgroup><thead><tr><th align="left">&#34920;&#38988;</th><th align="left">&#30446;&#30340;</th></tr></thead><tbody><tr><td align="left">seq</td><td align="left">&#12471;&#12540;&#12465;&#12531;&#12473;&#30058;&#21495; (0 &#22987;&#12414;&#12426;&#12398;&#36899;&#32154;&#12375;&#12383;&#25972;&#25968;&#20516;)</td></tr><tr><td align="left">version</td><td align="left">&#12496;&#12540;&#12472;&#12519;&#12531;&#21517;</td></tr><tr><td align="left">time</td><td align="left">&#12522;&#12522;&#12540;&#12473;&#12373;&#12428;&#12383;&#26085;&#26178;</td></tr><tr><td align="left">classes</td><td align="left">&#20998;&#26512;&#12373;&#12428;&#12383;&#12463;&#12521;&#12473;&#25968;</td></tr><tr><td align="left">NCSS</td><td align="left">&#12467;&#12513;&#12531;&#12488;&#25991;&#12434;&#38500;&#12356;&#12383;&#21629;&#20196;&#25968; (Non Commenting Source Statements)</td></tr><tr><td align="left">added</td><td align="left">&#21069;&#22238;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#23384;&#22312;&#12375;&#12383;&#12463;&#12521;&#12473;&#12395;&#12362;&#12369;&#12427;&#26032;&#35215;&#35686;&#21578;&#25968;</td></tr><tr><td align="left">newCode</td><td align="left">&#21069;&#22238;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#23384;&#22312;&#12375;&#12394;&#12363;&#12387;&#12383;&#12463;&#12521;&#12473;&#12395;&#12362;&#12369;&#12427;&#26032;&#35215;&#35686;&#21578;&#25968;</td></tr><tr><td align="left">fixed</td><td align="left">&#29694;&#22312;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#23384;&#22312;&#12377;&#12427;&#12463;&#12521;&#12473;&#12395;&#12362;&#12369;&#12427;&#38500;&#21435;&#12373;&#12428;&#12383;&#35686;&#21578;&#25968;</td></tr><tr><td align="left">removed</td><td align="left">&#29694;&#22312;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#23384;&#22312;&#12375;&#12394;&#12356;&#12463;&#12521;&#12473;&#12398;&#21069;&#22238;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#12362;&#12369;&#12427;&#35686;&#21578;&#25968;</td></tr><tr><td align="left">retained</td><td align="left">&#29694;&#22312;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12392;&#21069;&#22238;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12398;&#20001;&#26041;&#12395;&#23384;&#22312;&#12377;&#12427;&#35686;&#21578;&#12398;&#25968;</td></tr><tr><td align="left">dead</td><td align="left">&#20197;&#21069;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#23384;&#22312;&#12375;&#12383;&#12364;&#29694;&#22312;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#12418;&#30452;&#21069;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#12418;&#23384;&#22312;&#12375;&#12394;&#12356;&#35686;&#21578;&#12398;&#25968;</td></tr><tr><td align="left">active</td><td align="left">&#29694;&#22312;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#23384;&#22312;&#12377;&#12427;&#35686;&#21578;&#32207;&#25968;</td></tr></tbody></table></div></div><br class="table-break"></div><div class="sect2" title="1.5. defectDensity"><div class="titlepage"><div><div><h3 class="title"><a name="defectDensity"></a>1.5. defectDensity</h3></div></div></div><p>&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#20840;&#20307;&#12362;&#12424;&#12403;&#12463;&#12521;&#12473;&#27598;&#12539;&#12497;&#12483;&#12465;&#12540;&#12472;&#27598;&#12398;&#19981;&#33391;&#23494;&#24230; (1000 NCSS &#27598;&#12398;&#35686;&#21578;&#25968;) &#12395;&#38306;&#12377;&#12427;&#24773;&#22577;&#12434;&#19968;&#35239;&#34920;&#31034;&#12391;&#12365;&#12414;&#12377;&#12290;&#27161;&#28310;&#20837;&#21147;&#12363;&#12425;&#35501;&#12415;&#36796;&#12416;&#22580;&#21512;&#12399;&#12501;&#12449;&#12452;&#12523;&#25351;&#23450;&#12394;&#12375;&#12391;&#12289;&#12381;&#12358;&#12391;&#12394;&#12369;&#12428;&#12400;&#12289;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12391;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12390;&#12289;&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;&#23455;&#34892;&#12375;&#12414;&#12377;&#12290;</p><p>&#20986;&#21147;&#12373;&#12428;&#12427;&#34920;&#12399;&#12289;&#27425;&#12395;&#31034;&#12377;&#12459;&#12521;&#12512;&#12363;&#12425;&#25104;&#12426;&#12414;&#12377;&#12290;&#12414;&#12383;&#12289;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#20840;&#20307;&#24773;&#22577;&#12398;&#34892;&#12289;&#12362;&#12424;&#12403;&#12289;4 &#20491;&#20197;&#19978;&#12398;&#35686;&#21578;&#12434;&#21547;&#12435;&#12391;&#12356;&#12427;&#21508;&#12497;&#12483;&#12465;&#12540;&#12472;&#24773;&#22577;&#12414;&#12383;&#12399;&#21508;&#12463;&#12521;&#12473;&#24773;&#22577;&#12398;&#34892;&#12418;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;</p><div class="table"><a name="defectDensityColumns"></a><p class="title"><b>&#34920;12.5 defectDensity &#20986;&#21147;&#12398;&#12459;&#12521;&#12512;&#19968;&#35239;</b></p><div class="table-contents"><table summary="defectDensity &#20986;&#21147;&#12398;&#12459;&#12521;&#12512;&#19968;&#35239;" border="1"><colgroup><col><col></colgroup><thead><tr><th align="left">&#34920;&#38988;</th><th align="left">&#30446;&#30340;</th></tr></thead><tbody><tr><td align="left">kind</td><td align="left">&#12503;&#12525;&#12472;&#12455;&#12463;&#12488; (project)&#12289;&#12497;&#12483;&#12465;&#12540;&#12472; (package) &#12414;&#12383;&#12399;&#12463;&#12521;&#12473; (class)</td></tr><tr><td align="left">name</td><td align="left">&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12289;&#12497;&#12483;&#12465;&#12540;&#12472;&#12414;&#12383;&#12399;&#12463;&#12521;&#12473;&#12398;&#21517;&#21069;</td></tr><tr><td align="left">density</td><td align="left"> 1000 NCSS &#27598;&#12398;&#35686;&#21578;&#25968;</td></tr><tr><td align="left">bugs</td><td align="left">&#35686;&#21578;&#25968;</td></tr><tr><td align="left">NCSS</td><td align="left">&#12467;&#12513;&#12531;&#12488;&#25991;&#12434;&#38500;&#12356;&#12383;&#21629;&#20196;&#25968; (Non Commenting Source Statements) </td></tr></tbody></table></div></div><br class="table-break"></div><div class="sect2" title="1.6. convertXmlToText"><div class="titlepage"><div><div><h3 class="title"><a name="convertXmlToText"></a>1.6. convertXmlToText</h3></div></div></div><p>&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;XML &#24418;&#24335;&#12398;&#12496;&#12464;&#35686;&#21578;&#12434;&#12289; 1 &#34892; 1 &#12496;&#12464;&#12398;&#12486;&#12461;&#12473;&#12488;&#24418;&#24335;&#12289;&#12414;&#12383;&#12399;&#12289;HTML&#24418;&#24335;&#12395;&#22793;&#25563;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#12371;&#12398;&#27231;&#33021;&#12399;&#12289; ant &#12363;&#12425;&#12418;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12414;&#12378;&#27425;&#12395;&#31034;&#12377;&#12424;&#12358;&#12395;&#12289;&#12499;&#12523;&#12489;&#12501;&#12449;&#12452;&#12523;&#12395; <span class="command"><strong>convertXmlToText</strong></span> &#12434; taskdef &#12391;&#23450;&#32681;&#12375;&#12414;&#12377; :</p><pre class="programlisting">
-
-&lt;taskdef name="convertXmlToText" classname="edu.umd.cs.findbugs.anttask.ConvertXmlToTextTask"&gt;
-    &lt;classpath refid="findbugs.lib" /&gt;
-&lt;/taskdef&gt;
-
-</pre><p>&#12371;&#12398; ant &#12479;&#12473;&#12463;&#12395;&#25351;&#23450;&#12391;&#12365;&#12427;&#23646;&#24615;&#12434;&#12289;&#19979;&#34920;&#12395;&#19968;&#35239;&#12391;&#31034;&#12375;&#12414;&#12377;&#12290;</p><div class="table"><a name="convertXmlToTextTable"></a><p class="title"><b>&#34920;12.6 convertXmlToText &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;</b></p><div class="table-contents"><table summary="convertXmlToText &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;</th><th align="left">Ant &#23646;&#24615;</th><th align="left">&#30446;&#30340;</th></tr></thead><tbody><tr><td align="left">&nbsp;</td><td align="left">input="&lt;filename&gt;"</td><td align="left">&#20837;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">&nbsp;</td><td align="left">output="&lt;filename&gt;"</td><td align="left">&#20986;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-longBugCodes</td><td align="left">longBugCodes="[true|false]"</td><td align="left">2 &#25991;&#23383;&#12398;&#12496;&#12464;&#30053;&#31216;&#12398;&#20195;&#12431;&#12426;&#12395;&#12289;&#30465;&#30053;&#12394;&#12375;&#12398;&#12496;&#12464;&#12497;&#12479;&#12540;&#12531;&#12467;&#12540;&#12489;&#12434;&#20351;&#29992;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">&nbsp;</td><td align="left">format="text"</td><td align="left">&#12503;&#12524;&#12540;&#12531;&#12486;&#12461;&#12473;&#12488;&#12398;&#20986;&#21147;&#12364;&#20316;&#25104;&#12373;&#12428;&#12414;&#12377;&#12290;1 &#34892;&#12395;&#12388;&#12365; 1 &#12388;&#12398;&#12496;&#12464;&#12364;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#26178;&#12398;&#12487;&#12501;&#12457;&#12523;&#12488;&#12391;&#12377;&#12290;</td></tr><tr><td align="left">-html[:stylesheet]</td><td align="left">format="html:&lt;stylesheet&gt;"</td><td align="left">&#25351;&#23450;&#12373;&#12428;&#12383;&#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12434;&#20351;&#29992;&#12375;&#12390;&#20986;&#21147;&#12364;&#20316;&#25104;&#12373;&#12428;&#12414;&#12377; (&#19979;&#35352;&#21442;&#29031;) &#12290;&#30465;&#30053;&#12375;&#12383;&#22580;&#21512;&#12399;&#12289; default.xsl &#12364;&#20351;&#29992;&#12373;&#12428;&#12414;&#12377;&#12290;</td></tr></tbody></table></div></div><br class="table-break"><p>-html/format &#12458;&#12503;&#12471;&#12519;&#12531;&#12395;&#12399;&#12289;plain.xsl &#12289; default.xsl &#12289; fancy.xsl &#12289; fancy-hist.xsl &#12414;&#12383;&#12399; &#12518;&#12540;&#12470;&#33258;&#36523;&#12364;&#20316;&#25104;&#12375;&#12383; XSL &#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12398;&#12356;&#12378;&#12428;&#12363;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12458;&#12503;&#12471;&#12519;&#12531;&#21517;&#12434;&#12424;&#12381;&#12395;&#12289; html &#20197;&#22806;&#12398;&#24418;&#24335;&#12434;&#20986;&#21147;&#12377;&#12427;&#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12418;&#12391;&#12365;&#12414;&#12377;&#12290;FindBugs &#12395;&#21547;&#12414;&#12428;&#12390;&#12356;&#12427;&#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;(&#19978;&#36848;)&#20197;&#22806;&#12398;&#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12434;&#20351;&#29992;&#12377;&#12427;&#22580;&#21512;&#12399;&#12289;&#12458;&#12503;&#12471;&#12519;&#12531; -html/format &#12391;&#24403;&#35442;&#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12408;&#12398;&#12497;&#12473;&#12414;&#12383;&#12399; URL &#12434;&#25351;&#23450;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></div><div class="sect2" title="1.7. setBugDatabaseInfo"><div class="titlepage"><div><div><h3 class="title"><a name="setBugDatabaseInfo"></a>1.7. setBugDatabaseInfo</h3></div></div></div><p>&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#25351;&#23450;&#12375;&#12383;&#12496;&#12464;&#35686;&#21578;&#12395;&#12513;&#12479;&#24773;&#22577;&#12434;&#35373;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12395;&#12399;&#27425;&#12395;&#31034;&#12377;&#12458;&#12503;&#12471;&#12519;&#12531;&#12364;&#12354;&#12426;&#12414;&#12377;:</p><p>&#12371;&#12398;&#27231;&#33021;&#12399;&#12289; ant &#12363;&#12425;&#12418;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12414;&#12378;&#27425;&#12395;&#31034;&#12377;&#12424;&#12358;&#12395;&#12289;&#12499;&#12523;&#12489;&#12501;&#12449;&#12452;&#12523;&#12395; <span class="command"><strong>setBugDatabaseInfo</strong></span> &#12434; taskdef &#12391;&#23450;&#32681;&#12375;&#12414;&#12377; :</p><pre class="programlisting">
-
-&lt;taskdef name="setBugDatabaseInfo" classname="edu.umd.cs.findbugs.anttask.SetBugDatabaseInfoTask"&gt;
-    &lt;classpath refid="findbugs.lib" /&gt;
-&lt;/taskdef&gt;
-
-</pre><p>&#12371;&#12398; ant &#12479;&#12473;&#12463;&#12395;&#25351;&#23450;&#12391;&#12365;&#12427;&#23646;&#24615;&#12434;&#12289;&#19979;&#34920;&#12395;&#19968;&#35239;&#12391;&#31034;&#12375;&#12414;&#12377;&#12290;&#20837;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12377;&#12427;&#12395;&#12399;&#12289; <code class="literal">input</code>  &#23646;&#24615;&#12434;&#20351;&#29992;&#12377;&#12427;&#12363;&#12289; <code class="literal">&lt;datafile&gt;</code> &#35201;&#32032;&#12434;&#20837;&#12428;&#23376;&#12395;&#12375;&#12390;&#20837;&#12428;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#27425;&#12395;&#12289;&#20363;&#12434;&#31034;&#12375;&#12414;&#12377;:</p><pre class="programlisting">
-
-&lt;setBugDatabaseInfo home="${findbugs.home}" ...&gt;
-    &lt;datafile name="analyze.xml"/&gt;
-&lt;/setBugDatabaseInfo&gt;
-
-</pre><div class="table"><a name="setBugDatabaseInfoOptions"></a><p class="title"><b>&#34920;12.7 setBugDatabaseInfo &#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;</b></p><div class="table-contents"><table summary="setBugDatabaseInfo &#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;</th><th align="left">Ant &#23646;&#24615;</th><th align="left">&#30446;&#30340;</th></tr></thead><tbody><tr><td align="left">&nbsp;</td><td align="left">input="&lt;file&gt;"</td><td align="left">&#20837;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">&nbsp;</td><td align="left">output="&lt;file&gt;"</td><td align="left">&#20986;&#21147;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-name &lt;name&gt;</td><td align="left">name="&lt;name&gt;"</td><td align="left">&#26368;&#26032;&#12522;&#12499;&#12472;&#12519;&#12531;&#12398;&#21517;&#21069;&#12434;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-timestamp &lt;when&gt;</td><td align="left">timestamp="&lt;when&gt;"</td><td align="left">&#26368;&#26032;&#12522;&#12499;&#12472;&#12519;&#12531;&#12398;&#12479;&#12452;&#12512;&#12539;&#12473;&#12479;&#12531;&#12503;&#12434;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-source &lt;directory&gt;</td><td align="left">source="&lt;directory&gt;"</td><td align="left">&#12477;&#12540;&#12473;&#12434;&#26908;&#32034;&#12377;&#12427;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12434;&#36861;&#21152;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-findSource &lt;directory&gt;</td><td align="left">findSource="&lt;directory&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#20869;&#12434;&#26908;&#32034;&#12375;&#12390;&#38306;&#36899;&#12377;&#12427;&#12477;&#12540;&#12473;&#12398;&#22580;&#25152;&#12434;&#36861;&#21152;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-suppress &lt;filter file&gt;</td><td align="left">suppress="&lt;filter file&gt;"</td><td align="left">&#25351;&#23450;&#12375;&#12383;&#12501;&#12449;&#12452;&#12523;&#12395;&#19968;&#33268;&#12377;&#12427;&#35686;&#21578;&#12434;&#25233;&#27490;&#12375;&#12414;&#12377; (&#20197;&#21069;&#12395;&#25351;&#23450;&#12375;&#12383;&#25233;&#27490;&#35373;&#23450;&#12399;&#32622;&#12365;&#25563;&#12360;&#12425;&#12428;&#12414;&#12377;)&#12290;</td></tr><tr><td align="left">-withMessages</td><td align="left">withMessages="[true|false]"</td><td align="left">XML&#12395;&#12486;&#12461;&#12473;&#12488;&#12513;&#12483;&#12475;&#12540;&#12472;&#12434;&#36861;&#21152;&#12375;&#12414;&#12377;&#12290;</td></tr><tr><td align="left">-resetSource</td><td align="left">resetSource="[true|false]"</td><td align="left">&#12477;&#12540;&#12473;&#26908;&#32034;&#12497;&#12473;&#12434;&#12377;&#12409;&#12390;&#21066;&#38500;&#12375;&#12414;&#12377;&#12290;</td></tr></tbody></table></div></div><br class="table-break"></div><div class="sect2" title="1.8. listBugDatabaseInfo"><div class="titlepage"><div><div><h3 class="title"><a name="listBugDatabaseInfo"></a>1.8. listBugDatabaseInfo</h3></div></div></div><p>&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12398;&#23455;&#34892;&#12395;&#12362;&#12356;&#12390;&#12399;&#12289;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12391; 0 &#20491;&#20197;&#19978;&#12398; xml &#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12501;&#12449;&#12452;&#12523;&#21517;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12501;&#12449;&#12452;&#12523;&#21517;&#12434;1&#12388;&#12418;&#25351;&#23450;&#12375;&#12394;&#12369;&#12428;&#12400;&#12289;&#27161;&#28310;&#20986;&#21147;&#12363;&#12425;&#35501;&#12415;&#36796;&#12415;&#12434;&#34892;&#12356;&#12486;&#12540;&#12502;&#12523;&#12398;&#12504;&#12483;&#12480;&#12540;&#12399;&#29983;&#25104;&#12373;&#12428;&#12414;&#12379;&#12435;&#12290;</p><p>&#12371;&#12398;&#12467;&#12510;&#12531;&#12489;&#12395;&#12399; 1 &#12388;&#12384;&#12369;&#12458;&#12503;&#12471;&#12519;&#12531;&#12364;&#12354;&#12426;&#12414;&#12377; : <code class="option">-formatDates</code> &#12434;&#25351;&#23450;&#12377;&#12427;&#12392;&#12486;&#12461;&#12473;&#12488;&#24418;&#24335;&#12391;&#12487;&#12540;&#12479;&#12364;&#25551;&#30011;&#12373;&#12428;&#12414;&#12377;&#12290;</p><p>&#20986;&#21147;&#12373;&#12428;&#12427;&#34920;&#12399;&#12289;&#21508;&#12496;&#12464;&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12372;&#12392;&#12395;&#34892;&#12434;&#25345;&#12385;&#12289;&#27425;&#12395;&#31034;&#12377;&#12459;&#12521;&#12512;&#12363;&#12425;&#25104;&#12426;&#12414;&#12377; :</p><div class="table"><a name="listBugDatabaseInfoColumns"></a><p class="title"><b>&#34920;12.8 listBugDatabaseInfo &#12459;&#12521;&#12512;&#19968;&#35239;</b></p><div class="table-contents"><table summary="listBugDatabaseInfo &#12459;&#12521;&#12512;&#19968;&#35239;" border="1"><colgroup><col><col></colgroup><thead><tr><th align="left">&#12459;&#12521;&#12512;</th><th align="left">&#30446;&#30340;</th></tr></thead><tbody><tr><td align="left">version</td><td align="left">&#12496;&#12540;&#12472;&#12519;&#12531;&#21517;</td></tr><tr><td align="left">time</td><td align="left">&#12522;&#12522;&#12540;&#12473;&#12373;&#12428;&#12383;&#26085;&#26178;</td></tr><tr><td align="left">classes</td><td align="left">&#20998;&#26512;&#12373;&#12428;&#12383;&#12463;&#12521;&#12473;&#25968;</td></tr><tr><td align="left">NCSS</td><td align="left">&#12467;&#12513;&#12531;&#12488;&#25991;&#12434;&#38500;&#12356;&#12383;&#21629;&#20196;&#25968; (Non Commenting Source Statements)</td></tr><tr><td align="left">total</td><td align="left">&#20840;&#35686;&#21578;&#25968;</td></tr><tr><td align="left">high</td><td align="left">&#20778;&#20808;&#24230;(&#39640;)&#12398;&#35686;&#21578;&#12398;&#32207;&#25968;</td></tr><tr><td align="left">medium</td><td align="left">&#20778;&#20808;&#24230;(&#20013;)&#12398;&#35686;&#21578;&#12398;&#32207;&#25968;</td></tr><tr><td align="left">low</td><td align="left">&#20778;&#20808;&#24230;(&#20302;)&#12398;&#35686;&#21578;&#12398;&#32207;&#25968;</td></tr><tr><td align="left">filename</td><td align="left">&#12487;&#12540;&#12479;&#12505;&#12540;&#12473;&#12398;&#12501;&#12449;&#12452;&#12523;&#21517;</td></tr></tbody></table></div></div><br class="table-break"></div></div><div class="sect1" title="2. &#20363;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="examples"></a>2. &#20363;</h2></div></div></div><div class="sect2" title="2.1. &#25552;&#20379;&#12373;&#12428;&#12383;&#12471;&#12455;&#12523;&#12539;&#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#20351;&#29992;&#12375;&#12390;&#12398;&#23653;&#27508;&#12510;&#12452;&#12491;&#12531;&#12464;"><div class="titlepage"><div><div><h3 class="title"><a name="unixscriptsexamples"></a>2.1. &#25552;&#20379;&#12373;&#12428;&#12383;&#12471;&#12455;&#12523;&#12539;&#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#20351;&#29992;&#12375;&#12390;&#12398;&#23653;&#27508;&#12510;&#12452;&#12491;&#12531;&#12464;</h3></div></div></div><p>&#20197;&#19979;&#12399;&#12377;&#12409;&#12390;&#12289; jdk1.6.0-b12, jdk1.6.0-b13, ..., jdk1.6.0-b60 &#12398;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12395;&#23550;&#12375;&#12390;&#12467;&#12510;&#12531;&#12489;&#12434;&#23455;&#34892;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;</p><p>&#20197;&#19979;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;&#23455;&#34892;&#12375;&#12390;&#12415;&#12414;&#12377; :</p><pre class="screen">
-computeBugHistory jdk1.6.0-b* | filterBugs -bugPattern IL_ | mineBugHistory -formatDates
-</pre><p>&#12377;&#12427;&#12392;&#12289;&#27425;&#12398;&#12424;&#12358;&#12394;&#20986;&#21147;&#12364;&#34892;&#12431;&#12428;&#12414;&#12377; :</p><pre class="screen">
-seq	version	time	classes	NCSS	added	newCode	fixed	removed	retained	dead	active
-0	jdk1.6.0-b12	"Thu Nov 11 09:07:20 EST 2004"	13128	811569	0	4	0	0	0	0	4
-1	jdk1.6.0-b13	"Thu Nov 18 06:02:06 EST 2004"	13128	811570	0	0	0	0	4	0	4
-2	jdk1.6.0-b14	"Thu Dec 02 06:12:26 EST 2004"	13145	811786	0	0	2	0	2	0	2
-3	jdk1.6.0-b15	"Thu Dec 09 06:07:04 EST 2004"	13174	811693	0	0	1	0	1	2	1
-4	jdk1.6.0-b16	"Thu Dec 16 06:21:28 EST 2004"	13175	811715	0	0	0	0	1	3	1
-5	jdk1.6.0-b17	"Thu Dec 23 06:27:22 EST 2004"	13176	811974	0	0	0	0	1	3	1
-6	jdk1.6.0-b19	"Thu Jan 13 06:41:16 EST 2005"	13176	812011	0	0	0	0	1	3	1
-7	jdk1.6.0-b21	"Thu Jan 27 05:57:52 EST 2005"	13177	812173	0	0	0	0	1	3	1
-8	jdk1.6.0-b23	"Thu Feb 10 05:44:36 EST 2005"	13179	812188	0	0	0	0	1	3	1
-9	jdk1.6.0-b26	"Thu Mar 03 06:04:02 EST 2005"	13199	811770	0	0	0	0	1	3	1
-10	jdk1.6.0-b27	"Thu Mar 10 04:48:38 EST 2005"	13189	812440	0	0	0	0	1	3	1
-11	jdk1.6.0-b28	"Thu Mar 17 02:54:22 EST 2005"	13185	812056	0	0	0	0	1	3	1
-12	jdk1.6.0-b29	"Thu Mar 24 03:09:20 EST 2005"	13117	809468	0	0	0	0	1	3	1
-13	jdk1.6.0-b30	"Thu Mar 31 02:53:32 EST 2005"	13118	809501	0	0	0	0	1	3	1
-14	jdk1.6.0-b31	"Thu Apr 07 03:00:14 EDT 2005"	13117	809572	0	0	0	0	1	3	1
-15	jdk1.6.0-b32	"Thu Apr 14 02:56:56 EDT 2005"	13169	811096	0	0	0	0	1	3	1
-16	jdk1.6.0-b33	"Thu Apr 21 02:46:22 EDT 2005"	13187	811942	0	0	0	0	1	3	1
-17	jdk1.6.0-b34	"Thu Apr 28 02:49:00 EDT 2005"	13195	813488	0	1	0	0	1	3	2
-18	jdk1.6.0-b35	"Thu May 05 02:49:04 EDT 2005"	13457	829837	0	0	0	0	2	3	2
-19	jdk1.6.0-b36	"Thu May 12 02:59:46 EDT 2005"	13462	831278	0	0	0	0	2	3	2
-20	jdk1.6.0-b37	"Thu May 19 02:55:08 EDT 2005"	13464	831971	0	0	0	0	2	3	2
-21	jdk1.6.0-b38	"Thu May 26 03:08:16 EDT 2005"	13564	836565	0	0	0	0	2	3	2
-22	jdk1.6.0-b39	"Fri Jun 03 03:10:48 EDT 2005"	13856	849992	0	1	0	0	2	3	3
-23	jdk1.6.0-b40	"Thu Jun 09 03:30:28 EDT 2005"	15972	959619	0	2	0	0	3	3	5
-24	jdk1.6.0-b41	"Thu Jun 16 03:19:22 EDT 2005"	15972	959619	0	0	0	0	5	3	5
-25	jdk1.6.0-b42	"Fri Jun 24 03:38:54 EDT 2005"	15966	958581	0	0	0	0	5	3	5
-26	jdk1.6.0-b43	"Thu Jul 14 03:09:34 EDT 2005"	16041	960544	0	0	0	0	5	3	5
-27	jdk1.6.0-b44	"Thu Jul 21 03:05:54 EDT 2005"	16041	960547	0	0	0	0	5	3	5
-28	jdk1.6.0-b45	"Thu Jul 28 03:26:10 EDT 2005"	16037	960606	0	0	1	0	4	3	4
-29	jdk1.6.0-b46	"Thu Aug 04 03:02:48 EDT 2005"	15936	951355	0	0	0	0	4	4	4
-30	jdk1.6.0-b47	"Thu Aug 11 03:18:56 EDT 2005"	15964	952387	0	0	1	0	3	4	3
-31	jdk1.6.0-b48	"Thu Aug 18 08:10:40 EDT 2005"	15970	953421	0	0	0	0	3	5	3
-32	jdk1.6.0-b49	"Thu Aug 25 03:24:38 EDT 2005"	16048	958940	0	0	0	0	3	5	3
-33	jdk1.6.0-b50	"Thu Sep 01 01:52:40 EDT 2005"	16287	974937	1	0	0	0	3	5	4
-34	jdk1.6.0-b51	"Thu Sep 08 01:55:36 EDT 2005"	16362	979377	0	0	0	0	4	5	4
-35	jdk1.6.0-b52	"Thu Sep 15 02:04:08 EDT 2005"	16477	979399	0	0	0	0	4	5	4
-36	jdk1.6.0-b53	"Thu Sep 22 02:00:28 EDT 2005"	16019	957900	0	0	1	0	3	5	3
-37	jdk1.6.0-b54	"Thu Sep 29 01:54:34 EDT 2005"	16019	957900	0	0	0	0	3	6	3
-38	jdk1.6.0-b55	"Thu Oct 06 01:54:14 EDT 2005"	16051	959014	0	0	0	0	3	6	3
-39	jdk1.6.0-b56	"Thu Oct 13 01:54:12 EDT 2005"	16211	970835	0	0	0	0	3	6	3
-40	jdk1.6.0-b57	"Thu Oct 20 01:55:26 EDT 2005"	16279	971627	0	0	0	0	3	6	3
-41	jdk1.6.0-b58	"Thu Oct 27 01:56:30 EDT 2005"	16283	971945	0	0	0	0	3	6	3
-42	jdk1.6.0-b59	"Thu Nov 03 01:56:58 EST 2005"	16232	972193	0	0	0	0	3	6	3
-43	jdk1.6.0-b60	"Thu Nov 10 01:54:18 EST 2005"	16235	972346	0	0	0	0	3	6	3
-</pre><p>&#27425;&#12395;&#31034;&#12377;&#12467;&#12510;&#12531;&#12489;&#12434;&#23455;&#34892;&#12377;&#12427;&#12392;&#12289;db.xml &#20013;&#38291;&#12501;&#12449;&#12452;&#12523;&#12434;&#29983;&#25104;&#12377;&#12427;&#12371;&#12392;&#12394;&#12367;&#30452;&#25509;&#21516;&#12376;&#24773;&#22577;&#12434;&#20316;&#25104;&#12391;&#12365;&#12414;&#12377;&#12290;</p><pre class="screen">
-computeBugHistory  jdk1.6.0-b*/jre/lib/rt.xml | filterBugs -bugPattern IL_ db.xml | mineBugHistory -formatDates
-</pre><p>&#12371;&#12398;&#24773;&#22577;&#12434;&#20351;&#12387;&#12390;&#12289; Sun JDK1.6.0 &#12398;&#21508;&#12499;&#12523;&#12489;&#12395;&#12362;&#12356;&#12390; FindBugs &#12395;&#12424;&#12387;&#12390;&#30330;&#35211;&#12373;&#12428;&#12383;&#28961;&#38480;&#20877;&#36215;&#12523;&#12540;&#12503;&#12398;&#25968;&#12434;&#34920;&#12377;&#12464;&#12521;&#12501;&#12434;&#34920;&#31034;&#12375;&#12414;&#12377;&#12290;&#38738;&#33394;&#12398;&#38936;&#22495;&#12399;&#12289;&#24403;&#35442;&#12499;&#12523;&#12489;&#12395;&#12362;&#12369;&#12427;&#28961;&#38480;&#20877;&#36215;&#12523;&#12540;&#12503;&#12398;&#25968;&#12434;&#34920;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#12381;&#12398;&#19978;&#12395;&#25551;&#12363;&#12428;&#12390;&#12356;&#12427;&#36196;&#33394;&#12398;&#38936;&#22495;&#12399;&#12289;&#20197;&#21069;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#12399;&#23384;&#22312;&#12375;&#12383;&#12364;&#24403;&#35442;&#12496;&#12540;&#12472;&#12519;&#12531;&#12391;&#12399;&#38500;&#21435;&#12373;&#12428;&#12383;&#28961;&#38480;&#20877;&#36215;&#12523;&#12540;&#12503;&#12398;&#25968;&#12434;&#34920;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290; (&#12375;&#12383;&#12364;&#12387;&#12390;&#12289;&#36196;&#33394;&#12398;&#38936;&#22495;&#12392;&#38738;&#33394;&#12398;&#38936;&#22495;&#12434;&#36275;&#12375;&#21512;&#12431;&#12379;&#12383;&#39640;&#12373;&#12399;&#27770;&#12375;&#12390;&#28187;&#23569;&#12375;&#12394;&#12356;&#12371;&#12392;&#12364;&#20445;&#35388;&#12373;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;&#12381;&#12375;&#12390;&#12289;&#26032;&#12383;&#12395;&#28961;&#38480;&#20877;&#36215;&#12523;&#12540;&#12503;&#12398;&#12496;&#12464;&#12364;&#25345;&#12385;&#36796;&#12414;&#12428;&#12383;&#26178;&#28857;&#12391;&#22679;&#21152;&#12375;&#12414;&#12377;) &#12290;&#36196;&#33394;&#12398;&#38936;&#22495;&#12398;&#39640;&#12373;&#12399;&#12289;&#24403;&#35442;&#12496;&#12540;&#12472;&#12519;&#12531;&#12395;&#12362;&#12356;&#12390;&#20462;&#27491;&#12414;&#12383;&#12399;&#21066;&#38500;&#12373;&#12428;&#12383;&#12496;&#12464;&#25968;&#12398;&#21512;&#35336;&#12391;&#31639;&#20986;&#12373;&#12428;&#12414;&#12377;&#12290;&#12496;&#12540;&#12472;&#12519;&#12531; 13 &#12362;&#12424;&#12403; 14 &#12395;&#12362;&#12356;&#12390;&#35211;&#12425;&#12428;&#12427;&#28187;&#23569;&#12399;&#12289; FindBugs &#12434;&#20351;&#29992;&#12375;&#12390;&#35211;&#12388;&#12363;&#12387;&#12383; JDK &#12398;&#12496;&#12464;&#12398;&#22577;&#21578;&#12434; Sun &#12364;&#21463;&#12369;&#21462;&#12387;&#12383;&#12371;&#12392;&#12395;&#12424;&#12427;&#12418;&#12398;&#12391;&#12377;&#12290;</p><div class="mediaobject"><img src="infiniteRecursiveLoops.png"></div><p>db.xml &#12501;&#12449;&#12452;&#12523;&#12399;&#12289; jdk1.6.0 &#12398;&#12377;&#12409;&#12390;&#12398;&#12499;&#12523;&#12489;&#12395;&#23550;&#12377;&#12427;&#26908;&#32034;&#32080;&#26524;&#12434;&#20445;&#25345;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#12375;&#12383;&#12364;&#12387;&#12390;&#12289;&#27425;&#12395;&#31034;&#12377;&#12467;&#12510;&#12531;&#12489;&#12434;&#23455;&#34892;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#20778;&#20808;&#24230;(&#39640;)&#12414;&#12383;&#12399;&#20778;&#20808;&#24230;(&#20302;)&#12398;&#27491;&#30906;&#24615;&#12395;&#38306;&#12377;&#12427;&#35686;&#21578;&#12398;&#23653;&#27508;&#12364;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377; :</p><pre class="screen">
-filterBugs -priority M -category C db.xml | mineBugHistory -formatDates
-</pre><p>&#20316;&#25104;&#12373;&#12428;&#12427;&#34920;&#12398;&#20363; :</p><pre class="screen">
-seq	version	time	classes	NCSS	added	newCode	fixed	removed	retained	dead	active
-0	jdk1.6.0-b12	"Thu Nov 11 09:07:20 EST 2004"	13128	811569	0	1075	0	0	0	0	1075
-1	jdk1.6.0-b13	"Thu Nov 18 06:02:06 EST 2004"	13128	811570	0	0	0	0	1075	0	1075
-2	jdk1.6.0-b14	"Thu Dec 02 06:12:26 EST 2004"	13145	811786	3	0	6	0	1069	0	1072
-3	jdk1.6.0-b15	"Thu Dec 09 06:07:04 EST 2004"	13174	811693	2	1	3	0	1069	6	1072
-4	jdk1.6.0-b16	"Thu Dec 16 06:21:28 EST 2004"	13175	811715	0	0	1	0	1071	9	1071
-5	jdk1.6.0-b17	"Thu Dec 23 06:27:22 EST 2004"	13176	811974	0	0	1	0	1070	10	1070
-6	jdk1.6.0-b19	"Thu Jan 13 06:41:16 EST 2005"	13176	812011	0	0	0	0	1070	11	1070
-7	jdk1.6.0-b21	"Thu Jan 27 05:57:52 EST 2005"	13177	812173	0	0	1	0	1069	11	1069
-8	jdk1.6.0-b23	"Thu Feb 10 05:44:36 EST 2005"	13179	812188	0	0	0	0	1069	12	1069
-9	jdk1.6.0-b26	"Thu Mar 03 06:04:02 EST 2005"	13199	811770	0	0	2	1	1066	12	1066
-10	jdk1.6.0-b27	"Thu Mar 10 04:48:38 EST 2005"	13189	812440	1	0	1	1	1064	15	1065
-11	jdk1.6.0-b28	"Thu Mar 17 02:54:22 EST 2005"	13185	812056	0	0	0	0	1065	17	1065
-12	jdk1.6.0-b29	"Thu Mar 24 03:09:20 EST 2005"	13117	809468	3	0	8	26	1031	17	1034
-13	jdk1.6.0-b30	"Thu Mar 31 02:53:32 EST 2005"	13118	809501	0	0	0	0	1034	51	1034
-14	jdk1.6.0-b31	"Thu Apr 07 03:00:14 EDT 2005"	13117	809572	0	0	0	0	1034	51	1034
-15	jdk1.6.0-b32	"Thu Apr 14 02:56:56 EDT 2005"	13169	811096	1	1	0	1	1033	51	1035
-16	jdk1.6.0-b33	"Thu Apr 21 02:46:22 EDT 2005"	13187	811942	3	0	2	1	1032	52	1035
-17	jdk1.6.0-b34	"Thu Apr 28 02:49:00 EDT 2005"	13195	813488	0	1	0	0	1035	55	1036
-18	jdk1.6.0-b35	"Thu May 05 02:49:04 EDT 2005"	13457	829837	0	36	2	0	1034	55	1070
-19	jdk1.6.0-b36	"Thu May 12 02:59:46 EDT 2005"	13462	831278	0	0	0	0	1070	57	1070
-20	jdk1.6.0-b37	"Thu May 19 02:55:08 EDT 2005"	13464	831971	0	1	1	0	1069	57	1070
-21	jdk1.6.0-b38	"Thu May 26 03:08:16 EDT 2005"	13564	836565	1	7	2	6	1062	58	1070
-22	jdk1.6.0-b39	"Fri Jun 03 03:10:48 EDT 2005"	13856	849992	6	39	5	0	1065	66	1110
-23	jdk1.6.0-b40	"Thu Jun 09 03:30:28 EDT 2005"	15972	959619	7	147	11	0	1099	71	1253
-24	jdk1.6.0-b41	"Thu Jun 16 03:19:22 EDT 2005"	15972	959619	0	0	0	0	1253	82	1253
-25	jdk1.6.0-b42	"Fri Jun 24 03:38:54 EDT 2005"	15966	958581	3	0	1	2	1250	82	1253
-26	jdk1.6.0-b43	"Thu Jul 14 03:09:34 EDT 2005"	16041	960544	5	11	15	8	1230	85	1246
-27	jdk1.6.0-b44	"Thu Jul 21 03:05:54 EDT 2005"	16041	960547	0	0	0	0	1246	108	1246
-28	jdk1.6.0-b45	"Thu Jul 28 03:26:10 EDT 2005"	16037	960606	19	0	2	0	1244	108	1263
-29	jdk1.6.0-b46	"Thu Aug 04 03:02:48 EDT 2005"	15936	951355	13	1	1	32	1230	110	1244
-30	jdk1.6.0-b47	"Thu Aug 11 03:18:56 EDT 2005"	15964	952387	163	8	7	20	1217	143	1388
-31	jdk1.6.0-b48	"Thu Aug 18 08:10:40 EDT 2005"	15970	953421	0	0	0	0	1388	170	1388
-32	jdk1.6.0-b49	"Thu Aug 25 03:24:38 EDT 2005"	16048	958940	1	11	1	0	1387	170	1399
-33	jdk1.6.0-b50	"Thu Sep 01 01:52:40 EDT 2005"	16287	974937	19	27	16	7	1376	171	1422
-34	jdk1.6.0-b51	"Thu Sep 08 01:55:36 EDT 2005"	16362	979377	1	15	3	0	1419	194	1435
-35	jdk1.6.0-b52	"Thu Sep 15 02:04:08 EDT 2005"	16477	979399	0	0	1	1	1433	197	1433
-36	jdk1.6.0-b53	"Thu Sep 22 02:00:28 EDT 2005"	16019	957900	13	12	16	20	1397	199	1422
-37	jdk1.6.0-b54	"Thu Sep 29 01:54:34 EDT 2005"	16019	957900	0	0	0	0	1422	235	1422
-38	jdk1.6.0-b55	"Thu Oct 06 01:54:14 EDT 2005"	16051	959014	1	4	7	0	1415	235	1420
-39	jdk1.6.0-b56	"Thu Oct 13 01:54:12 EDT 2005"	16211	970835	6	8	37	0	1383	242	1397
-40	jdk1.6.0-b57	"Thu Oct 20 01:55:26 EDT 2005"	16279	971627	0	0	0	0	1397	279	1397
-41	jdk1.6.0-b58	"Thu Oct 27 01:56:30 EDT 2005"	16283	971945	0	1	1	0	1396	279	1397
-42	jdk1.6.0-b59	"Thu Nov 03 01:56:58 EST 2005"	16232	972193	6	0	5	0	1392	280	1398
-43	jdk1.6.0-b60	"Thu Nov 10 01:54:18 EST 2005"	16235	972346	0	0	0	0	1398	285	1398
-44	jdk1.6.0-b61	"Thu Nov 17 01:58:42 EST 2005"	16202	971134	2	0	4	0	1394	285	1396
-</pre></div><div class="sect2" title="2.2. &#22679;&#20998;&#23653;&#27508;&#12513;&#12531;&#12486;&#12490;&#12531;&#12473;"><div class="titlepage"><div><div><h3 class="title"><a name="incrementalhistory"></a>2.2. &#22679;&#20998;&#23653;&#27508;&#12513;&#12531;&#12486;&#12490;&#12531;&#12473;</h3></div></div></div><p>&#20206;&#12395;&#12289; db.xml &#12364;&#12499;&#12523;&#12489; b12 - b60 &#12395;&#23550;&#12377;&#12427; findbugs &#23455;&#34892;&#32080;&#26524;&#12434;&#20445;&#25345;&#12375;&#12390;&#12356;&#12427;&#22580;&#21512;&#12289;&#27425;&#12395;&#31034;&#12377;&#12467;&#12510;&#12531;&#12489;&#12434;&#23455;&#34892;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289; db.xml &#12395; b61 &#12395;&#23550;&#12377;&#12427;&#23455;&#34892;&#32080;&#26524;&#12434;&#36861;&#21152;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377; :</p><pre class="screen">
-computeBugHistory -output db.xml db.xml jdk1.6.0-b61/jre/lib/rt.xml
-</pre></div></div><div class="sect1" title="3. Ant &#12398;&#20363;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="antexample"></a>3. Ant &#12398;&#20363;</h2></div></div></div><p>findbugs &#12398;&#23455;&#34892;&#12392;&#12381;&#12398;&#24460;&#12398;&#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464;&#12484;&#12540;&#12523;&#12398;&#27963;&#29992;&#12398;&#20001;&#26041;&#12434;&#23455;&#34892;&#12375;&#12390;&#12356;&#12427; ant &#12473;&#12463;&#12522;&#12503;&#12488;&#12398;&#23436;&#20840;&#12394;&#20363;&#12434;&#20197;&#19979;&#12395;&#31034;&#12375;&#12414;&#12377; :</p><pre class="screen">
-
-&lt;project name="analyze_asm_util" default="findbugs"&gt;
-   &lt;!-- findbugs &#12479;&#12473;&#12463;&#23450;&#32681; --&gt;
-   &lt;property name="findbugs.home" value="/Users/ben/Documents/workspace/findbugs/findbugs" /&gt;
-   &lt;property name="jvmargs" value="-server -Xss1m -Xmx800m -Duser.language=en -Duser.region=EN -Dfindbugs.home=${findbugs.home}" /&gt;
-
-    &lt;path id="findbugs.lib"&gt;
-      &lt;fileset dir="${findbugs.home}/lib"&gt;
-         &lt;include name="findbugs-ant.jar"/&gt;
-      &lt;/fileset&gt;
-   &lt;/path&gt;
-
-   &lt;taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"&gt;
-      &lt;classpath refid="findbugs.lib" /&gt;
-   &lt;/taskdef&gt;
-
-   &lt;taskdef name="computeBugHistory" classname="edu.umd.cs.findbugs.anttask.ComputeBugHistoryTask"&gt;
-      &lt;classpath refid="findbugs.lib" /&gt;
-   &lt;/taskdef&gt;
-
-   &lt;taskdef name="setBugDatabaseInfo" classname="edu.umd.cs.findbugs.anttask.SetBugDatabaseInfoTask"&gt;
-      &lt;classpath refid="findbugs.lib" /&gt;
-   &lt;/taskdef&gt;
-
-   &lt;taskdef name="mineBugHistory" classname="edu.umd.cs.findbugs.anttask.MineBugHistoryTask"&gt;
-      &lt;classpath refid="findbugs.lib" /&gt;
-   &lt;/taskdef&gt;
-
-   &lt;!-- findbugs &#12479;&#12473;&#12463;&#23450;&#32681; --&gt;
-   &lt;target name="findbugs"&gt;
-      &lt;antcall target="analyze" /&gt;
-      &lt;antcall target="mine" /&gt;
-   &lt;/target&gt;
-
-   &lt;!-- &#20998;&#26512;&#12434;&#34892;&#12358;&#12479;&#12473;&#12463;--&gt;
-   &lt;target name="analyze"&gt;
-      &lt;!-- asm-util &#12395;&#23550;&#12375;&#12390; findbugs &#12434;&#23455;&#34892;&#12377;&#12427; --&gt;
-      &lt;findbugs home="${findbugs.home}"
-                output="xml:withMessages"
-                timeout="90000000"
-                reportLevel="experimental"
-                workHard="true"
-                effort="max"
-                adjustExperimental="true"
-                jvmargs="${jvmargs}"
-                failOnError="true"
-                outputFile="out.xml"
-                projectName="Findbugs"
-                debug="false"&gt;
-         &lt;class location="asm-util-3.0.jar" /&gt;
-      &lt;/findbugs&gt;
-   &lt;/target&gt;
-
-   &lt;target name="mine"&gt;
-
-      &lt;!-- &#26368;&#26032;&#12398;&#20998;&#26512;&#32080;&#26524;&#12395;&#24773;&#22577;&#12434;&#35373;&#23450;&#12377;&#12427; --&gt;
-      &lt;setBugDatabaseInfo home="${findbugs.home}"
-                            withMessages="true"
-                            name="asm-util-3.0.jar"
-                            input="out.xml"
-                            output="out-rel.xml"/&gt;
-
-      &lt;!-- &#23653;&#27508;&#12501;&#12449;&#12452;&#12523; (out-hist.xml) &#12364;&#26082;&#12395;&#23384;&#22312;&#12377;&#12427;&#12363;&#12393;&#12358;&#12363;&#12434;&#30906;&#35469;&#12377;&#12427; --&gt;
-      &lt;condition property="mining.historyfile.available"&gt;
-         &lt;available file="out-hist.xml"/&gt;
-      &lt;/condition&gt;
-      &lt;condition property="mining.historyfile.notavailable"&gt;
-         &lt;not&gt;
-            &lt;available file="out-hist.xml"/&gt;
-         &lt;/not&gt;
-      &lt;/condition&gt;
-
-      &lt;!-- &#12371;&#12398;&#12479;&#12540;&#12466;&#12483;&#12488;&#12399;&#12289;&#23653;&#27508;&#12501;&#12449;&#12452;&#12523;&#12364;&#23384;&#22312;&#12375;&#12394;&#12356;&#12392;&#12365; (&#21021;&#22238;) &#12384;&#12369;&#23455;&#34892;&#12373;&#12428;&#12414;&#12377; --&gt;
-      &lt;antcall target="history-init"&gt;
-        &lt;param name="data.file" value="out-rel.xml" /&gt;
-        &lt;param name="hist.file" value="out-hist.xml" /&gt;
-      &lt;/antcall&gt;
-      &lt;!-- &#19978;&#35352;&#20197;&#22806;&#12398;&#22580;&#21512;&#12395;&#23455;&#34892;&#12373;&#12428;&#12414;&#12377; --&gt;
-      &lt;antcall target="history"&gt;
-        &lt;param name="data.file"         value="out-rel.xml" /&gt;
-        &lt;param name="hist.file"         value="out-hist.xml" /&gt;
-        &lt;param name="hist.summary.file" value="out-hist.txt" /&gt;
-      &lt;/antcall&gt;
-   &lt;/target&gt;
-
-   &lt;!-- &#23653;&#27508;&#12501;&#12449;&#12452;&#12523;&#12434;&#21021;&#26399;&#21270;&#12375;&#12414;&#12377; --&gt;
-   &lt;target name="history-init" if="mining.historyfile.notavailable"&gt;
-      &lt;copy file="${data.file}" tofile="${hist.file}" /&gt;
-   &lt;/target&gt;
-
-   &lt;!-- &#12496;&#12464;&#23653;&#27508;&#12434;&#31639;&#20986;&#12375;&#12414;&#12377; --&gt;
-   &lt;target name="history" if="mining.historyfile.available"&gt;
-      &lt;!-- ${data.file} &#12434; ${hist.file} &#12395;&#12510;&#12540;&#12472;&#12375;&#12414;&#12377; --&gt;
-      &lt;computeBugHistory home="${findbugs.home}"
-                           withMessages="true"
-                           output="${hist.file}"&gt;
-            &lt;dataFile name="${hist.file}"/&gt;
-            &lt;dataFile name="${data.file}"/&gt;
-      &lt;/computeBugHistory&gt;
-
-      &lt;!-- &#23653;&#27508;&#12434;&#31639;&#20986;&#12375;&#12390; ${hist.summary.file} &#12395;&#20986;&#21147;&#12375;&#12414;&#12377; --&gt;
-      &lt;mineBugHistory home="${findbugs.home}"
-                        formatDates="true"
-                      noTabs="true"
-                        input="${hist.file}"
-                        output="${hist.summary.file}"/&gt;
-   &lt;/target&gt;
-
-&lt;/project&gt;
-
-</pre></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="rejarForAnalysis.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="license.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;11&#31456; rejarForAnalysis &#12398;&#20351;&#29992;&#26041;&#27861;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;13&#31456; &#12521;&#12452;&#12475;&#12531;&#12473;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/eclipse.html b/tools/findbugs/doc/ja/manual/eclipse.html
deleted file mode 100644
index d1bc7f1..0000000
--- a/tools/findbugs/doc/ja/manual/eclipse.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;7&#31456; FindBugs&#8482; Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="anttask.html" title="&#31532;6&#31456; FindBugs&#8482; Ant &#12479;&#12473;&#12463;&#12398;&#20351;&#29992;&#26041;&#27861;"><link rel="next" href="filter.html" title="&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;7&#31456; <span class="application">FindBugs</span>&#8482; Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="anttask.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="filter.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;7&#31456; FindBugs&#8482; Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;"><div class="titlepage"><div><div><h2 class="title"><a name="eclipse"></a>&#31532;7&#31456; <span class="application">FindBugs</span>&#8482; Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;</h2></div></div></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="sect1"><a href="eclipse.html#d0e1604">1. &#24517;&#35201;&#26465;&#20214;</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1611">2. &#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1658">3. &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1681">4. &#12488;&#12521;&#12502;&#12523;&#12471;&#12517;&#12540;&#12486;&#12451;&#12531;&#12464;</a></span></dt></dl></div><p>FindBugs Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12395;&#12424;&#12387;&#12390;&#12289; <span class="application">FindBugs</span> &#12434; <a class="ulink" href="http://www.eclipse.org/" target="_top">Eclipse</a> IDE &#12391;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12427;&#12424;&#12358;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;&#12371;&#12398;FindBugs Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12399;&#12289; Peter Friese &#27663;&#12398;&#22810;&#22823;&#12394;&#36002;&#29486;&#12395;&#12424;&#12427;&#12418;&#12398;&#12391;&#12377;&#12290;Phil Crosby &#27663; &#12392; Andrei Loskutov &#27663;&#12399;&#12289;&#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#37325;&#35201;&#12394;&#25913;&#33391;&#12395;&#36002;&#29486;&#12375;&#12414;&#12375;&#12383;&#12290;</p><div class="sect1" title="1. &#24517;&#35201;&#26465;&#20214;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1604"></a>1. &#24517;&#35201;&#26465;&#20214;</h2></div></div></div><p><span class="application">FindBugs</span> Eclipse Plugin &#12434;&#20351;&#29992;&#12377;&#12427;&#12383;&#12417;&#12395;&#12399;&#12289; Eclipse 3.3 &#12354;&#12427;&#12356;&#12399;&#12381;&#12428;&#20197;&#38477;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12289;&#12414;&#12383;&#12289; JRE/JDK 1.5 &#12354;&#12427;&#12356;&#12399;&#12381;&#12428;&#20197;&#38477;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12364;&#24517;&#35201;&#12391;&#12377;&#12290;</p></div><div class="sect1" title="2. &#12452;&#12531;&#12473;&#12488;&#12540;&#12523;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1611"></a>2. &#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</h2></div></div></div><p>&#26356;&#26032;&#12469;&#12452;&#12488;&#12364;&#25552;&#20379;&#12373;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;&#26356;&#26032;&#12469;&#12452;&#12488;&#12434;&#21033;&#29992;&#12375;&#12390;&#12289;&#27231;&#26800;&#30340;&#12395; FindBugs &#12434; Eclipse &#12395;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12391;&#12365;&#12414;&#12377;&#12290;&#12414;&#12383;&#33258;&#21205;&#30340;&#12395;&#12289;&#26368;&#26032;&#29256;&#12398;&#12450;&#12483;&#12503;&#12487;&#12540;&#12488;&#12434;&#29031;&#20250;&#12375;&#12390;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12377;&#12427;&#12371;&#12392;&#12418;&#12391;&#12365;&#12414;&#12377;&#12290;&#20869;&#23481;&#12398;&#30064;&#12394;&#12427; 3 &#12388;&#12398;&#26356;&#26032;&#12469;&#12452;&#12488;&#12364;&#23384;&#22312;&#12375;&#12414;&#12377;&#12290;</p><div class="variablelist" title="FindBugs Eclipse &#26356;&#26032;&#12469;&#12452;&#12488;&#19968;&#35239;"><p class="title"><b>FindBugs Eclipse &#26356;&#26032;&#12469;&#12452;&#12488;&#19968;&#35239;</b></p><dl><dt><span class="term"><a class="ulink" href="http://findbugs.cs.umd.edu/eclipse/" target="_top">http://findbugs.cs.umd.edu/eclipse/</a></span></dt><dd><p>FindBugs &#12398;&#20844;&#24335;&#12522;&#12522;&#12540;&#12473;&#29289;&#12434;&#25552;&#20379;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><a class="ulink" href="http://findbugs.cs.umd.edu/eclipse-candidate/" target="_top">http://findbugs.cs.umd.edu/eclips-candidate/</a></span></dt><dd><p>FindBugs&#12398;&#20844;&#24335;&#12522;&#12522;&#12540;&#12473;&#29289;&#12395;&#21152;&#12360;&#12390;&#12289;&#20844;&#24335;&#12522;&#12522;&#12540;&#12473;&#20505;&#35036;&#29256;&#12434;&#25552;&#20379;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><a class="ulink" href="http://findbugs.cs.umd.edu/eclipse-daily/" target="_top">http://findbugs.cs.umd.edu/eclipse-daily/</a></span></dt><dd><p>FindBugs&#12398;&#26085;&#27425;&#12499;&#12523;&#12489;&#29289;&#12434;&#25552;&#20379;&#12375;&#12414;&#12377;&#12290;&#12467;&#12531;&#12497;&#12452;&#12523;&#12364;&#12391;&#12365;&#12427;&#12371;&#12392;&#20197;&#19978;&#12398;&#12486;&#12473;&#12488;&#12399;&#34892;&#12431;&#12428;&#12390;&#12356;&#12414;&#12379;&#12435;&#12290;</p></dd></dl></div><p>&#12414;&#12383;&#12289;&#27425;&#12395;&#31034;&#12377;&#12522;&#12531;&#12463;&#12363;&#12425;&#25163;&#21205;&#12391;&#12503;&#12521;&#12464;&#12452;&#12531;&#12434;&#12480;&#12454;&#12531;&#12525;&#12540;&#12489;&#12377;&#12427;&#12371;&#12392;&#12418;&#12391;&#12365;&#12414;&#12377; : <a class="ulink" href="http://prdownloads.sourceforge.net/findbugs/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122.zip?download" target="_top">http://prdownloads.sourceforge.net/findbugs/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122.zip?download</a>. &#23637;&#38283;&#12375;&#12390; Eclipse &#12398;&#12300;plugins&#12301;&#12469;&#12502;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12395;&#20837;&#12428;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;(&#12381;&#12358;&#12377;&#12427;&#12392;&#12289; &lt;eclipse &#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540; &gt;/plugins/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122/findbugs.png &#12364; <span class="application">FindBugs</span> &#12398;&#12525;&#12468;&#12501;&#12449;&#12452;&#12523;&#12408;&#12398;&#12497;&#12473;&#12395;&#12394;&#12427;&#12399;&#12378;&#12391;&#12377;&#12290;)</p><p>&#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#23637;&#38283;&#12364;&#12391;&#12365;&#12383;&#12425;&#12289; Eclipse &#12434;&#36215;&#21205;&#12375;&#12390; <span class="guimenu">Help</span> &#8594; <span class="guimenuitem">About Eclipse Platform</span> &#8594; <span class="guimenuitem">Plug-in Details</span> &#12434;&#36984;&#25246;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#12300;FindBugs Project&#12301;&#12363;&#12425;&#25552;&#20379;&#12373;&#12428;&#12383;&#12300;FindBugs Plug-in&#12301;&#12392;&#12356;&#12358;&#12503;&#12521;&#12464;&#12452;&#12531;&#12364;&#12354;&#12427;&#12371;&#12392;&#12434;&#30906;&#35469;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></div><div class="sect1" title="3. &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1658"></a>3. &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;</h2></div></div></div><p>&#23455;&#34892;&#12377;&#12427;&#12395;&#12399;&#12289; Java &#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#19978;&#12391;&#21491;&#12463;&#12522;&#12483;&#12463;&#12375;&#12390;&#12300;Find Bugs&#12301;&#12434;&#36984;&#25246;&#12375;&#12414;&#12377;&#12290;<span class="application">FindBugs</span> &#12364;&#23455;&#34892;&#12373;&#12428;&#12390;&#12289;&#12496;&#12464;&#12497;&#12479;&#12540;&#12531;&#12398;&#23455;&#20363;&#12398;&#21487;&#33021;&#24615;&#12364;&#12354;&#12427;&#12392;&#35672;&#21029;&#12373;&#12428;&#12383;&#12467;&#12540;&#12489;&#31623;&#25152;&#12395;&#21839;&#38988;&#12510;&#12540;&#12459;&#12540;&#12364;&#12388;&#12365;&#12414;&#12377;&#12290; (&#12477;&#12540;&#12473;&#30011;&#38754;&#12362;&#12424;&#12403; Eclipse &#21839;&#38988;&#12499;&#12517;&#12540;&#12395;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;)</p><p>Java &#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12398;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12480;&#12452;&#12450;&#12525;&#12464;&#12434;&#38283;&#12356;&#12390;&#12300;Findbugs&#12301;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12506;&#12540;&#12472;&#12434;&#36984;&#25246;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289; <span class="application">FindBugs</span> &#12398;&#21205;&#20316;&#12434;&#12459;&#12473;&#12479;&#12510;&#12452;&#12474;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#36984;&#25246;&#12391;&#12365;&#12427;&#38917;&#30446;&#12395;&#12399;&#27425;&#12398;&#12424;&#12358;&#12394;&#12418;&#12398;&#12364;&#12354;&#12426;&#12414;&#12377; :</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>&#12300;Run FindBugs Automatically&#12301;&#12481;&#12455;&#12483;&#12463;&#12508;&#12483;&#12463;&#12473;&#12398;&#35373;&#23450;&#12290;&#12481;&#12455;&#12483;&#12463;&#12377;&#12427;&#12392;&#12289;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#20869;&#12398; Java &#12463;&#12521;&#12473;&#12364;&#20462;&#27491;&#12373;&#12428;&#12427;&#12383;&#12403;&#12395; FindBugs &#12364;&#23455;&#34892;&#12373;&#12428;&#12414;&#12377;&#12290;</p></li><li class="listitem"><p>&#20778;&#20808;&#24230;&#12392;&#12496;&#12464;&#12459;&#12486;&#12468;&#12522;&#12540;&#12398;&#36984;&#25246;&#12290;&#12371;&#12428;&#12425;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12399;&#12289;&#12393;&#12398;&#35686;&#21578;&#12434;&#34920;&#31034;&#12377;&#12427;&#12363;&#12434;&#36984;&#25246;&#12375;&#12414;&#12377;&#12290;&#20363;&#12360;&#12400;&#12289;&#20778;&#20808;&#24230;&#12391; &#12300;Medium&#12301; &#12434;&#36984;&#25246;&#12377;&#12427;&#12392;&#12289;&#20778;&#20808;&#24230; (&#20013;) &#12362;&#12424;&#12403;&#20778;&#20808;&#24230; (&#39640;) &#12398;&#35686;&#21578;&#12398;&#12415;&#12364;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;&#21516;&#27096;&#12395;&#12289;&#12300;Style&#12301;&#12481;&#12455;&#12483;&#12463;&#12508;&#12483;&#12463;&#12473;&#12398;&#12481;&#12455;&#12483;&#12463;&#12510;&#12540;&#12463;&#12434;&#22806;&#12377;&#12392;&#12289;Style &#12459;&#12486;&#12468;&#12522;&#12540;&#12395;&#23646;&#12377;&#12427;&#35686;&#21578;&#12399;&#34920;&#31034;&#12373;&#12428;&#12414;&#12379;&#12435;&#12290;</p></li><li class="listitem"><p>&#12487;&#12451;&#12486;&#12463;&#12479;&#12398;&#36984;&#25246;&#12290;&#34920;&#12363;&#12425;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12391;&#26377;&#21177;&#12395;&#12375;&#12383;&#12356;&#12487;&#12451;&#12486;&#12463;&#12479;&#12434;&#36984;&#25246;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p></li></ul></div></div><div class="sect1" title="4. &#12488;&#12521;&#12502;&#12523;&#12471;&#12517;&#12540;&#12486;&#12451;&#12531;&#12464;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1681"></a>4. &#12488;&#12521;&#12502;&#12523;&#12471;&#12517;&#12540;&#12486;&#12451;&#12531;&#12464;</h2></div></div></div><p><span class="application">FindBugs</span> Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12399;&#12289;&#12414;&#12384;&#23455;&#39443;&#27573;&#38542;&#12391;&#12377;&#12290;&#12371;&#12398;&#12475;&#12463;&#12471;&#12519;&#12531;&#12391;&#12399;&#12289;&#12503;&#12521;&#12464;&#12452;&#12531;&#12395;&#38306;&#12377;&#12427;&#19968;&#33324;&#30340;&#12394;&#21839;&#38988;&#12392; (&#21028;&#26126;&#12375;&#12390;&#12356;&#12428;&#12400;) &#12381;&#12428;&#12425;&#12398;&#21839;&#38988;&#12398;&#35299;&#27770;&#26041;&#27861;&#12434;&#35352;&#36848;&#12375;&#12414;&#12377;&#12290;</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p><span class="application">FindBugs</span> &#21839;&#38988;&#12510;&#12540;&#12459;&#12540;&#12364; (&#12477;&#12540;&#12473;&#30011;&#38754;&#12362;&#12424;&#12403;&#21839;&#38988;&#12499;&#12517;&#12540;&#12395;) &#34920;&#31034;&#12373;&#12428;&#12394;&#12356;&#22580;&#21512;&#12399;&#12289;&#21839;&#38988;&#12499;&#12517;&#12540;&#12398;&#12501;&#12451;&#12523;&#12479;&#12540;&#35373;&#23450;&#12434;&#22793;&#26356;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#35443;&#32048;&#24773;&#22577;&#12399; <a class="ulink" href="http://findbugs.sourceforge.net/FAQ.html#q7" target="_top">http://findbugs.sourceforge.net/FAQ.html#q7</a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></li></ul></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="anttask.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="filter.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;6&#31456; <span class="application">FindBugs</span>&#8482; <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12398;&#20351;&#29992;&#26041;&#27861;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/example-code.png b/tools/findbugs/doc/ja/manual/example-code.png
deleted file mode 100644
index fe01f31..0000000
--- a/tools/findbugs/doc/ja/manual/example-code.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/ja/manual/example-details.png b/tools/findbugs/doc/ja/manual/example-details.png
deleted file mode 100644
index 1addf93..0000000
--- a/tools/findbugs/doc/ja/manual/example-details.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/ja/manual/example.png b/tools/findbugs/doc/ja/manual/example.png
deleted file mode 100644
index 289b897..0000000
--- a/tools/findbugs/doc/ja/manual/example.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/ja/manual/filter.html b/tools/findbugs/doc/ja/manual/filter.html
deleted file mode 100644
index 491deed..0000000
--- a/tools/findbugs/doc/ja/manual/filter.html
+++ /dev/null
@@ -1,168 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="eclipse.html" title="&#31532;7&#31456; FindBugs&#8482; Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;"><link rel="next" href="analysisprops.html" title="&#31532;9&#31456; &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="eclipse.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="analysisprops.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;"><div class="titlepage"><div><div><h2 class="title"><a name="filter"></a>&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;</h2></div></div></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="sect1"><a href="filter.html#d0e1709">1. &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;&#12398;&#27010;&#35201;</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e1759">2. &#12510;&#12483;&#12481;&#12531;&#12464;&#26465;&#20214;&#12398;&#31278;&#39006;</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e1958">3. Java &#35201;&#32032;&#21517;&#12510;&#12483;&#12481;&#12531;&#12464;</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e1982">4. &#30041;&#24847;&#20107;&#38917;</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2012">5. &#20363;</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2065">6. &#23436;&#20840;&#12394;&#20363;</a></span></dt></dl></div><p>&#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#29305;&#23450;&#12398;&#12463;&#12521;&#12473;&#12420;&#12513;&#12477;&#12483;&#12489;&#12434;&#12496;&#12464;&#22577;&#21578;&#12395;&#21547;&#12417;&#12383;&#12426;&#12496;&#12464;&#22577;&#21578;&#12363;&#12425;&#38500;&#22806;&#12375;&#12383;&#12426;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12371;&#12398;&#31456;&#12391;&#12399;&#12289;&#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;&#12398;&#20351;&#29992;&#26041;&#27861;&#12434;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;</p><div class="note" title="&#35336;&#30011;&#12373;&#12428;&#12390;&#12356;&#12427;&#27231;&#33021;" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note: &#35336;&#30011;&#12373;&#12428;&#12390;&#12356;&#12427;&#27231;&#33021;"><tr><td rowspan="2" align="center" valign="top" width="25"><img alt="[&#27880;&#35352;]" src="note.png"></td><th align="left">&#35336;&#30011;&#12373;&#12428;&#12390;&#12356;&#12427;&#27231;&#33021;</th></tr><tr><td align="left" valign="top"><p>&#12501;&#12451;&#12523;&#12479;&#12540;&#12399;&#29694;&#22312;&#12289;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12391;&#12398;&#12415;&#12469;&#12509;&#12540;&#12488;&#12373;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;&#26368;&#32066;&#30340;&#12395;&#12399;&#12289;&#12501;&#12451;&#12523;&#12479;&#12540;&#12398;&#12469;&#12509;&#12540;&#12488;&#12399; GUI &#12395;&#12418;&#36861;&#21152;&#12373;&#12428;&#12427;&#20104;&#23450;&#12391;&#12377;&#12290;</p></td></tr></table></div><p>
-</p><div class="sect1" title="1. &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;&#12398;&#27010;&#35201;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1709"></a>1. &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;&#12398;&#27010;&#35201;</h2></div></div></div><p>&#27010;&#24565;&#30340;&#12395;&#35328;&#12360;&#12400;&#12289;&#12501;&#12451;&#12523;&#12479;&#12540;&#12399;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12434;&#12354;&#12427;&#22522;&#28310;&#12392;&#29031;&#21512;&#12375;&#12414;&#12377;&#12290;&#12501;&#12451;&#12523;&#12479;&#12540;&#12434;&#23450;&#32681;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289; &#29305;&#21029;&#12394;&#21462;&#12426;&#25201;&#12356;&#12434;&#12377;&#12427;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12434;&#36984;&#25246;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#20363;&#12360;&#12400;&#12289;&#12354;&#12427;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12434;&#12496;&#12464;&#22577;&#21578;&#12395;&#21547;&#12417;&#12383;&#12426;&#12289;&#12496;&#12464;&#22577;&#21578;&#12363;&#12425;&#38500;&#22806;&#12375;&#12383;&#12426;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><p>&#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;&#12399;&#12289; <a class="ulink" href="http://www.w3.org/XML/" target="_top">XML</a> &#25991;&#26360;&#12391;&#12377;&#12290;&#26368;&#19978;&#20301;&#35201;&#32032;&#12364;&#12288;<code class="literal">FindBugsFilter</code> &#35201;&#32032; &#12391;&#12354;&#12426;&#12289;&#12381;&#12398;&#23376;&#35201;&#32032;&#12392;&#12375;&#12390; <code class="literal">Match</code> &#35201;&#32032;&#12434;&#35079;&#25968;&#20491;&#23450;&#32681;&#12375;&#12414;&#12377;&#12290;&#12381;&#12428;&#12382;&#12428;&#12398; <code class="literal">Match</code> &#35201;&#32032;&#12399;&#12289;&#29983;&#25104;&#12373;&#12428;&#12383;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12395;&#36969;&#29992;&#12373;&#12428;&#12427;&#36848;&#37096;&#12395;&#12354;&#12383;&#12426;&#12414;&#12377;&#12290;&#36890;&#24120;&#12289;&#12501;&#12451;&#12523;&#12479;&#12540;&#12399;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12434;&#38500;&#22806;&#12377;&#12427;&#12383;&#12417;&#12395;&#20351;&#29992;&#12375;&#12414;&#12377;&#12290;&#27425;&#12395;&#12289;&#20363;&#12434;&#31034;&#12375;&#12414;&#12377;:</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>findbugs -textui -exclude <em class="replaceable"><code>myExcludeFilter.xml</code></em> <em class="replaceable"><code>myApp.jar</code></em></strong></span>
-</pre><p>&#12414;&#12383;&#19968;&#26041;&#12391;&#12289;&#30340;&#12434;&#12375;&#12412;&#12387;&#12383;&#22577;&#21578;&#12434;&#24471;&#12427;&#12383;&#12417;&#12395;&#12496;&#12464;&#22577;&#21578;&#32080;&#26524;&#12434;&#36984;&#25246;&#12377;&#12427;&#12383;&#12417;&#12395;&#12501;&#12451;&#12523;&#12479;&#12540;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12418;&#32771;&#12360;&#12425;&#12428;&#12414;&#12377; :</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>findbugs -textui -include <em class="replaceable"><code>myIncludeFilter.xml</code></em> <em class="replaceable"><code>myApp.jar</code></em></strong></span>
-</pre><p>
-</p><p>
-<code class="literal">Match</code> &#35201;&#32032;&#12399;&#23376;&#35201;&#32032;&#12434;&#25345;&#12385;&#12414;&#12377;&#12290;&#12381;&#12428;&#12425;&#12398;&#23376;&#35201;&#32032;&#12399;&#35542;&#29702;&#31309;&#12391;&#36848;&#37096;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;&#12388;&#12414;&#12426;&#12289;&#36848;&#37096;&#12364;&#30495;&#12391;&#12354;&#12427;&#12383;&#12417;&#12395;&#12399;&#12289;&#12377;&#12409;&#12390;&#12398;&#23376;&#35201;&#32032;&#12364;&#30495;&#12391;&#12354;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p></div><div class="sect1" title="2. &#12510;&#12483;&#12481;&#12531;&#12464;&#26465;&#20214;&#12398;&#31278;&#39006;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1759"></a>2. &#12510;&#12483;&#12481;&#12531;&#12464;&#26465;&#20214;&#12398;&#31278;&#39006;</h2></div></div></div><div class="variablelist"><dl><dt><span class="term"><code class="literal">&lt;Bug&gt;</code></span></dt><dd><p>&#12371;&#12398;&#35201;&#32032;&#12399;&#12289;&#12496;&#12464;&#12497;&#12479;&#12540;&#12531;&#12434;&#25351;&#23450;&#12375;&#12390;&#29031;&#21512;&#12375;&#12414;&#12377;&#12290;<code class="literal">pattern</code> &#23646;&#24615;&#12395;&#12399;&#12289;&#12467;&#12531;&#12510;&#21306;&#20999;&#12426;&#12391;&#12496;&#12464;&#12497;&#12479;&#12540;&#12531;&#39006;&#22411;&#12398;&#12522;&#12473;&#12488;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12393;&#12398;&#35686;&#21578;&#12364;&#12393;&#12398;&#12496;&#12464;&#12497;&#12479;&#12540;&#12531;&#39006;&#22411;&#12395;&#12354;&#12383;&#12427;&#12363;&#12399;&#12289; <span class="command"><strong>-xml</strong></span> &#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#12388;&#12363;&#12387;&#12390;&#20986;&#21147;&#12373;&#12428;&#12383;&#12418;&#12398; (<code class="literal">BugInstance</code> &#35201;&#32032;&#12398; <code class="literal">type</code> &#23646;&#24615;) &#12434;&#35211;&#12427;&#12363;&#12289;&#12414;&#12383;&#12399;&#12289; <a class="ulink" href="../../bugDescriptions.html" target="_top">&#12496;&#12464;&#35299;&#35500;&#12489;&#12461;&#12517;&#12513;&#12531;&#12488;</a>&#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p><p>&#12418;&#12387;&#12392;&#31890;&#24230;&#12398;&#31895;&#12356;&#29031;&#21512;&#12434;&#34892;&#12356;&#12383;&#12356;&#12392;&#12365;&#12399;&#12289; <code class="literal">code</code> &#23646;&#24615;&#12434;&#20351;&#29992;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#12496;&#12464;&#30053;&#31216;&#12398;&#12467;&#12531;&#12510;&#21306;&#20999;&#12426;&#12398;&#12522;&#12473;&#12488;&#12391;&#25351;&#23450;&#12391;&#12365;&#12414;&#12377;&#12290;&#12373;&#12425;&#12395;&#31890;&#24230;&#12398;&#31895;&#12356;&#29031;&#21512;&#12434;&#34892;&#12356;&#12383;&#12356;&#12392;&#12365;&#12399;&#12289; <code class="literal">category</code> &#23646;&#24615;&#12434;&#20351;&#29992;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#27425;&#12395;&#31034;&#12377;&#12289;&#12496;&#12464;&#12459;&#12486;&#12468;&#12522;&#12540;&#21517;&#12398;&#12467;&#12531;&#12510;&#21306;&#20999;&#12426;&#12398;&#12522;&#12473;&#12488;&#12391;&#25351;&#23450;&#12391;&#12365;&#12414;&#12377; : <code class="literal">CORRECTNESS</code>, <code class="literal">MT_CORRECTNESS</code>, <code class="literal">BAD_PRACTICICE</code>, <code class="literal">PERFORMANCE</code>, <code class="literal">STYLE</code>.</p><p>&#21516;&#12376; <code class="literal">&lt;Bug&gt;</code> &#35201;&#32032;&#12395;&#19978;&#35352;&#12398;&#23646;&#24615;&#12434;&#35079;&#25968;&#25351;&#23450;&#12375;&#12383;&#22580;&#21512;&#12399;&#12289;&#12496;&#12464;&#12497;&#12479;&#12540;&#12531;&#21517;&#12289;&#12496;&#12464;&#30053;&#31216;&#12289;&#12496;&#12464;&#12459;&#12486;&#12468;&#12522;&#12540;&#12398;&#12356;&#12378;&#12428;&#12363;1&#12388;&#12391;&#12418;&#35442;&#24403;&#12377;&#12428;&#12400;&#12289;&#12496;&#12464;&#12497;&#12479;&#12540;&#12531;&#12399;&#21512;&#33268;&#12377;&#12427;&#12392;&#21028;&#23450;&#12373;&#12428;&#12414;&#12377;&#12290;</p><p>&#19979;&#20301;&#20114;&#25563;&#24615;&#12434;&#25345;&#12383;&#12379;&#12383;&#12356;&#22580;&#21512;&#12399;&#12289; <code class="literal">&lt;Bug&gt;</code> &#35201;&#32032;&#12398;&#20195;&#12431;&#12426;&#12395; <code class="literal">&lt;BugPattern&gt;</code> &#35201;&#32032;&#12362;&#12424;&#12403; <code class="literal">&lt;BugCode&gt;</code> &#35201;&#32032;&#12434;&#20351;&#29992;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#12371;&#12428;&#12425;&#12398;&#35201;&#32032;&#12399;&#12381;&#12428;&#12382;&#12428;&#12289; <code class="literal">name</code> &#23646;&#24615;&#12391;&#20516;&#12398;&#12522;&#12473;&#12488;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12371;&#12428;&#12425;&#12398;&#35201;&#32032;&#12399;&#12289;&#23558;&#26469;&#12469;&#12509;&#12540;&#12488;&#12373;&#12428;&#12394;&#12367;&#12394;&#12427;&#21487;&#33021;&#24615;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">&lt;Priority&gt;</code></span></dt><dd><p>&#12371;&#12398;&#35201;&#32032;&#12399;&#12289;&#29305;&#23450;&#12398;&#20778;&#20808;&#24230;&#12434;&#12418;&#12388;&#35686;&#21578;&#12434;&#29031;&#21512;&#12375;&#12414;&#12377;&#12290;<code class="literal">value</code> &#23646;&#24615;&#12395;&#12399;&#12289;&#25972;&#25968;&#20516;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377; : 1 &#12399;&#20778;&#20808;&#24230;(&#39640;)&#12289;&#12414;&#12383;&#12289; 2  &#12399;&#20778;&#20808;&#24230;(&#20013;) &#12289; 3 &#12399;&#20778;&#20808;&#24230;(&#20302;) &#12434;&#31034;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">&lt;Package&gt;</code></span></dt><dd><p>&#12371;&#12398;&#35201;&#32032;&#12399;&#12289; <code class="literal">name</code> &#23646;&#24615;&#12391;&#25351;&#23450;&#12375;&#12383;&#29305;&#23450;&#12398;&#12497;&#12483;&#12465;&#12540;&#12472;&#20869;&#12395;&#12354;&#12427;&#12463;&#12521;&#12473;&#12395;&#38306;&#36899;&#12375;&#12383;&#35686;&#21578;&#12434;&#29031;&#21512;&#12375;&#12414;&#12377;&#12290;&#20837;&#12428;&#23376;&#12398;&#12497;&#12483;&#12465;&#12540;&#12472;&#12399;&#21547;&#12414;&#12428;&#12414;&#12379;&#12435; (Java import &#25991;&#12395;&#24467;&#12387;&#12390;&#12356;&#12414;&#12377;) &#12290;&#12375;&#12363;&#12375;&#12394;&#12364;&#12425;&#12289;&#27491;&#35215;&#34920;&#29694;&#12434;&#20351;&#12358;&#12392;&#35079;&#25968;&#12497;&#12483;&#12465;&#12540;&#12472;&#12395;&#12510;&#12483;&#12481;&#12373;&#12379;&#12427;&#12371;&#12392;&#12399;&#31777;&#21336;&#12395;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">&lt;Class&gt;</code></span></dt><dd><p>&#12371;&#12398;&#35201;&#32032;&#12399;&#12289;&#29305;&#23450;&#12398;&#12463;&#12521;&#12473;&#12395;&#38306;&#36899;&#12375;&#12383;&#35686;&#21578;&#12434;&#29031;&#21512;&#12375;&#12414;&#12377;&#12290;<code class="literal">name</code> &#23646;&#24615;&#12434;&#20351;&#29992;&#12375;&#12390;&#12289;&#29031;&#21512;&#12377;&#12427;&#12463;&#12521;&#12473;&#21517;&#12434;&#12463;&#12521;&#12473;&#21517;&#12381;&#12398;&#12418;&#12398;&#12363;&#12289;&#12414;&#12383;&#12399;&#12289;&#27491;&#35215;&#34920;&#29694;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</p><p>&#19979;&#20301;&#20114;&#25563;&#24615;&#12434;&#25345;&#12383;&#12379;&#12383;&#12356;&#22580;&#21512;&#12399;&#12289;&#12371;&#12398;&#35201;&#32032;&#12398;&#20195;&#12431;&#12426;&#12395; <code class="literal">Match</code> &#35201;&#32032;&#12434;&#20351;&#29992;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#12463;&#12521;&#12473;&#21517;&#12381;&#12398;&#12418;&#12398;&#12398;&#25351;&#23450;&#12399; <code class="literal">class</code> &#23646;&#24615;&#12434;&#12289;&#12463;&#12521;&#12473;&#21517;&#12434;&#27491;&#35215;&#34920;&#29694;&#12391;&#25351;&#23450;&#12377;&#12427;&#22580;&#21512;&#12399; <code class="literal">classregex</code> &#23646;&#24615;&#12434;&#12381;&#12428;&#12382;&#12428;&#20351;&#29992;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;</p><p>&#12418;&#12375; <code class="literal">Match</code> &#35201;&#32032;&#12395; <code class="literal">Class</code> &#35201;&#32032;&#12364;&#28961;&#12363;&#12387;&#12383;&#12426;&#12289; <code class="literal">class</code> / <code class="literal">classregex</code> &#23646;&#24615;&#12364;&#28961;&#12363;&#12387;&#12383;&#12426;&#12375;&#12383;&#22580;&#21512;&#12399;&#12289;&#12377;&#12409;&#12390;&#12398;&#12463;&#12521;&#12473;&#12395;&#36969;&#29992;&#12373;&#12428;&#12414;&#12377;&#12290;&#12381;&#12398;&#22580;&#21512;&#12289;&#24819;&#23450;&#22806;&#12395;&#22810;&#12367;&#12398;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12364;&#19968;&#33268;&#12375;&#12390;&#12375;&#12414;&#12358;&#12371;&#12392;&#12364;&#12354;&#12426;&#24471;&#12414;&#12377;&#12290;&#12381;&#12398;&#22580;&#21512;&#12399;&#12289;&#36969;&#24403;&#12394;&#12513;&#12477;&#12483;&#12489;&#12420;&#12501;&#12451;&#12540;&#12523;&#12489;&#12391;&#32094;&#12426;&#36796;&#12435;&#12391;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><code class="literal">&lt;Method&gt;</code></span></dt><dd><p>&#12371;&#12398;&#35201;&#32032;&#12399;&#12289;&#12513;&#12477;&#12483;&#12489;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;<code class="literal">name</code> &#23646;&#24615;&#12434;&#20351;&#29992;&#12375;&#12390;&#12289;&#29031;&#21512;&#12377;&#12427;&#12513;&#12477;&#12483;&#12489;&#21517;&#12434;&#12513;&#12477;&#12483;&#12489;&#21517;&#12381;&#12398;&#12418;&#12398;&#12363;&#12289;&#12414;&#12383;&#12399;&#12289;&#27491;&#35215;&#34920;&#29694;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;<code class="literal">params</code> &#23646;&#24615;&#12395;&#12399;&#12289;&#12467;&#12531;&#12510;&#21306;&#20999;&#12426;&#12391;&#12513;&#12477;&#12483;&#12489;&#24341;&#25968;&#12398;&#22411;&#12398;&#12522;&#12473;&#12488;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;<code class="literal">returns</code> &#23646;&#24615;&#12395;&#12399;&#12513;&#12477;&#12483;&#12489;&#12398;&#25147;&#12426;&#20516;&#12398;&#22411;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;<code class="literal">params</code> &#12362;&#12424;&#12403; <code class="literal">returns</code> &#12395;&#12362;&#12356;&#12390;&#12399;&#12289;&#12463;&#12521;&#12473;&#21517;&#12399;&#23436;&#20840;&#20462;&#39166;&#21517;&#12391;&#12354;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;(&#20363;&#12360;&#12400;&#12289;&#21336;&#12395; "String" &#12391;&#12399;&#12394;&#12367; "java.lang.String" &#12392;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;) <code class="literal">params</code> <code class="literal">returns</code> &#12398;&#12393;&#12385;&#12425;&#12363;&#19968;&#26041;&#12434;&#25351;&#23450;&#12375;&#12383;&#22580;&#21512;&#12399;&#12289;&#12418;&#12358;&#19968;&#26041;&#12398;&#23646;&#24615;&#12398;&#25351;&#23450;&#12418;&#24517;&#38920;&#12391;&#12377;&#12290;&#12394;&#12380;&#12394;&#12425;&#12400;&#12289;&#12513;&#12477;&#12483;&#12489;&#12471;&#12464;&#12491;&#12481;&#12515;&#12540;&#12434;&#27083;&#31689;&#12398;&#12383;&#12417;&#12395;&#24517;&#35201;&#12384;&#12363;&#12425;&#12391;&#12377;&#12290;<code class="literal">name</code> &#23646;&#24615;&#12289;<code class="literal">params</code> &#23646;&#24615; &#12362;&#12424;&#12403; <code class="literal">returns</code> &#23646;&#24615;&#12414;&#12383;&#12399; 3 &#12388;&#12398; &#23646;&#24615;&#12377;&#12409;&#12390;&#12289;&#12398;&#12393;&#12428;&#12363;&#12434;&#26465;&#20214;&#12392;&#12377;&#12427;&#12371;&#12392;&#12391;&#12365;&#12427;&#12371;&#12392;&#12434;&#24847;&#21619;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#12371;&#12398;&#12424;&#12358;&#12395;&#12289;&#21517;&#21069;&#12392;&#12471;&#12464;&#12491;&#12481;&#12515;&#12540;&#12395;&#22522;&#12389;&#12367;&#27096;&#12293;&#12394;&#31278;&#39006;&#12398;&#26465;&#20214;&#12434;&#35215;&#23450;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">&lt;Field&gt;</code></span></dt><dd><p>&#12371;&#12398;&#35201;&#32032;&#12399;&#12289;&#12501;&#12451;&#12540;&#12523;&#12489;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;<code class="literal">name</code> &#23646;&#24615;&#12434;&#20351;&#29992;&#12375;&#12390;&#12289;&#29031;&#21512;&#12377;&#12427;&#12501;&#12451;&#12540;&#12523;&#12489;&#21517;&#12434;&#12501;&#12451;&#12540;&#12523;&#12489;&#21517;&#12381;&#12398;&#12418;&#12398;&#12363;&#12289;&#12414;&#12383;&#12399;&#12289;&#27491;&#35215;&#34920;&#29694;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12414;&#12383;&#12289;&#12501;&#12451;&#12540;&#12523;&#12489;&#12398;&#12471;&#12464;&#12491;&#12481;&#12515;&#12540;&#12395;&#29031;&#12425;&#12375;&#12383;&#12501;&#12451;&#12523;&#12479;&#12522;&#12531;&#12464;&#12434;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290; <code class="literal">type</code> &#23646;&#24615;&#12434;&#20351;&#29992;&#12375;&#12390;&#12289;&#12501;&#12451;&#12540;&#12523;&#12489;&#12398;&#22411;&#12434;&#23436;&#20840;&#20462;&#39166;&#21517;&#12391;&#25351;&#23450;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#21517;&#21069;&#12392;&#12471;&#12464;&#12491;&#12481;&#12515;&#12540;&#12395;&#22522;&#12389;&#12367;&#26465;&#20214;&#12434;&#35215;&#23450;&#12377;&#12427;&#12383;&#12417;&#12395;&#12289;&#12381;&#12398;2&#12388;&#12398;&#23646;&#24615;&#12434;&#20001;&#26041;&#12392;&#12418;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">&lt;Local&gt;</code></span></dt><dd><p>&#12371;&#12398;&#35201;&#32032;&#12399;&#12289;&#12525;&#12540;&#12459;&#12523;&#22793;&#25968;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;<code class="literal">name</code> &#23646;&#24615;&#12434;&#20351;&#29992;&#12375;&#12390;&#12289;&#29031;&#21512;&#12377;&#12427;&#12525;&#12540;&#12459;&#12523;&#22793;&#25968;&#21517;&#12434;&#12525;&#12540;&#12459;&#12523;&#22793;&#25968;&#21517;&#12381;&#12398;&#12418;&#12398;&#12363;&#12289;&#12414;&#12383;&#12399;&#12289;&#27491;&#35215;&#34920;&#29694;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12525;&#12540;&#12459;&#12523;&#22793;&#25968;&#12392;&#12399;&#12289;&#12513;&#12477;&#12483;&#12489;&#20869;&#12391;&#23450;&#32681;&#12375;&#12383;&#22793;&#25968;&#12391;&#12377;&#12290;</p></dd><dt><span class="term"><code class="literal">&lt;Or&gt;</code></span></dt><dd><p>&#12371;&#12398;&#35201;&#32032;&#12399;&#12289;&#35542;&#29702;&#21644;&#12392;&#12375;&#12390; <code class="literal">Match</code> &#26465;&#38917;&#12434;&#32080;&#21512;&#12375;&#12414;&#12377;&#12290;&#12377;&#12394;&#12431;&#12385;&#12289;2&#12388;&#12398; <code class="literal">Method</code> &#35201;&#32032;&#12434; <code class="literal">Or</code> &#26465;&#38917;&#12395;&#20837;&#12428;&#12427;&#12371;&#12392;&#12391;&#12289;&#12393;&#12385;&#12425;&#12363;&#19968;&#26041;&#12398;&#12513;&#12477;&#12483;&#12489;&#12391;&#12510;&#12483;&#12481;&#12373;&#12379;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd></dl></div></div><div class="sect1" title="3. Java &#35201;&#32032;&#21517;&#12510;&#12483;&#12481;&#12531;&#12464;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1958"></a>3. Java &#35201;&#32032;&#21517;&#12510;&#12483;&#12481;&#12531;&#12464;</h2></div></div></div><p><code class="literal">Class</code> &#12289; <code class="literal">Method</code> &#12414;&#12383;&#12399; <code class="literal">Field</code> &#12398; <code class="literal">name</code> &#23646;&#24615;&#12364;&#25991;&#23383; ~ &#12391;&#22987;&#12414;&#12387;&#12390;&#12356;&#12427;&#22580;&#21512;&#12399;&#12289;&#23646;&#24615;&#20516;&#12398;&#27531;&#12426;&#12398;&#37096;&#20998;&#12434; Java &#12398;&#27491;&#35215;&#34920;&#29694;&#12392;&#12375;&#12390;&#35299;&#37320;&#12375;&#12414;&#12377;&#12290;&#12381;&#12358;&#12375;&#12390;&#12289;&#24403;&#35442; Java &#35201;&#32032;&#12398;&#21517;&#21069;&#12395;&#23550;&#12375;&#12390;&#12398;&#29031;&#21512;&#12364;&#34892;&#12431;&#12428;&#12414;&#12377;&#12290;</p><p>&#12497;&#12479;&#12540;&#12531;&#12398;&#29031;&#21512;&#12399;&#35201;&#32032;&#12398;&#21517;&#21069;&#20840;&#20307;&#12395;&#23550;&#12375;&#12390;&#34892;&#12431;&#12428;&#12427;&#12371;&#12392;&#12395;&#27880;&#24847;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#12381;&#12398;&#12383;&#12417;&#12289;&#37096;&#20998;&#19968;&#33268;&#29031;&#21512;&#12434;&#34892;&#12356;&#12383;&#12356;&#22580;&#21512;&#12399;&#12497;&#12479;&#12540;&#12531;&#25991;&#23383;&#21015;&#12398;&#21069;&#24460;&#12395; .* &#12434;&#20184;&#21152;&#12375;&#12390;&#20351;&#29992;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p><p>&#12497;&#12479;&#12540;&#12531;&#12398;&#27083;&#25991;&#35215;&#21063;&#12395;&#38306;&#12375;&#12390;&#12399;&#12289; <a class="ulink" href="http://java.sun.com/j2se/1.5.0/ja/docs/ja/api/java/util/regex/Pattern.html" target="_top"><code class="literal">java.util.regex.Pattern</code></a> &#12398;&#12489;&#12461;&#12517;&#12513;&#12531;&#12488;&#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></div><div class="sect1" title="4. &#30041;&#24847;&#20107;&#38917;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1982"></a>4. &#30041;&#24847;&#20107;&#38917;</h2></div></div></div><p>
-<code class="literal">Match</code> &#26465;&#38917;&#12399;&#12289;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12395;&#23455;&#38555;&#12395;&#21547;&#12414;&#12428;&#12390;&#12356;&#12427;&#24773;&#22577;&#12395;&#12398;&#12415;&#19968;&#33268;&#12375;&#12414;&#12377;&#12290;&#12377;&#12409;&#12390;&#12398;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12399;&#12463;&#12521;&#12473;&#12434;&#25345;&#12387;&#12390;&#12356;&#12414;&#12377;&#12290;&#12375;&#12383;&#12364;&#12387;&#12390;&#12289;&#19968;&#33324;&#30340;&#12395;&#35328;&#12387;&#12390;&#12289;&#12496;&#12464;&#12434;&#38500;&#22806;&#12377;&#12427;&#12383;&#12417;&#12395;&#12399;&#12463;&#12521;&#12473;&#12434;&#29992;&#12356;&#12390;&#34892;&#12358;&#12392;&#12358;&#12414;&#12367;&#12356;&#12367;&#12371;&#12392;&#12364;&#22810;&#12356;&#12391;&#12377;&#12290;</p><p>&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12398;&#20013;&#12395;&#12399;&#12289;2&#20491;&#20197;&#19978;&#12398;&#12463;&#12521;&#12473;&#12434;&#20445;&#25345;&#12375;&#12390;&#12356;&#12427;&#12418;&#12398;&#12418;&#12354;&#12426;&#12414;&#12377;&#12290;&#20363;&#12360;&#12400;&#12289; DE (dropped exception : &#20363;&#22806;&#12398;&#28961;&#35222;) &#12496;&#12464;&#12399;&#12289; &#20363;&#22806;&#12398;&#28961;&#35222;&#12364;&#30330;&#29983;&#12375;&#12383;&#12513;&#12477;&#12483;&#12489;&#12434;&#25345;&#12387;&#12390;&#12356;&#12427;&#12463;&#12521;&#12473;&#12392;&#12289; &#28961;&#35222;&#12373;&#12428;&#12383;&#20363;&#22806;&#12398;&#22411;&#12434;&#34920;&#12377;&#12463;&#12521;&#12473;&#12398;&#20001;&#26041;&#12434;&#21547;&#12435;&#12384;&#24418;&#12391;&#22577;&#21578;&#12373;&#12428;&#12414;&#12377;&#12290;<code class="literal">Match</code> &#26465;&#38917;&#12392;&#12399;&#12289; <span class="emphasis"><em>1&#30058;&#30446;</em></span> (&#20027;) &#12398;&#12463;&#12521;&#12473;&#12398;&#12415;&#12364;&#29031;&#21512;&#12373;&#12428;&#12414;&#12377;&#12290;&#12375;&#12383;&#12364;&#12387;&#12390;&#12289;&#20363;&#12360;&#12400;&#12289;&#12463;&#12521;&#12473; "com.foobar.A" &#12289; "com.foobar.B" &#38291;&#12391;&#12398; IC (initialization circularity : &#21021;&#26399;&#21270;&#26178;&#12398;&#20966;&#29702;&#24490;&#29872;) &#12496;&#12464;&#22577;&#21578;&#12434;&#25233;&#27490;&#12375;&#12383;&#12356;&#22580;&#21512;&#12289;&#20197;&#19979;&#12395;&#31034;&#12377;&#12424;&#12358;&#12395; 2&#12388;&#12398; <code class="literal">Match</code> &#26465;&#38917;&#12434;&#20351;&#29992;&#12375;&#12414;&#12377; :</p><pre class="programlisting">
-   &lt;Match&gt;
-      &lt;Class name="com.foobar.A" /&gt;
-      &lt;Bug code="IC" /&gt;
-   &lt;/Match&gt;
-
-   &lt;Match&gt;
-      &lt;Class name="com.foobar.B" /&gt;
-      &lt;Bug code="IC" /&gt;
-   &lt;/Match&gt;
-</pre><p>&#26126;&#31034;&#30340;&#12395;&#20001;&#26041;&#12398;&#12463;&#12521;&#12473;&#12391;&#29031;&#21512;&#12377;&#12427;&#12371;&#12392;&#12395;&#12424;&#12387;&#12390;&#12289;&#24490;&#29872;&#12375;&#12390;&#12356;&#12427;&#12393;&#12385;&#12425;&#12398;&#12463;&#12521;&#12473;&#12364;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12398; 1 &#30058;&#30446;&#12395;&#12394;&#12387;&#12390;&#12356;&#12427;&#12363;&#12395;&#38306;&#20418;&#12394;&#12367;&#19968;&#33268;&#12373;&#12379;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;(&#12418;&#12385;&#12429;&#12435;&#12371;&#12398;&#26041;&#27861;&#12399;&#12289;&#20966;&#29702;&#24490;&#29872;&#12364; "com.foobar.A" &#12289; "com.foobar.B" &#12395;&#21152;&#12360;&#12390;3&#30058;&#30446;&#12398;&#12463;&#12521;&#12473;&#12418;&#21547;&#12435;&#12391;&#12356;&#12427;&#22580;&#21512;&#12399;&#22259;&#12425;&#12378;&#12418;&#22833;&#25943;&#12375;&#12390;&#12375;&#12414;&#12358;&#24656;&#12428;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;)</p><p>&#22810;&#12367;&#12398;&#31278;&#39006;&#12398;&#12496;&#12464;&#22577;&#21578;&#12399;&#12289;&#33258;&#36523;&#12364;&#20986;&#29694;&#12375;&#12383;&#12513;&#12477;&#12483;&#12489;&#12434;&#22577;&#21578;&#12375;&#12414;&#12377;&#12290;&#12381;&#12428;&#12425;&#12398;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12395;&#23550;&#12375;&#12390;&#12399;&#12289; <code class="literal">Method</code> &#26465;&#38917;&#12434; <code class="literal">Match</code> &#35201;&#32032;&#12395;&#21152;&#12360;&#12427;&#12392;&#26399;&#24453;&#36890;&#12426;&#12398;&#21205;&#20316;&#12434;&#12377;&#12427;&#12391;&#12375;&#12423;&#12358;&#12290;</p></div><div class="sect1" title="5. &#20363;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2012"></a>5. &#20363;</h2></div></div></div><p>1. &#29305;&#23450;&#12398;&#12463;&#12521;&#12473;&#12395;&#23550;&#12377;&#12427;&#12377;&#12409;&#12390;&#12398;&#12496;&#12464;&#22577;&#21578;&#12395;&#19968;&#33268;&#12373;&#12379;&#12414;&#12377;&#12290;</p><pre class="programlisting">
-
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.MyClass" /&gt;
-     &lt;/Match&gt;
-
-</pre><p>
-
-</p><p>2. &#12496;&#12464;&#30053;&#31216;&#12434;&#25351;&#23450;&#12375;&#12390;&#12289;&#29305;&#23450;&#12398;&#12463;&#12521;&#12473;&#12395;&#23550;&#12377;&#12427;&#29305;&#23450;&#12398;&#26908;&#26619;&#38917;&#30446;&#12395;&#19968;&#33268;&#12373;&#12379;&#12414;&#12377;&#12290;</p><pre class="programlisting">
-
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.MyClass"/ &gt;
-       &lt;Bug code="DE,UrF,SIC" /&gt;
-     &lt;/Match&gt;
-
-</pre><p>
-</p><p>3. &#12496;&#12464;&#30053;&#31216;&#12434;&#25351;&#23450;&#12375;&#12390;&#12289;&#12377;&#12409;&#12390;&#12398;&#12463;&#12521;&#12473;&#12395;&#23550;&#12377;&#12427;&#29305;&#23450;&#12398;&#26908;&#26619;&#38917;&#30446;&#12395;&#19968;&#33268;&#12373;&#12379;&#12414;&#12377;&#12290;</p><pre class="programlisting">
-
-     &lt;Match&gt;
-       &lt;Bug code="DE,UrF,SIC" /&gt;
-     &lt;/Match&gt;
-
-</pre><p>
-</p><p>4. &#12496;&#12464;&#12459;&#12486;&#12468;&#12522;&#12540;&#12434;&#25351;&#23450;&#12375;&#12390;&#12289;&#12377;&#12409;&#12390;&#12398;&#12463;&#12521;&#12473;&#12395;&#23550;&#12377;&#12427;&#29305;&#23450;&#12398;&#26908;&#26619;&#38917;&#30446;&#12395;&#19968;&#33268;&#12373;&#12379;&#12414;&#12377;&#12290;</p><pre class="programlisting">
-
-     &lt;Match&gt;
-       &lt;Bug category="PERFORMANCE" /&gt;
-     &lt;/Match&gt;
-
-</pre><p>
-</p><p>5. &#12496;&#12464;&#30053;&#31216;&#12434;&#25351;&#23450;&#12375;&#12390;&#12289;&#29305;&#23450;&#12398;&#12463;&#12521;&#12473;&#12398;&#25351;&#23450;&#12373;&#12428;&#12383;&#12513;&#12477;&#12483;&#12489;&#12395;&#23550;&#12377;&#12427;&#29305;&#23450;&#12398;&#12496;&#12464;&#31278;&#21029;&#12395;&#19968;&#33268;&#12373;&#12379;&#12414;&#12377;&#12290;</p><pre class="programlisting">
-
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.MyClass" /&gt;
-       &lt;Or&gt;
-         &lt;Method name="frob" params="int,java.lang.String" returns="void" /&gt;
-         &lt;Method name="blat" params="" returns="boolean" /&gt;
-       &lt;/Or&gt;
-       &lt;Bug code="DC" /&gt;
-     &lt;/Match&gt;
-
-</pre><p>
-</p><p>6. &#29305;&#23450;&#12398;&#12513;&#12477;&#12483;&#12489;&#12395;&#23550;&#12377;&#12427;&#29305;&#23450;&#12398;&#12496;&#12464;&#12497;&#12479;&#12540;&#12531;&#12395;&#19968;&#33268;&#12373;&#12379;&#12414;&#12377;&#12290;</p><pre class="programlisting">
-
-    &lt;!-- open stream &#12395;&#38306;&#12377;&#12427;&#35492;&#26908;&#20986;&#12364;&#12354;&#12427;&#12513;&#12477;&#12483;&#12489;&#12290;--&gt;
-    &lt;Match&gt;
-      &lt;Class name="com.foobar.MyClass" /&gt;
-      &lt;Method name="writeDataToFile" /&gt;
-      &lt;Bug pattern="OS_OPEN_STREAM" /&gt;
-    &lt;/Match&gt;
-
-</pre><p>
-</p><p>7. &#29305;&#23450;&#12398;&#12513;&#12477;&#12483;&#12489;&#12395;&#23550;&#12377;&#12427;&#29305;&#23450;&#12398;&#20778;&#20808;&#24230;&#12434;&#20184;&#19982;&#12373;&#12428;&#12383;&#29305;&#23450;&#12398;&#12496;&#12464;&#12497;&#12479;&#12540;&#12531;&#12395;&#19968;&#33268;&#12373;&#12379;&#12414;&#12377;&#12290;</p><pre class="programlisting">
-
-    &lt;!-- dead local store (&#20778;&#20808;&#24230; (&#20013;)) &#12395;&#38306;&#12377;&#12427;&#35492;&#26908;&#20986;&#12364;&#12354;&#12427;&#12513;&#12477;&#12483;&#12489;&#12290;--&gt;
-    &lt;Match&gt;
-      &lt;Class name="com.foobar.MyClass" /&gt;
-      &lt;Method name="someMethod" /&gt;
-      &lt;Bug pattern="DLS_DEAD_LOCAL_STORE" /&gt;
-      &lt;Priority value="2" /&gt;
-    &lt;/Match&gt;
-
-</pre><p>
-</p><p>8. AspectJ &#12467;&#12531;&#12497;&#12452;&#12521;&#12540;&#12395;&#12424;&#12387;&#12390;&#24341;&#12365;&#36215;&#12371;&#12373;&#12428;&#12427;&#12510;&#12452;&#12490;&#12540;&#12496;&#12464;&#12395;&#19968;&#33268;&#12373;&#12379;&#12414;&#12377; (AspectJ &#12398;&#38283;&#30330;&#32773;&#12391;&#12418;&#12394;&#12356;&#38480;&#12426;&#12289;&#12381;&#12428;&#12425;&#12398;&#12496;&#12464;&#12395;&#38306;&#24515;&#12434;&#25345;&#12388;&#12371;&#12392;&#12399;&#12394;&#12356;&#12392;&#32771;&#12360;&#12414;&#12377;)&#12290;</p><pre class="programlisting">
-
-    &lt;Match&gt;
-      &lt;Class name="~.*\$AjcClosure\d+" /&gt;
-      &lt;Bug pattern="DLS_DEAD_LOCAL_STORE" /&gt;
-      &lt;Method name="run" /&gt;
-    &lt;/Match&gt;
-    &lt;Match&gt;
-      &lt;Bug pattern="UUF_UNUSED_FIELD" /&gt;
-      &lt;Field name="~ajc\$.*" /&gt;
-    &lt;/Match&gt;
-
-</pre><p>
-</p><p>9. &#22522;&#30436;&#12467;&#12540;&#12489;&#12398;&#29305;&#23450;&#12398;&#37096;&#20998;&#12395;&#23550;&#12377;&#12427;&#12496;&#12464;&#12395;&#19968;&#33268;&#12373;&#12379;&#12414;&#12377;</p><pre class="programlisting">
-
-    &lt;!-- &#12377;&#12409;&#12390;&#12398;&#12497;&#12483;&#12465;&#12540;&#12472;&#12395;&#12354;&#12427; Messages &#12463;&#12521;&#12473;&#12395;&#23550;&#12377;&#12427; unused fields &#35686;&#21578;&#12395;&#19968;&#33268;&#12290; --&gt;
-    &lt;Match&gt;
-      &lt;Class name="~.*\.Messages" /&gt;
-      &lt;Bug code="UUF" /&gt;
-    &lt;/Match&gt;
-    &lt;!-- &#12377;&#12409;&#12390;&#12398; internal &#12497;&#12483;&#12465;&#12540;&#12472;&#20869;&#12398; mutable statics &#35686;&#21578;&#12395;&#19968;&#33268;&#12290; --&gt;
-    &lt;Match&gt;
-      &lt;Package name="~.*\.internal" /&gt;
-      &lt;Bug code="MS" /&gt;
-    &lt;/Match&gt;
-    &lt;!-- ui &#12497;&#12483;&#12465;&#12540;&#12472;&#38542;&#23652;&#20869;&#12398; anonymoous inner classes &#35686;&#21578;&#12395;&#19968;&#33268;&#12290; --&gt;
-    &lt;Match&gt;
-      &lt;Package name="~com\.foobar\.fooproject\.ui.*" /&gt;
-      &lt;Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON" /&gt;
-    &lt;/Match&gt;
-
-</pre><p>
-</p><p>10. &#29305;&#23450;&#12398;&#12471;&#12464;&#12491;&#12481;&#12515;&#12540;&#12434;&#25345;&#12388;&#12501;&#12451;&#12540;&#12523;&#12489;&#12414;&#12383;&#12399;&#12513;&#12477;&#12483;&#12489;&#12398;&#12496;&#12464;&#12395;&#19968;&#33268;&#12373;&#12379;&#12414;&#12377;&#12290;</p><pre class="programlisting">
-
-    &lt;!-- &#12377;&#12409;&#12390;&#12398;&#12463;&#12521;&#12473;&#12398; main(String[]) &#12513;&#12477;&#12483;&#12489;&#12395;&#23550;&#12377;&#12427; System.exit(...) usage &#35686;&#21578;&#12395;&#19968;&#33268;&#12290; --&gt;
-    &lt;Match&gt;
-      &lt;Method returns="void" name="main" params="java.lang.String[]" /&gt;
-      &lt;Method pattern="DM_EXIT" /&gt;
-    &lt;/Match&gt;
-    &lt;!-- &#12377;&#12409;&#12390;&#12398;&#12463;&#12521;&#12473;&#12398; com.foobar.DebugInfo &#22411;&#12398;&#12501;&#12451;&#12540;&#12523;&#12489;&#12395;&#23550;&#12377;&#12427; UuF &#35686;&#21578;&#12395;&#19968;&#33268;&#12290; --&gt;
-    &lt;Match&gt;
-      &lt;Field type="com.foobar.DebugInfo" /&gt;
-      &lt;Bug code="UuF" /&gt;
-    &lt;/Match&gt;
-
-</pre><p>
-
-</p></div><div class="sect1" title="6. &#23436;&#20840;&#12394;&#20363;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2065"></a>6. &#23436;&#20840;&#12394;&#20363;</h2></div></div></div><pre class="programlisting">
-
-&lt;FindBugsFilter&gt;
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.ClassNotToBeAnalyzed" /&gt;
-     &lt;/Match&gt;
-
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.ClassWithSomeBugsMatched" /&gt;
-       &lt;Bug code="DE,UrF,SIC" /&gt;
-     &lt;/Match&gt;
-
-     &lt;!-- XYZ &#36949;&#21453;&#12395;&#19968;&#33268;&#12290;--&gt;
-     &lt;Match&gt;
-       &lt;Bug code="XYZ" /&gt;
-     &lt;/Match&gt;
-
-     &lt;!-- "AnotherClass" &#12398;&#29305;&#23450;&#12398;&#12513;&#12477;&#12483;&#12489;&#12398; doublecheck &#36949;&#21453;&#12395;&#19968;&#33268;&#12290;--&gt;
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.AnotherClass" /&gt;
-       &lt;Or&gt;
-         &lt;Method name="nonOverloadedMethod" /&gt;
-         &lt;Method name="frob" params="int,java.lang.String" returns="void" /&gt;
-         &lt;Method name="blat" params="" returns="boolean" /&gt;
-       &lt;/Or&gt;
-       &lt;Bug code="DC" /&gt;
-     &lt;/Match&gt;
-
-     &lt;!-- dead local store (&#20778;&#20808;&#24230; (&#20013;)) &#12395;&#38306;&#12377;&#12427;&#35492;&#26908;&#20986;&#12364;&#12354;&#12427;&#12513;&#12477;&#12483;&#12489;&#12290;--&gt;
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.MyClass" /&gt;
-       &lt;Method name="someMethod" /&gt;
-       &lt;Bug pattern="DLS_DEAD_LOCAL_STORE" /&gt;
-       &lt;Priority value="2" /&gt;
-     &lt;/Match&gt;
-&lt;/FindBugsFilter&gt;
-
-</pre></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="eclipse.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="analysisprops.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;7&#31456; <span class="application">FindBugs</span>&#8482; Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;9&#31456; &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/gui.html b/tools/findbugs/doc/ja/manual/gui.html
deleted file mode 100644
index 8c7088f..0000000
--- a/tools/findbugs/doc/ja/manual/gui.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;5&#31456; FindBugs GUI &#12398;&#20351;&#29992;&#26041;&#27861;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="running.html" title="&#31532;4&#31456; FindBugs&#8482; &#12398;&#23455;&#34892;"><link rel="next" href="anttask.html" title="&#31532;6&#31456; FindBugs&#8482; Ant &#12479;&#12473;&#12463;&#12398;&#20351;&#29992;&#26041;&#27861;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;5&#31456; <span class="application">FindBugs</span> GUI &#12398;&#20351;&#29992;&#26041;&#27861;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="running.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="anttask.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;5&#31456; FindBugs GUI &#12398;&#20351;&#29992;&#26041;&#27861;"><div class="titlepage"><div><div><h2 class="title"><a name="gui"></a>&#31532;5&#31456; <span class="application">FindBugs</span> GUI &#12398;&#20351;&#29992;&#26041;&#27861;</h2></div></div></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="sect1"><a href="gui.html#d0e1058">1. &#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12398;&#20316;&#25104;</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1099">2. &#20998;&#26512;&#12398;&#23455;&#34892;</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1104">3. &#32080;&#26524;&#12398;&#38322;&#35239;</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1119">4. &#20445;&#23384;&#12392;&#35501;&#12415;&#36796;&#12415;</a></span></dt></dl></div><p>&#12371;&#12398;&#31456;&#12391;&#12399;&#12289;<span class="application">FindBugs</span> &#12464;&#12521;&#12501;&#12451;&#12459;&#12523;&#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473; (GUI) &#12398;&#20351;&#29992;&#26041;&#27861;&#12434;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;</p><div class="sect1" title="1. &#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12398;&#20316;&#25104;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1058"></a>1. &#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12398;&#20316;&#25104;</h2></div></div></div><p><span class="command"><strong>findbugs</strong></span>  &#12467;&#12510;&#12531;&#12489;&#12391; <span class="application">FindBugs</span> &#12434;&#36215;&#21205;&#12375;&#12390;&#12363;&#12425;&#12289;&#12513;&#12491;&#12517;&#12540;&#12391; <span class="guimenu">File</span> &#8594; <span class="guimenuitem">New Project</span> &#12434;&#36984;&#25246;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#12381;&#12358;&#12377;&#12427;&#12392;&#12289;&#27425;&#12398;&#12424;&#12358;&#12394;&#12480;&#12452;&#12450;&#12525;&#12464;&#12364;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;:</p><div class="mediaobject"><img src="project-dialog.png"></div><p>
-</p><p>&#12300;Class archives and directories to analyze&#12301;&#12486;&#12461;&#12473;&#12488;&#12501;&#12451;&#12540;&#12523;&#12489;&#12398;&#27178;&#12395;&#12354;&#12427; &#12300;Add&#12301;&#12508;&#12479;&#12531;&#12434;&#25276;&#12377;&#12392;&#12289;&#12496;&#12464;&#12434;&#20998;&#26512;&#12377;&#12427; java &#12463;&#12521;&#12473;&#12434;&#21547;&#12435;&#12391;&#12356;&#12427; Java &#12450;&#12540;&#12459;&#12452;&#12502;&#12501;&#12449;&#12452;&#12523; (zip, jar, ear, or war file) &#12434;&#36984;&#25246;&#12375;&#12390;&#25351;&#23450;&#12391;&#12365;&#12414;&#12377;&#12290;&#35079;&#25968;&#12398; &#12450;&#12540;&#12459;&#12452;&#12502;/&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12434;&#36861;&#21152;&#12377;&#12427;&#12371;&#12392;&#12364;&#21487;&#33021;&#12391;&#12377;&#12290;</p><p>&#12414;&#12383;&#12289;&#20998;&#26512;&#12434;&#34892;&#12358; Java &#12450;&#12540;&#12459;&#12452;&#12502;&#12398;&#12477;&#12540;&#12473;&#12467;&#12540;&#12489;&#12434;&#21547;&#12435;&#12384;&#12477;&#12540;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12434;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12418;&#12391;&#12365;&#12414;&#12377;&#12290;&#12381;&#12358;&#12377;&#12427;&#12392;&#12289;&#12496;&#12464;&#12398;&#21487;&#33021;&#24615;&#12364;&#12354;&#12427;&#12477;&#12540;&#12473;&#12467;&#12540;&#12489;&#12398;&#22580;&#25152;&#12364;&#12289;<span class="application">FindBugs</span> &#19978;&#12391;&#12495;&#12452;&#12521;&#12452;&#12488;&#12375;&#12390;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;&#12477;&#12540;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12399;&#12289;Java &#12497;&#12483;&#12465;&#12540;&#12472;&#38542;&#23652;&#12398;&#12523;&#12540;&#12488;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12434;&#25351;&#23450;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#20363;&#12360;&#12400;&#12289;&#12518;&#12540;&#12470;&#12398;&#12450;&#12503;&#12522;&#12465;&#12540;&#12471;&#12519;&#12531;&#12364; <code class="varname">org.foobar.myapp</code> &#12497;&#12483;&#12465;&#12540;&#12472;&#12398;&#20013;&#12395;&#12354;&#12427;&#22580;&#21512;&#12399;&#12289; <code class="filename">org</code> &#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12398;&#35242;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12434;&#12477;&#12540;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12522;&#12473;&#12488;&#12395;&#25351;&#23450;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p><p>&#12418;&#12358;&#12402;&#12392;&#12388;&#12289;&#20219;&#24847;&#25351;&#23450;&#12398;&#25163;&#38918;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#12381;&#12428;&#12399;&#12289;&#35036;&#21161;&#29992;&#12398; Jar &#12501;&#12449;&#12452;&#12523;&#12362;&#12424;&#12403;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12434; &#12300;Auxiliary classpath locations&#12301;&#12398;&#12456;&#12531;&#12488;&#12522;&#12540;&#12395;&#36861;&#21152;&#12377;&#12427;&#12371;&#12392;&#12391;&#12377;&#12290;&#20998;&#26512;&#12377;&#12427;&#12450;&#12540;&#12459;&#12452;&#12502;/&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12395;&#12418;&#27161;&#28310;&#12398;&#23455;&#34892;&#26178;&#12463;&#12521;&#12473;&#12497;&#12473;&#12395;&#12418;&#21547;&#12414;&#12428;&#12390;&#12356;&#12394;&#12356;&#12463;&#12521;&#12473;&#12434;&#12289;&#20998;&#26512;&#12377;&#12427;&#12450;&#12540;&#12459;&#12452;&#12502;/&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12364;&#21442;&#29031;&#12375;&#12390;&#12356;&#12427;&#22580;&#21512;&#12399;&#12289;&#12371;&#12398;&#38917;&#30446;&#12434;&#35373;&#23450;&#12375;&#12383;&#26041;&#12364;&#12356;&#12356;&#12391;&#12375;&#12423;&#12358;&#12290;&#12463;&#12521;&#12473;&#38542;&#23652;&#12395;&#38306;&#12377;&#12427;&#24773;&#22577;&#12434;&#20351;&#29992;&#12377;&#12427;&#12496;&#12464;&#12487;&#12451;&#12486;&#12463;&#12479;&#12364;&#12289; <span class="application">FindBugs</span> &#12395;&#12399;&#12356;&#12367;&#12388;&#12363;&#12354;&#12426;&#12414;&#12377;&#12290;&#12375;&#12383;&#12364;&#12387;&#12390;&#12289;<span class="application">FindBugs</span> &#12364;&#20998;&#26512;&#12434;&#34892;&#12358;&#12463;&#12521;&#12473;&#12398;&#23436;&#20840;&#12394;&#12463;&#12521;&#12473;&#38542;&#23652;&#12434;&#21442;&#29031;&#12391;&#12365;&#12428;&#12400;&#12289;&#12424;&#12426;&#27491;&#30906;&#12394;&#20998;&#26512;&#32080;&#26524;&#12434;&#21462;&#24471;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p></div><div class="sect1" title="2. &#20998;&#26512;&#12398;&#23455;&#34892;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1099"></a>2. &#20998;&#26512;&#12398;&#23455;&#34892;</h2></div></div></div><p>&#12450;&#12540;&#12459;&#12452;&#12502;&#12289;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12362;&#12424;&#12403;&#12477;&#12540;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12398;&#25351;&#23450;&#12364;&#12391;&#12365;&#12428;&#12400;&#12289;&#12300;Finish&#12301;&#12508;&#12479;&#12531;&#12434;&#25276;&#12375;&#12390; Jar &#12501;&#12449;&#12452;&#12523;&#12395;&#21547;&#12414;&#12428;&#12427;&#12463;&#12521;&#12473;&#12395;&#23550;&#12377;&#12427;&#20998;&#26512;&#12434;&#23455;&#34892;&#12375;&#12414;&#12377;&#12290;&#24040;&#22823;&#12394;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12434;&#21476;&#12356;&#12467;&#12531;&#12500;&#12517;&#12540;&#12479;&#19978;&#12391;&#23455;&#34892;&#12377;&#12427;&#12392;&#12289;&#12363;&#12394;&#12426;&#12398;&#26178;&#38291;(&#25968;&#21313;&#20998;)&#12364;&#12363;&#12363;&#12427;&#12371;&#12392;&#12395;&#27880;&#24847;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#22823;&#23481;&#37327;&#12513;&#12514;&#12522;&#12391;&#12354;&#12427;&#26368;&#36817;&#12398;&#12467;&#12531;&#12500;&#12517;&#12540;&#12479;&#12394;&#12425;&#12289;&#22823;&#12365;&#12394;&#12503;&#12525;&#12464;&#12521;&#12512;&#12391;&#12354;&#12387;&#12390;&#12418;&#25968;&#20998;&#31243;&#24230;&#12391;&#20998;&#26512;&#12391;&#12365;&#12414;&#12377;&#12290;</p></div><div class="sect1" title="3. &#32080;&#26524;&#12398;&#38322;&#35239;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1104"></a>3. &#32080;&#26524;&#12398;&#38322;&#35239;</h2></div></div></div><p>&#20998;&#26512;&#12364;&#23436;&#20102;&#12377;&#12427;&#12392;&#12289;&#27425;&#12398;&#12424;&#12358;&#12394;&#30011;&#38754;&#12364;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377; :</p><div class="mediaobject"><img src="example-details.png"></div><p>
-</p><p>&#24038;&#19978;&#12398;&#12506;&#12452;&#12531;&#12395;&#12399;&#12496;&#12464;&#38542;&#23652;&#12484;&#12522;&#12540;&#12364;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;&#12371;&#12428;&#12399;&#12289;&#20998;&#26512;&#12391;&#12415;&#12388;&#12363;&#12387;&#12383;&#12496;&#12464;&#12398;&#26908;&#32034;&#32080;&#26524;&#12364;&#38542;&#23652;&#30340;&#12395;&#34920;&#31034;&#12373;&#12428;&#12383;&#12418;&#12398;&#12391;&#12377;&#12290;</p><p>&#19978;&#37096;&#12398;&#12506;&#12452;&#12531;&#12391;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12434;&#36984;&#25246;&#12377;&#12427;&#12392;&#12289;&#19979;&#37096;&#12398;&#12300;Details&#12301;&#12506;&#12452;&#12531;&#12395;&#12496;&#12464;&#12398;&#35443;&#32048;&#35500;&#26126;&#12364;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;&#26356;&#12395;&#12289;&#12477;&#12540;&#12473;&#12364;&#12415;&#12388;&#12363;&#12428;&#12400;&#12289;&#21491;&#19978;&#12398;&#12477;&#12540;&#12473;&#12467;&#12540;&#12489;&#12506;&#12452;&#12531;&#12395;&#12496;&#12464;&#12398;&#20986;&#29694;&#31623;&#25152;&#12395;&#35442;&#24403;&#12377;&#12427;&#12477;&#12540;&#12473;&#12467;&#12540;&#12489;&#12364;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;&#19978;&#22259;&#12398;&#20363;&#12391;&#34920;&#31034;&#12373;&#12428;&#12390;&#12356;&#12427;&#12496;&#12464;&#12399;&#12289;&#12473;&#12488;&#12522;&#12540;&#12512;&#12458;&#12502;&#12472;&#12455;&#12463;&#12488;&#12364;&#12463;&#12525;&#12540;&#12474;&#12373;&#12428;&#12390;&#12356;&#12394;&#12356;&#12392;&#12356;&#12358;&#12418;&#12398;&#12391;&#12377;&#12290;&#12477;&#12540;&#12473;&#12467;&#12540;&#12489;&#12539;&#12454;&#12451;&#12531;&#12489;&#12454;&#12395;&#12362;&#12356;&#12390;&#24403;&#35442;&#12473;&#12488;&#12522;&#12540;&#12512;&#12458;&#12502;&#12472;&#12455;&#12463;&#12488;&#12434;&#29983;&#25104;&#12375;&#12390;&#12356;&#12427;&#34892;&#12364;&#12495;&#12452;&#12521;&#12452;&#12488;&#12373;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;</p><p>&#12496;&#12464;&#12398;&#26908;&#32034;&#32080;&#26524;&#12395;&#23550;&#12375;&#12390;&#12486;&#12461;&#12473;&#12488;&#12391;&#27880;&#37320;&#12434;&#20837;&#12428;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#38542;&#23652;&#12484;&#12522;&#12540;&#22259;&#12398;&#12377;&#12368;&#19979;&#12395;&#12354;&#12427;&#12486;&#12461;&#12473;&#12488;&#12508;&#12483;&#12463;&#12473;&#12395;&#27880;&#37320;&#12434;&#20837;&#21147;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#35352;&#37682;&#12375;&#12390;&#12362;&#12365;&#12383;&#12356;&#24773;&#22577;&#12434;&#20309;&#12391;&#12418;&#33258;&#30001;&#12395;&#20837;&#21147;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12496;&#12464;&#32080;&#26524;&#12501;&#12449;&#12452;&#12523;&#12398;&#20445;&#23384;&#12362;&#12424;&#12403;&#35501;&#12415;&#36796;&#12415;&#12434;&#34892;&#12387;&#12383;&#12392;&#12365;&#12395;&#12289;&#27880;&#37320;&#12418;&#20445;&#23384;&#12373;&#12428;&#12414;&#12377;&#12290;</p></div><div class="sect1" title="4. &#20445;&#23384;&#12392;&#35501;&#12415;&#36796;&#12415;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1119"></a>4. &#20445;&#23384;&#12392;&#35501;&#12415;&#36796;&#12415;</h2></div></div></div><p>&#12513;&#12491;&#12517;&#12540;&#38917;&#30446;&#12363;&#12425; <span class="guimenu">File</span> &#8594; <span class="guimenuitem">Save as...</span> &#12434;&#36984;&#25246;&#12377;&#12427;&#12392;&#12289;&#12518;&#12540;&#12470;&#12540;&#12398;&#20316;&#26989;&#32080;&#26524;&#12434;&#20445;&#23384;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12300;Save as...&#12301;&#12480;&#12452;&#12450;&#12525;&#12464;&#12395;&#12354;&#12427;&#12489;&#12525;&#12483;&#12503;&#12480;&#12454;&#12531;&#12539;&#12522;&#12473;&#12488;&#12398;&#20013;&#12363;&#12425;&#12300;FindBugs analysis results (.xml)&#12301;&#12434;&#36984;&#25246;&#12371;&#12392;&#12391;&#12289;&#12518;&#12540;&#12470;&#12540;&#12364;&#25351;&#23450;&#12375;&#12383; jar &#12501;&#12449;&#12452;&#12523;&#12522;&#12473;&#12488;&#12420;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12394;&#12393;&#12398;&#20316;&#26989;&#32080;&#26524;&#12434;&#20445;&#23384;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12414;&#12383;&#12289;jar &#12501;&#12449;&#12452;&#12523;&#12522;&#12473;&#12488;&#12398;&#12415;&#12434;&#20445;&#23384;&#12377;&#12427;&#36984;&#25246;&#32930; (&#12300;FindBugs project file (.fbp)&#12301;) &#12420;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12398;&#12415;&#12434;&#20445;&#23384;&#12377;&#12427;&#36984;&#25246;&#32930; (&#12300;FindBugs analysis file (.fba)&#12301;) &#12418;&#12354;&#12426;&#12414;&#12377;&#12290;&#20445;&#23384;&#12375;&#12383;&#12501;&#12449;&#12452;&#12523;&#12399;&#12289;&#12513;&#12491;&#12517;&#12540;&#38917;&#30446;&#12363;&#12425; <span class="guimenu">File</span> &#8594; <span class="guimenuitem">Open...</span> &#12434;&#36984;&#25246;&#12377;&#12427;&#12371;&#12392;&#12391;&#12289;&#35501;&#12415;&#36796;&#12416;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="running.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="anttask.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;4&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;6&#31456; <span class="application">FindBugs</span>&#8482; <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12398;&#20351;&#29992;&#26041;&#27861;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/important.png b/tools/findbugs/doc/ja/manual/important.png
deleted file mode 100644
index 12c90f6..0000000
--- a/tools/findbugs/doc/ja/manual/important.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/ja/manual/index.html b/tools/findbugs/doc/ja/manual/index.html
deleted file mode 100644
index b039130..0000000
--- a/tools/findbugs/doc/ja/manual/index.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="next" href="introduction.html" title="&#31532;1&#31456; &#12399;&#12376;&#12417;&#12395;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center"><span class="application">FindBugs</span>&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;</th></tr><tr><td width="20%" align="left">&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="introduction.html">&#27425;&#12408;</a></td></tr></table><hr></div><div lang="ja" class="book" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><div class="titlepage"><div><div><h1 class="title"><a name="findbugs-manual"></a><span class="application">FindBugs</span>&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;</h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="surname">Hovemeyer</span> <span class="firstname">David</span> [FAMILY Given]</h3></div><div class="author"><h3 class="author"><span class="surname">Pugh</span> <span class="firstname">William</span> [FAMILY Given]</h3></div></div></div><div><p class="copyright">&#35069;&#20316;&#33879;&#20316; &copy; 2003, 2004, 2005, 2006, 2008 University of Maryland</p></div><div><div class="legalnotice" title="&#27861;&#24459;&#19978;&#12398;&#36890;&#30693;"><a name="d0e35"></a><p>&#12371;&#12398;&#12510;&#12491;&#12517;&#12450;&#12523;&#12399;&#12289;&#12463;&#12522;&#12456;&#12452;&#12486;&#12451;&#12502;&#12539;&#12467;&#12514;&#12531;&#12474;&#34920;&#31034;-&#38750;&#21942;&#21033;-&#32153;&#25215;&#12395;&#22522;&#12389;&#12367;&#20351;&#29992;&#35377;&#35582;&#12364;&#12394;&#12373;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;&#20351;&#29992;&#35377;&#35582;&#26360;&#12434;&#12372;&#35239;&#12395;&#12394;&#12427;&#22580;&#21512;&#12399;&#12289; <a class="ulink" href="http://creativecommons.org/licenses/by-nc-sa/1.0/deed.ja" target="_top">http://creativecommons.org/licenses/by-nc-sa/1.0/</a> &#12395;&#12450;&#12463;&#12475;&#12473;&#12377;&#12427;&#12363;&#12289;&#12463;&#12522;&#12456;&#12452;&#12486;&#12451;&#12502;&#12539;&#12467;&#12514;&#12531;&#12474;(559 Nathan Abbott Way, Stanford, California 94305, USA)&#12395;&#26360;&#31777;&#12434;&#36865;&#20184;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p><p>&#21517;&#31216;&#12300;FindBugs&#12301;&#12362;&#12424;&#12403; FindBugs &#12398;&#12525;&#12468;&#12399;&#12289;&#12513;&#12522;&#12540;&#12521;&#12531;&#12489;&#22823;&#23398;&#12398;&#30331;&#37682;&#21830;&#27161;&#12391;&#12377;&#12290;</p></div></div><div><p class="pubdate">17:16:15 EST, 22 November, 2013</p></div></div><hr></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="chapter"><a href="introduction.html">1. &#12399;&#12376;&#12417;&#12395;</a></span></dt><dd><dl><dt><span class="sect1"><a href="introduction.html#d0e74">1. &#24517;&#35201;&#26465;&#20214;</a></span></dt></dl></dd><dt><span class="chapter"><a href="installing.html">2. <span class="application">FindBugs</span>&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</a></span></dt><dd><dl><dt><span class="sect1"><a href="installing.html#d0e102">1. &#37197;&#24067;&#29289;&#12398;&#23637;&#38283;</a></span></dt></dl></dd><dt><span class="chapter"><a href="building.html">3. <span class="application">FindBugs</span>&#8482; &#12398;&#12477;&#12540;&#12523;&#12363;&#12425;&#12398;&#12499;&#12523;&#12489;</a></span></dt><dd><dl><dt><span class="sect1"><a href="building.html#d0e175">1. &#21069;&#25552;&#26465;&#20214;</a></span></dt><dt><span class="sect1"><a href="building.html#d0e258">2. &#12477;&#12540;&#12473;&#37197;&#24067;&#29289;&#12398;&#23637;&#38283;</a></span></dt><dt><span class="sect1"><a href="building.html#d0e271">3. <code class="filename">local.properties</code> &#12398;&#20462;&#27491;</a></span></dt><dt><span class="sect1"><a href="building.html#d0e326">4. <span class="application">Ant</span> &#12398;&#23455;&#34892;</a></span></dt><dt><span class="sect1"><a href="building.html#d0e420">5. &#12477;&#12540;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12363;&#12425;&#12398; <span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;</a></span></dt></dl></dd><dt><span class="chapter"><a href="running.html">4. <span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;</a></span></dt><dd><dl><dt><span class="sect1"><a href="running.html#d0e455">1. &#12463;&#12452;&#12483;&#12463;&#12539;&#12473;&#12479;&#12540;&#12488;</a></span></dt><dt><span class="sect1"><a href="running.html#d0e493">2. <span class="application">FindBugs</span> &#12398;&#36215;&#21205;</a></span></dt><dt><span class="sect1"><a href="running.html#commandLineOptions">3. &#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;</a></span></dt></dl></dd><dt><span class="chapter"><a href="gui.html">5. <span class="application">FindBugs</span> GUI &#12398;&#20351;&#29992;&#26041;&#27861;</a></span></dt><dd><dl><dt><span class="sect1"><a href="gui.html#d0e1058">1. &#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12398;&#20316;&#25104;</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1099">2. &#20998;&#26512;&#12398;&#23455;&#34892;</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1104">3. &#32080;&#26524;&#12398;&#38322;&#35239;</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1119">4. &#20445;&#23384;&#12392;&#35501;&#12415;&#36796;&#12415;</a></span></dt></dl></dd><dt><span class="chapter"><a href="anttask.html">6. <span class="application">FindBugs</span>&#8482; <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12398;&#20351;&#29992;&#26041;&#27861;</a></span></dt><dd><dl><dt><span class="sect1"><a href="anttask.html#d0e1173">1. <span class="application">Ant</span> &#12479;&#12473;&#12463;&#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1209">2. build.xml &#12398;&#26360;&#12365;&#26041;</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1278">3. &#12479;&#12473;&#12463;&#12398;&#23455;&#34892;</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1303">4. &#12497;&#12521;&#12513;&#12540;&#12479;&#12540;</a></span></dt></dl></dd><dt><span class="chapter"><a href="eclipse.html">7. <span class="application">FindBugs</span>&#8482; Eclipse &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;</a></span></dt><dd><dl><dt><span class="sect1"><a href="eclipse.html#d0e1604">1. &#24517;&#35201;&#26465;&#20214;</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1611">2. &#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1658">3. &#12503;&#12521;&#12464;&#12452;&#12531;&#12398;&#20351;&#29992;&#26041;&#27861;</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1681">4. &#12488;&#12521;&#12502;&#12523;&#12471;&#12517;&#12540;&#12486;&#12451;&#12531;&#12464;</a></span></dt></dl></dd><dt><span class="chapter"><a href="filter.html">8. &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;</a></span></dt><dd><dl><dt><span class="sect1"><a href="filter.html#d0e1709">1. &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;&#12398;&#27010;&#35201;</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e1759">2. &#12510;&#12483;&#12481;&#12531;&#12464;&#26465;&#20214;&#12398;&#31278;&#39006;</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e1958">3. Java &#35201;&#32032;&#21517;&#12510;&#12483;&#12481;&#12531;&#12464;</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e1982">4. &#30041;&#24847;&#20107;&#38917;</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2012">5. &#20363;</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2065">6. &#23436;&#20840;&#12394;&#20363;</a></span></dt></dl></dd><dt><span class="chapter"><a href="analysisprops.html">9. &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;</a></span></dt><dt><span class="chapter"><a href="annotations.html">10. &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;</a></span></dt><dt><span class="chapter"><a href="rejarForAnalysis.html">11. rejarForAnalysis &#12398;&#20351;&#29992;&#26041;&#27861;</a></span></dt><dt><span class="chapter"><a href="datamining.html">12. <span class="application">FindBugs</span>&#8482; &#12395;&#12424;&#12427;&#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464;</a></span></dt><dd><dl><dt><span class="sect1"><a href="datamining.html#commands">1. &#12467;&#12510;&#12531;&#12489;</a></span></dt><dt><span class="sect1"><a href="datamining.html#examples">2. &#20363;</a></span></dt><dt><span class="sect1"><a href="datamining.html#antexample">3. Ant &#12398;&#20363;</a></span></dt></dl></dd><dt><span class="chapter"><a href="license.html">13. &#12521;&#12452;&#12475;&#12531;&#12473;</a></span></dt><dt><span class="chapter"><a href="acknowledgments.html">14. &#35613;&#36766;</a></span></dt><dd><dl><dt><span class="sect1"><a href="acknowledgments.html#d0e3438">1. &#36002;&#29486;&#32773;</a></span></dt><dt><span class="sect1"><a href="acknowledgments.html#d0e3561">2. &#20351;&#29992;&#12375;&#12390;&#12356;&#12427;&#12477;&#12501;&#12488;&#12454;&#12455;&#12450;</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><b>&#34920;&#12398;&#19968;&#35239;</b></p><dl><dt>9.1. <a href="analysisprops.html#analysisproptable">&#35373;&#23450;&#21487;&#33021;&#12394;&#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;</a></dt><dt>12.1. <a href="datamining.html#computeBugHistoryTable">computeBugHistory &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;</a></dt><dt>12.2. <a href="datamining.html#filterOptionsTable">filterBugs &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;</a></dt><dt>12.3. <a href="datamining.html#mineBugHistoryOptionsTable">mineBugHistory &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;</a></dt><dt>12.4. <a href="datamining.html#mineBugHistoryColumns">mineBugHistory &#20986;&#21147;&#12398;&#12459;&#12521;&#12512;&#19968;&#35239;</a></dt><dt>12.5. <a href="datamining.html#defectDensityColumns">defectDensity &#20986;&#21147;&#12398;&#12459;&#12521;&#12512;&#19968;&#35239;</a></dt><dt>12.6. <a href="datamining.html#convertXmlToTextTable">convertXmlToText &#12467;&#12510;&#12531;&#12489;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;</a></dt><dt>12.7. <a href="datamining.html#setBugDatabaseInfoOptions">setBugDatabaseInfo &#12458;&#12503;&#12471;&#12519;&#12531;&#19968;&#35239;</a></dt><dt>12.8. <a href="datamining.html#listBugDatabaseInfoColumns">listBugDatabaseInfo &#12459;&#12521;&#12512;&#19968;&#35239;</a></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="introduction.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right" valign="top">&nbsp;&#31532;1&#31456; &#12399;&#12376;&#12417;&#12395;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/infiniteRecursiveLoops.png b/tools/findbugs/doc/ja/manual/infiniteRecursiveLoops.png
deleted file mode 100644
index 5430df2..0000000
--- a/tools/findbugs/doc/ja/manual/infiniteRecursiveLoops.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/ja/manual/installing.html b/tools/findbugs/doc/ja/manual/installing.html
deleted file mode 100644
index 9f3f2b4..0000000
--- a/tools/findbugs/doc/ja/manual/installing.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;2&#31456; FindBugs&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="introduction.html" title="&#31532;1&#31456; &#12399;&#12376;&#12417;&#12395;"><link rel="next" href="building.html" title="&#31532;3&#31456; FindBugs&#8482; &#12398;&#12477;&#12540;&#12523;&#12363;&#12425;&#12398;&#12499;&#12523;&#12489;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;2&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="introduction.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="building.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;2&#31456; FindBugs&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;"><div class="titlepage"><div><div><h2 class="title"><a name="installing"></a>&#31532;2&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</h2></div></div></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="sect1"><a href="installing.html#d0e102">1. &#37197;&#24067;&#29289;&#12398;&#23637;&#38283;</a></span></dt></dl></div><p>&#12371;&#12398;&#31456;&#12391;&#12399;&#12289; <span class="application">FindBugs</span> &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#26041;&#27861;&#12434;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;</p><div class="sect1" title="1. &#37197;&#24067;&#29289;&#12398;&#23637;&#38283;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e102"></a>1. &#37197;&#24067;&#29289;&#12398;&#23637;&#38283;</h2></div></div></div><p><span class="application">FindBugs</span> &#12434;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12377;&#12427;&#26368;&#12418;&#31777;&#21336;&#12394;&#26041;&#27861;&#12399;&#12289;&#12496;&#12452;&#12490;&#12522;&#37197;&#24067;&#29289;&#12434;&#12480;&#12454;&#12531;&#12525;&#12540;&#12489;&#12377;&#12427;&#12371;&#12392;&#12391;&#12377;&#12290; &#12496;&#12452;&#12490;&#12522;&#37197;&#24067;&#29289;&#12399;&#12289; <a class="ulink" href="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3.tar.gz?download" target="_top">gzipped tar &#24418;&#24335;</a> &#12362;&#12424;&#12403; <a class="ulink" href="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3.zip?download" target="_top">zip &#24418;&#24335;</a> &#12364;&#12381;&#12428;&#12382;&#12428;&#20837;&#25163;&#21487;&#33021;&#12391;&#12377;&#12290;&#12496;&#12452;&#12490;&#12522;&#37197;&#24067;&#29289;&#12434;&#12480;&#12454;&#12531;&#12525;&#12540;&#12489;&#12375;&#12390;&#12365;&#12383;&#12425;&#12289;&#12381;&#12428;&#12434;&#20219;&#24847;&#12398;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12395;&#23637;&#38283;&#12375;&#12414;&#12377;&#12290;</p><p>gzipped tar &#24418;&#24335;&#37197;&#24067;&#29289;&#12398;&#23637;&#38283;&#26041;&#27861;&#20363;:</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>gunzip -c findbugs-2.0.3.tar.gz | tar xvf -</strong></span>
-</pre><p>
-</p><p>zip &#24418;&#24335;&#37197;&#24067;&#29289;&#12398;&#23637;&#38283;&#26041;&#27861;&#20363;:</p><pre class="screen">
-<code class="prompt">C:\Software&gt;</code><span class="command"><strong>unzip findbugs-2.0.3.zip</strong></span>
-</pre><p>
-</p><p>&#12496;&#12452;&#12490;&#12522;&#37197;&#24067;&#29289;&#12398;&#23637;&#38283;&#12377;&#12427;&#12392;&#12289;&#36890;&#24120;&#12399; <code class="filename">findbugs-2.0.3</code> &#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12364;&#20316;&#25104;&#12373;&#12428;&#12414;&#12377;&#12290;&#20363;&#12360;&#12400;&#12289;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540; <code class="filename">C:\Software</code> &#12391;&#12496;&#12452;&#12490;&#12522;&#37197;&#24067;&#29289;&#12434;&#23637;&#38283;&#12377;&#12427;&#12392;&#12289;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540; <code class="filename">C:\Software\findbugs-2.0.3</code> &#12395; <span class="application">FindBugs</span> &#12399;&#23637;&#38283;&#12373;&#12428;&#12414;&#12377;&#12290;&#12371;&#12398;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12364; <span class="application">FindBugs</span> &#12398;&#12507;&#12540;&#12512;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;&#12371;&#12398;&#12510;&#12491;&#12517;&#12450;&#12523;&#12391;&#12399;&#12289;&#12371;&#12398;&#12507;&#12540;&#12512;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12434; <em class="replaceable"><code>$FINDBUGS_HOME</code></em> (Windows&#12391;&#12399; <em class="replaceable"><code>%FINDBUGS_HOME%</code></em>) &#12434;&#29992;&#12356;&#12390;&#21442;&#29031;&#12375;&#12414;&#12377;&#12290;</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="introduction.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="building.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;1&#31456; &#12399;&#12376;&#12417;&#12395;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;3&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#12477;&#12540;&#12523;&#12363;&#12425;&#12398;&#12499;&#12523;&#12489;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/introduction.html b/tools/findbugs/doc/ja/manual/introduction.html
deleted file mode 100644
index 5ba4736..0000000
--- a/tools/findbugs/doc/ja/manual/introduction.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;1&#31456; &#12399;&#12376;&#12417;&#12395;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="next" href="installing.html" title="&#31532;2&#31456; FindBugs&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;1&#31456; &#12399;&#12376;&#12417;&#12395;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="installing.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;1&#31456; &#12399;&#12376;&#12417;&#12395;"><div class="titlepage"><div><div><h2 class="title"><a name="introduction"></a>&#31532;1&#31456; &#12399;&#12376;&#12417;&#12395;</h2></div></div></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="sect1"><a href="introduction.html#d0e74">1. &#24517;&#35201;&#26465;&#20214;</a></span></dt></dl></div><p><span class="application">FindBugs</span>&#8482; &#12399;&#12289;Java &#12503;&#12525;&#12464;&#12521;&#12512;&#12398;&#20013;&#12398;&#12496;&#12464;&#12434;&#35211;&#12388;&#12369;&#12427;&#12503;&#12525;&#12464;&#12521;&#12512;&#12391;&#12377;&#12290;&#12371;&#12398;&#12503;&#12525;&#12464;&#12521;&#12512;&#12399;&#12289;&#12300;&#12496;&#12464; &#12497;&#12479;&#12540;&#12531;&#12301;&#12398;&#23455;&#20363;&#12434;&#25506;&#12375;&#12414;&#12377;&#12290;&#12300;&#12496;&#12464; &#12497;&#12479;&#12540;&#12531;&#12301;&#12392;&#12399;&#12289;&#12456;&#12521;&#12540;&#12392;&#12394;&#12427;&#21487;&#33021;&#24615;&#12398;&#39640;&#12356;&#12467;&#12540;&#12489;&#12398;&#20107;&#20363;&#12391;&#12377;&#12290;</p><p>&#12371;&#12398;&#25991;&#26360;&#12399;&#12289;<span class="application">FindBugs</span> &#12496;&#12540;&#12472;&#12519;&#12531; 2.0.3 &#12395;&#12388;&#12356;&#12390;&#35500;&#26126;&#12375;&#12390;&#12414;&#12377;&#12290;&#31169;&#12383;&#12385;&#12399;&#12289; <span class="application">FindBugs</span> &#12395;&#23550;&#12377;&#12427;&#12501;&#12451;&#12540;&#12489;&#12496;&#12483;&#12463;&#12434;&#24515;&#24453;&#12385;&#12395;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#12393;&#12358;&#12382;&#12289; <a class="ulink" href="http://findbugs.sourceforge.net" target="_top"><span class="application">FindBugs</span> Web &#12506;&#12540;&#12472;</a> &#12395;&#12450;&#12463;&#12475;&#12473;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;<span class="application">FindBugs</span> &#12395;&#12388;&#12356;&#12390;&#12398;&#26368;&#26032;&#24773;&#22577;&#12289;&#36899;&#32097;&#20808;&#12362;&#12424;&#12403; <span class="application">FindBugs</span> &#12513;&#12540;&#12522;&#12531;&#12464;&#12522;&#12473;&#12488;&#12394;&#12393;&#12398;&#12469;&#12509;&#12540;&#12488;&#24773;&#22577;&#12434;&#20837;&#25163;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><div class="sect1" title="1. &#24517;&#35201;&#26465;&#20214;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e74"></a>1. &#24517;&#35201;&#26465;&#20214;</h2></div></div></div><p><span class="application">FindBugs</span> &#12434;&#20351;&#29992;&#12377;&#12427;&#12395;&#12399;&#12289; <a class="ulink" href="http://java.sun.com/j2se" target="_top">Java 2 Standard Edition</a>, &#12496;&#12540;&#12472;&#12519;&#12531; 1.5 &#20197;&#38477;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12392;&#20114;&#25563;&#24615;&#12398;&#12354;&#12427;&#12521;&#12531;&#12479;&#12452;&#12512;&#29872;&#22659;&#12364;&#24517;&#35201;&#12391;&#12377;&#12290;<span class="application">FindBugs</span> &#12399;&#12289;&#12503;&#12521;&#12483;&#12488;&#12501;&#12457;&#12540;&#12512;&#38750;&#20381;&#23384;&#12391;&#12354;&#12426;&#12289; GNU/Linux &#12289; Windows &#12289; MacOS X &#12503;&#12521;&#12483;&#12488;&#12501;&#12457;&#12540;&#12512;&#19978;&#12391;&#21205;&#20316;&#12377;&#12427;&#12371;&#12392;&#12364;&#30693;&#12425;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;</p><p><span class="application">FindBugs</span> &#12434;&#20351;&#29992;&#12377;&#12427;&#12383;&#12417;&#12395;&#12399;&#12289;&#23569;&#12394;&#12367;&#12392;&#12418; 512 MB &#12398;&#12513;&#12514;&#12522;&#12364;&#24517;&#35201;&#12391;&#12377;&#12290;&#24040;&#22823;&#12394;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12434;&#35299;&#26512;&#12377;&#12427;&#12383;&#12417;&#12395;&#12399;&#12289;&#12381;&#12428;&#12424;&#12426;&#22810;&#12367;&#12398;&#12513;&#12514;&#12522;&#12364;&#24517;&#35201;&#12392;&#12373;&#12428;&#12427;&#12371;&#12392;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="index.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="installing.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top"><span class="application">FindBugs</span>&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;2&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/license.html b/tools/findbugs/doc/ja/manual/license.html
deleted file mode 100644
index 158dfc4..0000000
--- a/tools/findbugs/doc/ja/manual/license.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;13&#31456; &#12521;&#12452;&#12475;&#12531;&#12473;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="datamining.html" title="&#31532;12&#31456; FindBugs&#8482; &#12395;&#12424;&#12427;&#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464;"><link rel="next" href="acknowledgments.html" title="&#31532;14&#31456; &#35613;&#36766;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;13&#31456; &#12521;&#12452;&#12475;&#12531;&#12473;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="datamining.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="acknowledgments.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;13&#31456; &#12521;&#12452;&#12475;&#12531;&#12473;"><div class="titlepage"><div><div><h2 class="title"><a name="license"></a>&#31532;13&#31456; &#12521;&#12452;&#12475;&#12531;&#12473;</h2></div></div></div><p>&#21517;&#31216;&#12300;FindBugs&#12301;&#12362;&#12424;&#12403; FindBugs &#12398;&#12525;&#12468;&#12399;&#12289;&#12513;&#12522;&#12540;&#12521;&#12531;&#12489;&#22823;&#23398;&#12398;&#30331;&#37682;&#21830;&#27161;&#12391;&#12377;&#12290;FindBugs &#12399;&#12501;&#12522;&#12540;&#12477;&#12501;&#12488;&#12454;&#12455;&#12450;&#12391;&#12354;&#12426;&#12289; <a class="ulink" href="http://www.gnu.org/licenses/lgpl.html" target="_top">Lesser GNU Public License</a> &#12398;&#26465;&#20214;&#12391;&#37197;&#24067;&#12373;&#12428;&#12390;&#12356;&#12414;&#12377;&#12290;&#20351;&#29992;&#25215;&#35582;&#26360;&#12434;&#20837;&#25163;&#12375;&#12383;&#12356;&#22580;&#21512;&#12399;&#12289; <span class="application">FindBugs</span> &#37197;&#24067;&#29289;&#12395;&#21547;&#12414;&#12428;&#12427; <code class="filename">LICENSE.txt</code> &#12501;&#12449;&#12452;&#12523;&#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p><p>&#26368;&#26032;&#12496;&#12540;&#12472;&#12519;&#12531;&#12398; FindBugs &#12362;&#12424;&#12403; &#12381;&#12398;&#12477;&#12540;&#12473;&#12467;&#12540;&#12489;&#12399; <a class="ulink" href="http://findbugs.sourceforge.net" target="_top">FindBugs web &#12506;&#12540;&#12472;</a> &#12391;&#20837;&#25163;&#12391;&#12365;&#12414;&#12377;&#12290;</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="datamining.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="acknowledgments.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;12&#31456; <span class="application">FindBugs</span>&#8482; &#12395;&#12424;&#12427;&#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;14&#31456; &#35613;&#36766;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/note.png b/tools/findbugs/doc/ja/manual/note.png
deleted file mode 100644
index d0c3c64..0000000
--- a/tools/findbugs/doc/ja/manual/note.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/ja/manual/project-dialog.png b/tools/findbugs/doc/ja/manual/project-dialog.png
deleted file mode 100644
index 7a39783..0000000
--- a/tools/findbugs/doc/ja/manual/project-dialog.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/ja/manual/rejarForAnalysis.html b/tools/findbugs/doc/ja/manual/rejarForAnalysis.html
deleted file mode 100644
index 4419ecf..0000000
--- a/tools/findbugs/doc/ja/manual/rejarForAnalysis.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;11&#31456; rejarForAnalysis &#12398;&#20351;&#29992;&#26041;&#27861;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="annotations.html" title="&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;"><link rel="next" href="datamining.html" title="&#31532;12&#31456; FindBugs&#8482; &#12395;&#12424;&#12427;&#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;11&#31456; rejarForAnalysis &#12398;&#20351;&#29992;&#26041;&#27861;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="annotations.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="datamining.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;11&#31456; rejarForAnalysis &#12398;&#20351;&#29992;&#26041;&#27861;"><div class="titlepage"><div><div><h2 class="title"><a name="rejarForAnalysis"></a>&#31532;11&#31456; rejarForAnalysis &#12398;&#20351;&#29992;&#26041;&#27861;</h2></div></div></div><p>&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12395;&#22810;&#12367;&#12398; jar &#12501;&#12449;&#12452;&#12523; &#12364;&#12354;&#12387;&#12383;&#12426;&#12289; jar &#12501;&#12449;&#12452;&#12523;&#12364;&#22810;&#12367;&#12398;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12395;&#28857;&#22312;&#12375;&#12383;&#12426;&#12377;&#12427;&#22580;&#21512;&#12399;&#12289; <span class="command"><strong>rejarForAnalysis </strong></span> &#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#20351;&#29992;&#12377;&#12427;&#12392; FindBugs &#12398;&#23455;&#34892;&#12364;&#27604;&#36611;&#30340;&#31777;&#21336;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;&#12371;&#12398;&#12473;&#12463;&#12522;&#12503;&#12488;&#12399;&#12289;&#25968;&#22810;&#12356; jar &#12501;&#12449;&#12452;&#12523;&#12434;&#38598;&#12417;&#12390; 1 &#12388;&#12398;&#22823;&#12365;&#12394; jar &#12501;&#12449;&#12452;&#12523;&#12395;&#32080;&#21512;&#12375;&#12414;&#12377;&#12290;&#12381;&#12358;&#12377;&#12427;&#12392;&#12289;&#20998;&#26512;&#26178;&#12395;FindBugs &#12395; jar &#12501;&#12449;&#12452;&#12523;&#12434;&#35373;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#27604;&#36611;&#30340;&#31777;&#21336;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;&#12371;&#12398;&#12473;&#12463;&#12522;&#12503;&#12488;&#12399;&#12289; unix &#12471;&#12473;&#12486;&#12512;&#12398; 'find' &#12467;&#12510;&#12531;&#12489;&#12392;&#32068;&#12415;&#21512;&#12431;&#12379;&#12427;&#12392;&#12392;&#12426;&#12431;&#12369;&#26377;&#29992;&#12395;&#12394;&#12426;&#12414;&#12377; ; &#27425;&#12395;&#20363;&#12434;&#31034;&#12375;&#12414;&#12377;&#12290; <span class="command"><strong>find . -name '*.jar' | xargs rejarForAnalysis </strong></span>.</p><p>&#12414;&#12383;&#12289; <span class="command"><strong>rejarForAnalysis</strong></span> &#12473;&#12463;&#12522;&#12503;&#12488;&#12399;&#24040;&#22823;&#12394;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12434;&#35079;&#25968;&#12398; jar &#12501;&#12449;&#12452;&#12523;&#12395;&#20998;&#21106;&#12377;&#12427;&#12371;&#12392;&#12395;&#20351;&#29992;&#12391;&#12365;&#12414;&#12377;&#12290;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12398;&#12463;&#12521;&#12473;&#12501;&#12449;&#12452;&#12523;&#12399;&#12289;&#35079;&#25968;&#12398; jar &#12501;&#12449;&#12452;&#12523;&#12395;&#22343;&#31561;&#12395;&#37197;&#20998;&#12373;&#12428;&#12414;&#12377;&#12290;&#12371;&#12428;&#12399;&#12289;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#20840;&#20307;&#12395;&#23550;&#12375;&#12390; FindBugs &#12434;&#23455;&#34892;&#12377;&#12427;&#12392;&#26178;&#38291;&#12392;&#12513;&#12514;&#12522;&#28040;&#36027;&#12364;&#33879;&#12375;&#12356;&#22580;&#21512;&#12395;&#26377;&#29992;&#12391;&#12377;&#12290;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#20840;&#20307;&#12395;&#23550;&#12375;&#12390; FindBugs &#12434;&#23455;&#34892;&#12377;&#12427;&#20195;&#12431;&#12426;&#12395;&#12289; <span class="command"><strong> rejarForAnalysis</strong></span> &#12391;&#12377;&#12409;&#12390;&#12398;&#12463;&#12521;&#12473;&#12434;&#21547;&#12416;&#22823;&#12365;&#12394; jar &#12501;&#12449;&#12452;&#12523;&#12434;&#27083;&#31689;&#12375;&#12414;&#12377;&#12290;&#32154;&#12356;&#12390;&#12289; <span class="command"><strong>rejarForAnalysis</strong></span> &#12434;&#20877;&#12403;&#23455;&#34892;&#12375;&#12390;&#35079;&#25968;&#12398; jar &#12501;&#12449;&#12452;&#12523;&#12395;&#20998;&#21106;&#12375;&#12414;&#12377;&#12290;&#12381;&#12375;&#12390;&#12289;&#21508;&#12293;&#12398; jar &#12501;&#12449;&#12452;&#12523;&#12395;&#23550;&#12375;&#12390;&#38918;&#12395; FindBugs &#12434;&#23455;&#34892;&#12375;&#12414;&#12377;&#12290;&#12381;&#12398;&#38555;&#12289; <span class="command"><strong>-auxclasspath</strong></span> &#12395;&#26368;&#21021;&#12395; 1 &#12388;&#12395;&#12414;&#12392;&#12417;&#12383; jar &#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p><p><span class="command"><strong>rejarForAnalysis</strong></span> &#12473;&#12463;&#12522;&#12503;&#12488;&#12395;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12427;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#20197;&#19979;&#12395;&#31034;&#12375;&#12414;&#12377; :</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-maxAge</strong></span> <em class="replaceable"><code>&#26085;&#25968;</code></em></span></dt><dd><p>&#26368;&#24460;&#12395;&#26356;&#26032;&#12373;&#12428;&#12383;&#26085;&#12363;&#12425;&#12398;&#32076;&#36942;&#26178;&#38291;&#12434;&#26085;&#21336;&#20301;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377; (&#25351;&#23450;&#12375;&#12383;&#26085;&#25968;&#12424;&#12426;&#21476;&#12356; jar &#12501;&#12449;&#12452;&#12523;&#12399;&#28961;&#35222;&#12373;&#12428;&#12414;&#12377;)&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-inputFileList</strong></span> <em class="replaceable"><code>&#12501;&#12449;&#12452;&#12523;&#21517;</code></em></span></dt><dd><p>jar &#12501;&#12449;&#12452;&#12523;&#21517;&#12434;&#35352;&#36617;&#12375;&#12383;&#12486;&#12461;&#12473;&#12488;&#12501;&#12449;&#12452;&#12523;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-maxClasses</strong></span> <em class="replaceable"><code>&#12463;&#12521;&#12473;&#25968;</code></em></span></dt><dd><p>analysis*.jar &#12501;&#12449;&#12452;&#12523; 1 &#12501;&#12449;&#12452;&#12523;&#12395;&#23550;&#12377;&#12427;&#12463;&#12521;&#12473;&#12398;&#26368;&#22823;&#25968;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-prefix</strong></span> <em class="replaceable"><code>&#12503;&#12524;&#12501;&#12451;&#12483;&#12463;&#12473;</code></em></span></dt><dd><p>&#20998;&#26512;&#12377;&#12427;&#12463;&#12521;&#12473;&#21517;&#12398;&#12503;&#12524;&#12501;&#12451;&#12483;&#12463;&#12473;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;  (&#20363;&#12289; edu.umd.cs.) &#12290;</p></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="annotations.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="datamining.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;10&#31456; &#12450;&#12494;&#12486;&#12540;&#12471;&#12519;&#12531;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;12&#31456; <span class="application">FindBugs</span>&#8482; &#12395;&#12424;&#12427;&#12487;&#12540;&#12479;&#12539;&#12510;&#12452;&#12491;&#12531;&#12464;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/running.html b/tools/findbugs/doc/ja/manual/running.html
deleted file mode 100644
index deed032..0000000
--- a/tools/findbugs/doc/ja/manual/running.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>&#31532;4&#31456; FindBugs&#8482; &#12398;&#23455;&#34892;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="up" href="index.html" title="FindBugs&#8482; &#12510;&#12491;&#12517;&#12450;&#12523;"><link rel="prev" href="building.html" title="&#31532;3&#31456; FindBugs&#8482; &#12398;&#12477;&#12540;&#12523;&#12363;&#12425;&#12398;&#12499;&#12523;&#12489;"><link rel="next" href="gui.html" title="&#31532;5&#31456; FindBugs GUI &#12398;&#20351;&#29992;&#26041;&#27861;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">&#31532;4&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="building.html">&#25147;&#12427;</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="gui.html">&#27425;&#12408;</a></td></tr></table><hr></div><div class="chapter" title="&#31532;4&#31456; FindBugs&#8482; &#12398;&#23455;&#34892;"><div class="titlepage"><div><div><h2 class="title"><a name="running"></a>&#31532;4&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#23455;&#34892;</h2></div></div></div><div class="toc"><p><b>&#30446;&#27425;</b></p><dl><dt><span class="sect1"><a href="running.html#d0e455">1. &#12463;&#12452;&#12483;&#12463;&#12539;&#12473;&#12479;&#12540;&#12488;</a></span></dt><dt><span class="sect1"><a href="running.html#d0e493">2. <span class="application">FindBugs</span> &#12398;&#36215;&#21205;</a></span></dt><dt><span class="sect1"><a href="running.html#commandLineOptions">3. &#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;</a></span></dt></dl></div><p><span class="application">FindBugs</span> &#12395;&#12399;2&#12388;&#12398;&#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#12377;&#12394;&#12431;&#12385;&#12289;&#12464;&#12521;&#12501;&#12451;&#12459;&#12523;&#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473; (GUI) &#12362;&#12424;&#12403; &#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12391;&#12377;&#12290;&#12371;&#12398;&#31456;&#12391;&#12399;&#12289;&#12381;&#12428;&#12382;&#12428;&#12398;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12398;&#23455;&#34892;&#26041;&#27861;&#12395;&#12388;&#12356;&#12390;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;</p><div class="warning" title="&#35686;&#21578;" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Warning"><tr><td rowspan="2" align="center" valign="top" width="25"><img alt="[&#35686;&#21578;]" src="warning.png"></td><th align="left">&#35686;&#21578;</th></tr><tr><td align="left" valign="top"><p>&#12371;&#12398;&#31456;&#12399;&#12289;&#29694;&#22312;&#26360;&#12365;&#30452;&#12375;&#20013;&#12391;&#12377;&#12290;&#26360;&#12365;&#30452;&#12375;&#12399;&#12414;&#12384;&#23436;&#20102;&#12375;&#12390;&#12356;&#12414;&#12379;&#12435;&#12290;</p></td></tr></table></div><div class="sect1" title="1. &#12463;&#12452;&#12483;&#12463;&#12539;&#12473;&#12479;&#12540;&#12488;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e455"></a>1. &#12463;&#12452;&#12483;&#12463;&#12539;&#12473;&#12479;&#12540;&#12488;</h2></div></div></div><p>Windows &#12471;&#12473;&#12486;&#12512;&#12391;  <span class="application">FindBugs</span> &#12434;&#36215;&#21205;&#12377;&#12427;&#22580;&#21512;&#12399;&#12289; <code class="filename"><em class="replaceable"><code>%FINDBUGS_HOME%</code></em>\lib\findbugs.jar</code> &#12501;&#12449;&#12452;&#12523;&#12434;&#12480;&#12502;&#12523;&#12463;&#12522;&#12483;&#12463;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290; <span class="application">FindBugs</span> GUI &#12364;&#36215;&#21205;&#12375;&#12414;&#12377;&#12290;</p><p>Unix &#12289; Linux &#12414;&#12383;&#12399; Mac OS X &#12471;&#12473;&#12486;&#12512;&#12398;&#22580;&#21512;&#12399;&#12289;<code class="filename"><em class="replaceable"><code>$FINDBUGS_HOME</code></em>/bin/findbugs</code> &#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#23455;&#34892;&#12377;&#12427;&#12363;&#12289;&#20197;&#19979;&#12398;&#12467;&#12510;&#12531;&#12489;&#12434;&#23455;&#34892;&#12375;&#12414;&#12377;&#12290;</p><pre class="screen">
-<span class="command"><strong>java -jar <em class="replaceable"><code>$FINDBUGS_HOME</code></em>/lib/findbugs.jar</strong></span></pre><p>&#12371;&#12428;&#12391;&#12289; <span class="application">FindBugs</span> GUI &#12364;&#36215;&#21205;&#12375;&#12414;&#12377;&#12290;</p><p>GUI &#12398;&#20351;&#29992;&#26041;&#27861;&#12395;&#12388;&#12356;&#12390;&#12399;&#12289; <a class="xref" href="gui.html" title="&#31532;5&#31456; FindBugs GUI &#12398;&#20351;&#29992;&#26041;&#27861;">5&#31456;<i><span class="application">FindBugs</span> GUI &#12398;&#20351;&#29992;&#26041;&#27861;</i></a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></div><div class="sect1" title="2. FindBugs &#12398;&#36215;&#21205;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e493"></a>2. <span class="application">FindBugs</span> &#12398;&#36215;&#21205;</h2></div></div></div><p>&#12371;&#12398;&#12475;&#12463;&#12471;&#12519;&#12531;&#12391;&#12399;&#12289; <span class="application">FindBugs</span> &#12398;&#36215;&#21205;&#26041;&#27861;&#12434;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;<span class="application">FindBugs</span> &#12434;&#36215;&#21205;&#12377;&#12427;&#12395;&#12399;2&#12388;&#12398;&#26041;&#27861;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#12377;&#12394;&#12431;&#12385;&#12289;&#30452;&#25509;&#36215;&#21205;&#12377;&#12427;&#26041;&#27861;&#12289;&#12362;&#12424;&#12403;&#12289;&#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#20351;&#29992;&#12377;&#12427;&#26041;&#27861;&#12391;&#12377;&#12290;</p><div class="sect2" title="2.1. FindBugs &#12398;&#30452;&#25509;&#36215;&#21205;"><div class="titlepage"><div><div><h3 class="title"><a name="directInvocation"></a>2.1. <span class="application">FindBugs</span> &#12398;&#30452;&#25509;&#36215;&#21205;</h3></div></div></div><p>&#26368;&#21021;&#12395;&#36848;&#12409;&#12427; <span class="application">FindBugs</span> &#12398;&#36215;&#21205;&#26041;&#27861;&#12399;&#12289; <code class="filename"><em class="replaceable"><code>$FINDBUGS_HOME</code></em>/lib/findbugs.jar</code> &#12434;&#30452;&#25509;&#23455;&#34892;&#12377;&#12427;&#26041;&#27861;&#12391;&#12377;&#12290;JVM (<span class="command"><strong>java</strong></span>) &#23455;&#34892;&#12503;&#12525;&#12464;&#12521;&#12512;&#12398; <span class="command"><strong>-jar</strong></span> &#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12473;&#12452;&#12483;&#12481;&#12434;&#20351;&#29992;&#12375;&#12414;&#12377;&#12290;(<span class="application">FindBugs</span>&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12364; 1.3.5 &#12424;&#12426;&#21069;&#12398;&#22580;&#21512;&#12399;&#12289;&#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#20351;&#29992;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;)</p><p><span class="application">FindBugs</span> &#12434;&#30452;&#25509;&#36215;&#21205;&#12377;&#12427;&#12383;&#12417;&#12398;&#12289;&#19968;&#33324;&#30340;&#12394;&#27083;&#25991;&#12399;&#20197;&#19979;&#12398;&#12424;&#12358;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;</p><pre class="screen">
-    <span class="command"><strong>java <em class="replaceable"><code>[JVM &#24341;&#25968;]</code></em> -jar <em class="replaceable"><code>$FINDBUGS_HOME</code></em>/lib/findbugs.jar <em class="replaceable"><code>&#12458;&#12503;&#12471;&#12519;&#12531;&#8230;</code></em></strong></span>
-</pre><p>
-        </p><div class="sect3" title="2.1.1. &#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12398;&#36984;&#25246;"><div class="titlepage"><div><div><h4 class="title"><a name="chooseUI"></a>2.1.1.  &#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12398;&#36984;&#25246;</h4></div></div></div><p>1 &#30058;&#30446;&#12398;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;&#12399;&#12289;&#36215;&#21205;&#12377;&#12427; <span class="application">FindBugs</span> &#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12434;&#36984;&#25246;&#12377;&#12427;&#12383;&#12417;&#12398;&#12418;&#12398;&#12391;&#12377;&#12290;&#25351;&#23450;&#21487;&#33021;&#12394;&#20516;&#12399;&#27425;&#12398;&#36890;&#12426;&#12391;&#12377;:</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
-                <span class="command"><strong>-gui</strong></span>: &#12464;&#12521;&#12501;&#12451;&#12459;&#12523;&#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473; (GUI) &#12434;&#36215;&#21205;&#12375;&#12414;&#12377;&#12290;</p></li><li class="listitem"><p>
-                    <span class="command"><strong>-textui</strong></span>: &#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12434;&#36215;&#21205;&#12375;&#12414;&#12377;&#12290;</p></li><li class="listitem"><p>
-                    <span class="command"><strong>-version</strong></span>: <span class="application">FindBugs</span> &#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#30058;&#21495;&#12434;&#34920;&#31034;&#12375;&#12414;&#12377;&#12290;</p></li><li class="listitem"><p>
-                    <span class="command"><strong>-help</strong></span>: <span class="application">FindBugs</span> &#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12398;&#12504;&#12523;&#12503;&#24773;&#22577;&#12434;&#34920;&#31034;&#12375;&#12414;&#12377;&#12290;</p></li><li class="listitem"><p>
-                    <span class="command"><strong>-gui1</strong></span>: &#26368;&#21021;&#12395;&#20316;&#25104;&#12373;&#12428;&#12383; <span class="application">FindBugs</span> &#12464;&#12521;&#12501;&#12451;&#12459;&#12523;&#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;(&#12377;&#12391;&#12395;&#24259;&#27490;&#12373;&#12428;&#12469;&#12509;&#12540;&#12488;&#12373;&#12428;&#12390;&#12356;&#12394;&#12356;)&#12434;&#36215;&#21205;&#12375;&#12414;&#12377;&#12290;</p></li></ul></div></div><div class="sect3" title="2.1.2. Java &#20206;&#24819;&#12510;&#12471;&#12531; (JVM) &#24341;&#25968;"><div class="titlepage"><div><div><h4 class="title"><a name="jvmArgs"></a>2.1.2. Java &#20206;&#24819;&#12510;&#12471;&#12531; (JVM) &#24341;&#25968;</h4></div></div></div><p><span class="application">FindBugs</span> &#12434;&#36215;&#21205;&#12377;&#12427;&#38555;&#12395;&#26377;&#29992;&#12394; Java &#20206;&#24819;&#12510;&#12471;&#12531; &#24341;&#25968;&#12434;&#12356;&#12367;&#12388;&#12363;&#32057;&#20171;&#12375;&#12414;&#12377;&#12290;</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-Xmx<em class="replaceable"><code>NN</code></em>m</strong></span></span></dt><dd><p>Java &#12498;&#12540;&#12503;&#12469;&#12452;&#12474;&#12398;&#26368;&#22823;&#20516;&#12434; <em class="replaceable"><code>NN</code></em> &#12513;&#12460;&#12496;&#12452;&#12488;&#12395;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;<span class="application">FindBugs</span> &#12399;&#19968;&#33324;&#30340;&#12395;&#22823;&#23481;&#37327;&#12398;&#12513;&#12514;&#12522;&#12469;&#12452;&#12474;&#12434;&#24517;&#35201;&#12392;&#12375;&#12414;&#12377;&#12290;&#22823;&#12365;&#12394;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12391;&#12399;&#12289; 1500 &#12513;&#12460;&#12496;&#12452;&#12488;&#12434;&#20351;&#29992;&#12377;&#12427;&#12371;&#12392;&#12418;&#29645;&#12375;&#12367;&#12354;&#12426;&#12414;&#12379;&#12435;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-D<em class="replaceable"><code>name</code></em>=<em class="replaceable"><code>value</code></em></strong></span></span></dt><dd><p>Java &#12471;&#12473;&#12486;&#12512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12434;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;&#20363;&#12360;&#12400;&#12289;&#24341;&#25968; <span class="command"><strong>-Duser.language=ja</strong></span> &#12434;&#20351;&#29992;&#12377;&#12427;&#12392; GUI &#25991;&#35328;&#12364;&#26085;&#26412;&#35486;&#12391;&#34920;&#31034;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd></dl></div></div></div><div class="sect2" title="2.2. &#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#20351;&#29992;&#12375;&#12383; FindBugs &#12398;&#36215;&#21205;"><div class="titlepage"><div><div><h3 class="title"><a name="wrapperScript"></a>2.2. &#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#20351;&#29992;&#12375;&#12383; <span class="application">FindBugs</span> &#12398;&#36215;&#21205;</h3></div></div></div><p><span class="application">FindBugs</span> &#12434;&#36215;&#21205;&#12377;&#12427;&#12418;&#12358;&#12402;&#12392;&#12388;&#12398;&#26041;&#27861;&#12399;&#12289;&#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#20351;&#29992;&#12377;&#12427;&#26041;&#27861;&#12391;&#12377;&#12290;</p><p>Unix &#31995;&#12398;&#12471;&#12473;&#12486;&#12512;&#12395;&#12362;&#12356;&#12390;&#12399;&#12289;&#27425;&#12398;&#12424;&#12358;&#12394;&#12467;&#12510;&#12531;&#12489;&#12391;&#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#36215;&#21205;&#12375;&#12414;&#12377; :</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong><em class="replaceable"><code>$FINDBUGS_HOME</code></em>/bin/findbugs <em class="replaceable"><code>&#12458;&#12503;&#12471;&#12519;&#12531;&#8230;</code></em></strong></span>
-</pre><p>
-</p><p>Windows &#12471;&#12473;&#12486;&#12512;&#12395;&#12362;&#12356;&#12390;&#12399;&#12289;&#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12434;&#36215;&#21205;&#12377;&#12427;&#12467;&#12510;&#12531;&#12489;&#12399;&#27425;&#12398;&#12424;&#12358;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;</p><pre class="screen">
-<code class="prompt">C:\My Directory&gt;</code><span class="command"><strong><em class="replaceable"><code>%FINDBUGS_HOME%</code></em>\bin\findbugs.bat <em class="replaceable"><code>&#12458;&#12503;&#12471;&#12519;&#12531;&#8230;</code></em></strong></span>
-</pre><p>
-</p><p>Unix &#31995;&#12471;&#12473;&#12486;&#12512; &#12362;&#12424;&#12403; Windows &#12471;&#12473;&#12486;&#12512;&#12398;&#12393;&#12385;&#12425;&#12395;&#12362;&#12356;&#12390;&#12418;&#12289;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;  <code class="filename"><em class="replaceable"><code>$FINDBUGS_HOME</code></em>/bin</code> &#12434;&#29872;&#22659;&#22793;&#25968; <code class="filename">PATH</code> &#12395;&#36861;&#21152;&#12377;&#12427;&#12384;&#12369;&#12391;&#12289; <span class="command"><strong>findbugs</strong></span> &#12467;&#12510;&#12531;&#12489;&#12434;&#20351;&#29992;&#12375;&#12390; FindBugs &#12434;&#36215;&#21205;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;</p><div class="sect3" title="2.2.1. &#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12398;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;"><div class="titlepage"><div><div><h4 class="title"><a name="wrapperOptions"></a>2.2.1. &#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12398;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;</h4></div></div></div><p><span class="application">FindBugs</span> &#12398;&#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12399;&#12289;&#27425;&#12398;&#12424;&#12358;&#12394;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#12469;&#12509;&#12540;&#12488;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#12371;&#12428;&#12425;&#12398;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;&#12399; <span class="application">FindBugs</span> &#12503;&#12525;&#12464;&#12521;&#12512; &#33258;&#20307;&#12364;&#25805;&#20316;&#12377;&#12427;&#12398;&#12391;&#12399;<span class="emphasis"><em>&#12394;&#12367;</em></span>&#12289;&#12393;&#12385;&#12425;&#12363;&#12392;&#12356;&#12360;&#12400;&#12289;&#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12398;&#26041;&#12364;&#20966;&#29702;&#12434;&#34892;&#12356;&#12414;&#12377;&#12290;</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-jvmArgs <em class="replaceable"><code>&#24341;&#25968;</code></em></strong></span></span></dt><dd><p>JVM &#12395;&#21463;&#12369;&#28193;&#12373;&#12428;&#12427;&#24341;&#25968;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#20363;&#12360;&#12400;&#12289;&#27425;&#12398;&#12424;&#12358;&#12394; JVM &#12503;&#12525;&#12497;&#12486;&#12451;&#12364;&#35373;&#23450;&#12391;&#12365;&#12414;&#12377;:</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>findbugs -textui -jvmArgs "-Duser.language=ja" <em class="replaceable"><code>myApp.jar</code></em></strong></span>
-</pre><p>
-       </p></dd><dt><span class="term"><span class="command"><strong>-javahome <em class="replaceable"><code>&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;</code></em></strong></span></span></dt><dd><p><span class="application">FindBugs</span> &#12398;&#23455;&#34892;&#12395;&#20351;&#29992;&#12377;&#12427; JRE (Java &#12521;&#12531;&#12479;&#12452;&#12512;&#29872;&#22659;) &#12364;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12373;&#12428;&#12390;&#12356;&#12427;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-maxHeap <em class="replaceable"><code>&#12469;&#12452;&#12474;</code></em></strong></span></span></dt><dd><p>Java &#12498;&#12540;&#12503;&#12469;&#12452;&#12474;&#12398;&#26368;&#22823;&#20516;&#12434;&#12513;&#12460;&#12496;&#12452;&#12488;&#21336;&#20301;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12399;&#12289; 256 &#12391;&#12377;&#12290;&#24040;&#22823;&#12394;&#12503;&#12525;&#12464;&#12521;&#12512;&#12420;&#12521;&#12452;&#12502;&#12521;&#12522;&#12434;&#20998;&#26512;&#12377;&#12427;&#12395;&#12399;&#12289;&#12418;&#12387;&#12392;&#22823;&#12365;&#12394;&#12513;&#12514;&#12522;&#12540;&#23481;&#37327;&#12364;&#24517;&#35201;&#12395;&#12394;&#12427;&#21487;&#33021;&#24615;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-debug</strong></span></span></dt><dd><p>&#12487;&#12451;&#12486;&#12463;&#12479;&#23455;&#34892;&#12362;&#12424;&#12403;&#12463;&#12521;&#12473;&#20998;&#26512;&#12398;&#12488;&#12524;&#12540;&#12473;&#24773;&#22577;&#12364;&#27161;&#28310;&#20986;&#21147;&#12395;&#20986;&#21147;&#12373;&#12428;&#12414;&#12377;&#12290;&#20998;&#26512;&#12364;&#20104;&#26399;&#12379;&#12378;&#22833;&#25943;&#12375;&#12383;&#38555;&#12398;&#12289;&#12488;&#12521;&#12502;&#12523;&#12471;&#12517;&#12540;&#12486;&#12451;&#12531;&#12464;&#12395;&#26377;&#29992;&#12391;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-property</strong></span> <em class="replaceable"><code>name=value</code></em></span></dt><dd><p>&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#20351;&#29992;&#12375;&#12390;&#12471;&#12473;&#12486;&#12512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12434;&#35373;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290; <span class="application">FindBugs</span> &#12399;&#12471;&#12473;&#12486;&#12512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;&#12434;&#20351;&#29992;&#12375;&#12390;&#20998;&#26512;&#29305;&#24615;&#12398;&#35373;&#23450;&#12434;&#34892;&#12356;&#12414;&#12377;&#12290;<a class="xref" href="analysisprops.html" title="&#31532;9&#31456; &#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;">9&#31456;<i>&#20998;&#26512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12540;</i></a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#35079;&#25968;&#25351;&#23450;&#12375;&#12390;&#12289;&#35079;&#25968;&#12398;&#12471;&#12473;&#12486;&#12512;&#12503;&#12525;&#12497;&#12486;&#12451;&#12434;&#35373;&#23450;&#12377;&#12427;&#12371;&#12392;&#12364;&#21487;&#33021;&#12391;&#12377;&#12290;&#27880;:  Windows &#12398;&#22810;&#12367;&#12398;&#12496;&#12540;&#12472;&#12519;&#12531;&#12391;&#12399;&#12289; <em class="replaceable"><code>name=value</code></em> &#25991;&#23383;&#21015;&#12434;&#24341;&#29992;&#31526;&#12391;&#22258;&#12416;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p></dd></dl></div></div></div></div><div class="sect1" title="3. &#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="commandLineOptions"></a>3. &#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;</h2></div></div></div><p>&#12371;&#12398;&#12475;&#12463;&#12471;&#12519;&#12531;&#12391;&#12399;&#12289; <span class="application">FindBugs</span> &#12364;&#12469;&#12509;&#12540;&#12488;&#12377;&#12427;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;&#12395;&#12388;&#12356;&#12390;&#35500;&#26126;&#12375;&#12414;&#12377;&#12290;&#12371;&#12371;&#12391;&#31034;&#12377;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;&#12399;&#12289; <span class="application">FindBugs</span> &#30452;&#25509;&#36215;&#21205;&#12289;&#12414;&#12383;&#12399;&#12289;&#12521;&#12483;&#12503;&#12375;&#12390;&#12356;&#12427;&#12473;&#12463;&#12522;&#12503;&#12488;&#12395;&#12424;&#12427;&#36215;&#21205;&#12391;&#20351;&#29992;&#12391;&#12365;&#12414;&#12377;&#12290;</p><div class="sect2" title="3.1. &#20849;&#36890;&#12398;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;"><div class="titlepage"><div><div><h3 class="title"><a name="d0e778"></a>3.1. &#20849;&#36890;&#12398;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12458;&#12503;&#12471;&#12519;&#12531;</h3></div></div></div><p>&#12371;&#12371;&#12391;&#31034;&#12377;&#12458;&#12503;&#12471;&#12519;&#12531;&#12399;&#12289; GUI &#12362;&#12424;&#12403; &#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12398;&#20001;&#26041;&#12391;&#20351;&#29992;&#12391;&#12365;&#12414;&#12377;&#12290;</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-effort:min</strong></span></span></dt><dd><p>&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#25351;&#23450;&#12377;&#12427;&#12392;&#12289;&#31934;&#24230;&#12434;&#19978;&#12370;&#12427;&#12383;&#12417;&#12395;&#22823;&#37327;&#12398;&#12513;&#12514;&#12522;&#12540;&#12434;&#28040;&#36027;&#12377;&#12427;&#20998;&#26512;&#12364;&#28961;&#21177;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;<span class="application">FindBugs</span> &#12398;&#23455;&#34892;&#26178;&#12395;&#12513;&#12514;&#12522;&#12540;&#19981;&#36275;&#12395;&#12394;&#12387;&#12383;&#12426;&#12289;&#20998;&#26512;&#12434;&#23436;&#20102;&#12377;&#12427;&#12414;&#12391;&#12395;&#30064;&#24120;&#12395;&#38263;&#12356;&#26178;&#38291;&#12364;&#12363;&#12363;&#12427;&#22580;&#21512;&#12395;&#35430;&#12375;&#12390;&#12415;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-effort:max</strong></span></span></dt><dd><p>&#31934;&#24230;&#12364;&#39640;&#12367;&#12289;&#12424;&#12426;&#22810;&#12367;&#12398;&#12496;&#12464;&#12434;&#26908;&#20986;&#12377;&#12427;&#20998;&#26512;&#12434;&#26377;&#21177;&#12395;&#12375;&#12414;&#12377;&#12290;&#12383;&#12384;&#12375;&#12289;&#22810;&#12367;&#12398;&#12513;&#12514;&#12522;&#12540;&#23481;&#37327;&#12434;&#24517;&#35201;&#12392;&#12375;&#12289;&#12414;&#12383;&#12289;&#23436;&#20102;&#12414;&#12391;&#12398;&#26178;&#38291;&#12364;&#22810;&#12367;&#12363;&#12363;&#12427;&#21487;&#33021;&#24615;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-project</strong></span> <em class="replaceable"><code>project</code></em></span></dt><dd><p>&#20998;&#26512;&#12377;&#12427;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#25351;&#23450;&#12377;&#12427;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12501;&#12449;&#12452;&#12523;&#12395;&#12399;&#12289; GUI &#12434;&#20351;&#12387;&#12390;&#20316;&#25104;&#12375;&#12383;&#12418;&#12398;&#12434;&#20351;&#29992;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#12501;&#12449;&#12452;&#12523;&#12398;&#25313;&#24373;&#23376;&#12399;&#12289;&#19968;&#33324;&#30340;&#12395;&#12399; <code class="filename">.fb</code> &#12414;&#12383;&#12399; <code class="filename">.fbp</code> &#12391;&#12377;&#12290;</p></dd></dl></div></div><div class="sect2" title="3.2. GUI &#12458;&#12503;&#12471;&#12519;&#12531;"><div class="titlepage"><div><div><h3 class="title"><a name="d0e818"></a>3.2. GUI &#12458;&#12503;&#12471;&#12519;&#12531;</h3></div></div></div><p>&#12371;&#12371;&#12391;&#31034;&#12377;&#12458;&#12503;&#12471;&#12519;&#12531;&#12399;&#12289;&#12464;&#12521;&#12501;&#12451;&#12459;&#12523;&#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12391;&#12398;&#12415;&#20351;&#29992;&#12391;&#12365;&#12414;&#12377;&#12290;</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-look:</strong></span><em class="replaceable"><code>plastic|gtk|native</code></em></span></dt><dd><p>Swing &#12398;&#12523;&#12483;&#12463;&#12539;&#12450;&#12531;&#12489;&#12539;&#12501;&#12451;&#12540;&#12523;&#12434;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;</p></dd></dl></div><p>
-</p></div><div class="sect2" title="3.3. &#12486;&#12461;&#12473;&#12488;&#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12458;&#12503;&#12471;&#12519;&#12531;"><div class="titlepage"><div><div><h3 class="title"><a name="d0e834"></a>3.3. &#12486;&#12461;&#12473;&#12488;&#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12458;&#12503;&#12471;&#12519;&#12531;</h3></div></div></div><p>&#12371;&#12371;&#12391;&#31034;&#12377;&#12458;&#12503;&#12471;&#12519;&#12531;&#12399;&#12289;&#12486;&#12461;&#12473;&#12488;&#12518;&#12540;&#12470;&#12540;&#12452;&#12531;&#12479;&#12501;&#12455;&#12540;&#12473;&#12391;&#12398;&#12415;&#20351;&#29992;&#12391;&#12365;&#12414;&#12377;&#12290;</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-sortByClass</strong></span></span></dt><dd><p>&#22577;&#21578;&#12373;&#12428;&#12427;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12434;&#12463;&#12521;&#12473;&#21517;&#12391;&#12477;&#12540;&#12488;&#12375;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-include</strong></span> <em class="replaceable"><code>filterFile.xml</code></em></span></dt><dd><p><em class="replaceable"><code>filterFile.xml</code></em> &#12391;&#25351;&#23450;&#12375;&#12383;&#12501;&#12451;&#12523;&#12479;&#12540;&#12395;&#19968;&#33268;&#12375;&#12383;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12398;&#12415;&#22577;&#21578;&#12373;&#12428;&#12414;&#12377;&#12290;<a class="xref" href="filter.html" title="&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;">8&#31456;<i>&#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;</i></a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-exclude</strong></span> <em class="replaceable"><code>filterFile.xml</code></em></span></dt><dd><p><em class="replaceable"><code>filterFile.xml</code></em> &#12391;&#25351;&#23450;&#12375;&#12383;&#12501;&#12451;&#12523;&#12479;&#12540;&#12395;&#19968;&#33268;&#12375;&#12383;&#12496;&#12464;&#26908;&#32034;&#32080;&#26524;&#12399;&#22577;&#21578;&#12373;&#12428;&#12414;&#12379;&#12435;&#12290;<a class="xref" href="filter.html" title="&#31532;8&#31456; &#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;">8&#31456;<i>&#12501;&#12451;&#12523;&#12479;&#12540;&#12501;&#12449;&#12452;&#12523;</i></a> &#12434;&#21442;&#29031;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-onlyAnalyze</strong></span> <em class="replaceable"><code>com.foobar.MyClass,com.foobar.mypkg.*</code></em></span></dt><dd><p>&#12467;&#12531;&#12510;&#21306;&#20999;&#12426;&#12391;&#25351;&#23450;&#12375;&#12383;&#12463;&#12521;&#12473;&#12362;&#12424;&#12403;&#12497;&#12483;&#12465;&#12540;&#12472;&#12398;&#12415;&#12395;&#38480;&#23450;&#12375;&#12390;&#12289;&#12496;&#12464;&#26908;&#20986;&#12398;&#20998;&#26512;&#12434;&#34892;&#12358;&#12424;&#12358;&#12395;&#12375;&#12414;&#12377;&#12290;&#12501;&#12451;&#12523;&#12479;&#12540;&#12392;&#36949;&#12387;&#12390;&#12289;&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#20351;&#12358;&#12392;&#19968;&#33268;&#12375;&#12394;&#12356;&#12463;&#12521;&#12473;&#12362;&#12424;&#12403;&#12497;&#12483;&#12465;&#12540;&#12472;&#12395;&#23550;&#12377;&#12427;&#20998;&#26512;&#12398;&#23455;&#34892;&#12434;&#22238;&#36991;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#22823;&#12365;&#12394;&#12503;&#12525;&#12472;&#12455;&#12463;&#12488;&#12395;&#12362;&#12356;&#12390;&#12289;&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#27963;&#29992;&#12377;&#12427;&#12392;&#20998;&#26512;&#12395;&#12363;&#12363;&#12427;&#26178;&#38291;&#12434;&#22823;&#12365;&#12367;&#21066;&#28187;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12427;&#21487;&#33021;&#24615;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;(&#12375;&#12363;&#12375;&#12394;&#12364;&#12425;&#12289;&#12450;&#12503;&#12522;&#12465;&#12540;&#12471;&#12519;&#12531;&#12398;&#20840;&#20307;&#12391;&#23455;&#34892;&#12375;&#12390;&#12356;&#12394;&#12356;&#12383;&#12417;&#12395;&#19981;&#27491;&#30906;&#12394;&#32080;&#26524;&#12434;&#20986;&#12375;&#12390;&#12375;&#12414;&#12358;&#12487;&#12451;&#12486;&#12463;&#12479;&#12364;&#12354;&#12427;&#21487;&#33021;&#24615;&#12418;&#12354;&#12426;&#12414;&#12377;&#12290;) &#12463;&#12521;&#12473;&#12399;&#12497;&#12483;&#12465;&#12540;&#12472;&#12418;&#21547;&#12435;&#12384;&#23436;&#20840;&#12394;&#21517;&#21069;&#12434;&#25351;&#23450;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#12414;&#12383;&#12289;&#12497;&#12483;&#12465;&#12540;&#12472;&#12399;&#12289; Java &#12398; <code class="literal">import</code> &#25991;&#12391;&#12497;&#12483;&#12465;&#12540;&#12472;&#19979;&#12398;&#12377;&#12409;&#12390;&#12398;&#12463;&#12521;&#12473;&#12434;&#12452;&#12531;&#12509;&#12540;&#12488;&#12377;&#12427;&#12392;&#12365;&#12392;&#21516;&#12376;&#26041;&#27861;&#12391;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290; (&#12377;&#12394;&#12431;&#12385;&#12289;&#12497;&#12483;&#12465;&#12540;&#12472;&#12398;&#23436;&#20840;&#12394;&#21517;&#21069;&#12395; <code class="literal">.*</code> &#12434;&#20184;&#12369;&#21152;&#12360;&#12383;&#24418;&#12391;&#12377;&#12290;)<code class="literal">.*</code> &#12398;&#20195;&#12431;&#12426;&#12395; <code class="literal">.-</code> &#12434;&#25351;&#23450;&#12377;&#12427;&#12392;&#12289;&#12469;&#12502;&#12497;&#12483;&#12465;&#12540;&#12472;&#12418;&#21547;&#12417;&#12390;&#12377;&#12409;&#12390;&#12364;&#20998;&#26512;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-low</strong></span></span></dt><dd><p>&#12377;&#12409;&#12390;&#12398;&#12496;&#12464;&#12364;&#22577;&#21578;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-medium</strong></span></span></dt><dd><p>&#20778;&#20808;&#24230; (&#20013;) &#12362;&#12424;&#12403;&#20778;&#20808;&#24230; (&#39640;) &#12398;&#12496;&#12464;&#12364;&#22577;&#21578;&#12373;&#12428;&#12414;&#12377;&#12290;&#12371;&#12428;&#12399;&#12289;&#12487;&#12501;&#12457;&#12523;&#12488;&#12398;&#35373;&#23450;&#20516;&#12391;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-high</strong></span></span></dt><dd><p>&#20778;&#20808;&#24230; (&#39640;) &#12398;&#12496;&#12464;&#12398;&#12415;&#12364;&#22577;&#21578;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-relaxed</strong></span></span></dt><dd><p>&#25163;&#25244;&#12365;&#22577;&#21578;&#12514;&#12540;&#12489;&#12391;&#12377;&#12290;&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12434;&#25351;&#23450;&#12377;&#12427;&#12392;&#12289;&#22810;&#12367;&#12398;&#12487;&#12451;&#12486;&#12463;&#12479;&#12395;&#12362;&#12356;&#12390; &#35492;&#26908;&#20986;&#12434;&#22238;&#36991;&#12377;&#12427;&#12383;&#12417;&#12398;&#12498;&#12517;&#12540;&#12522;&#12473;&#12486;&#12451;&#12483;&#12463;&#27231;&#33021;&#12364;&#25233;&#27490;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-xml</strong></span></span></dt><dd><p>&#12496;&#12464;&#22577;&#21578;&#12364; XML &#12391;&#20316;&#25104;&#12373;&#12428;&#12414;&#12377;&#12290;&#20316;&#25104;&#12373;&#12428;&#12383; XML &#12487;&#12540;&#12479;&#12399; &#12289;&#24460;&#12391; GUI &#12391;&#35211;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12399; <span class="command"><strong>-xml:withMessages</strong></span> &#12392;&#25351;&#23450;&#12377;&#12427;&#12371;&#12392;&#12418;&#12391;&#12365;&#12414;&#12377;&#12290;&#12371;&#12358;&#12377;&#12427;&#12392; &#20986;&#21147; XML &#12395;&#12399; &#21508;&#12496;&#12464;&#12395;&#38306;&#12375;&#12390;&#20154;&#38291;&#12395;&#35501;&#12416;&#12371;&#12392;&#12364;&#12391;&#12365;&#12427;&#12513;&#12483;&#12475;&#12540;&#12472;&#12364;&#21547;&#12414;&#12428;&#12427;&#12424;&#12358;&#12395;&#12394;&#12426;&#12414;&#12377;&#12290;&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12391;&#20316;&#25104;&#12373;&#12428;&#12383; XML &#12501;&#12449;&#12452;&#12523;&#12399; &#22577;&#21578;&#26360;&#12395;&#22793;&#25563;&#12377;&#12427;&#12398;&#12364;&#31777;&#21336;&#12391;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-html</strong></span></span></dt><dd><p>HTML &#20986;&#21147;&#12364;&#29983;&#25104;&#12373;&#12428;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12391;&#12399; <span class="application">FindBugs</span> &#12399; <code class="filename">default.xsl</code> <a class="ulink" href="http://www.w3.org/TR/xslt" target="_top">XSLT</a> &#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12434;&#20351;&#29992;&#12375;&#12390; HTML &#20986;&#21147;&#12434;&#29983;&#25104;&#12375;&#12414;&#12377;: &#12371;&#12398;&#12501;&#12449;&#12452;&#12523;&#12399;&#12289; <code class="filename">findbugs.jar</code> &#12398;&#20013;&#12289;&#12414;&#12383;&#12399;&#12289; <span class="application">FindBugs</span> &#12398;&#12477;&#12540;&#12473;&#37197;&#24067;&#29289;&#12418;&#12375;&#12367;&#12399;&#12496;&#12452;&#12490;&#12522;&#37197;&#24067;&#29289;&#12398;&#20013;&#12395;&#12354;&#12426;&#12414;&#12377;&#12290;&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12395;&#12399;&#12289;&#27425;&#12398;&#12424;&#12358;&#12394;&#12496;&#12522;&#12456;&#12540;&#12471;&#12519;&#12531;&#12418;&#23384;&#22312;&#12375;&#12414;&#12377;&#12290;&#12377;&#12394;&#12431;&#12385;&#12289; <span class="command"><strong>-html:plain.xsl</strong></span> &#12289; <span class="command"><strong>-html:fancy.xsl</strong></span> &#12362;&#12424;&#12403; <span class="command"><strong>-html:fancy-hist.xsl</strong></span> &#12391;&#12377;&#12290;<code class="filename">plain.xsl</code> &#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12399; Javascript &#12420; DOM &#12434;&#21033;&#29992;&#12375;&#12414;&#12379;&#12435;&#12290;&#12375;&#12383;&#12364;&#12387;&#12390;&#12289;&#21476;&#12356;Web &#12502;&#12521;&#12454;&#12470;&#20351;&#29992;&#26178;&#12420;&#21360;&#21047;&#26178;&#12395;&#12418;&#27604;&#36611;&#30340;&#12358;&#12414;&#12367;&#34920;&#31034;&#12373;&#12428;&#12427;&#12391;&#12375;&#12423;&#12358;&#12290;<code class="filename">fancy.xsl</code> &#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12399; DOM &#12392; Javascript &#12434;&#21033;&#29992;&#12375;&#12390;&#12490;&#12499;&#12466;&#12540;&#12471;&#12519;&#12531;&#12434;&#34892;&#12356;&#12414;&#12377;&#12290;&#12414;&#12383;&#12289;&#12499;&#12472;&#12517;&#12450;&#12523;&#34920;&#31034;&#12395; CSS &#12434;&#20351;&#29992;&#12375;&#12414;&#12377;&#12290;<span class="command"><strong>fancy-hist.xsl</strong></span> &#12399; <span class="command"><strong>fancy.xsl</strong></span> &#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12434;&#26356;&#12395;&#36914;&#21270;&#12373;&#12379;&#12383;&#12418;&#12398;&#12391;&#12377;&#12290;DOM &#12420; Javascript &#12434;&#12405;&#12435;&#12384;&#12435;&#12395;&#39366;&#20351;&#12375;&#12390;&#12289;&#12496;&#12464;&#12398;&#19968;&#35239;&#12434;&#21205;&#30340;&#12395;&#12501;&#12451;&#12523;&#12479;&#12522;&#12531;&#12464;&#12375;&#12414;&#12377;&#12290;</p><p>&#12518;&#12540;&#12470;&#12540;&#33258;&#36523;&#12398; XSLT &#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12434;&#29992;&#12356;&#12390; HTML &#12408;&#12398;&#22793;&#25563;&#12434;&#34892;&#12356;&#12383;&#12356;&#22580;&#21512;&#12399;&#12289; <span class="command"><strong>-html:<em class="replaceable"><code>myStylesheet.xsl</code></em></strong></span> &#12398;&#12424;&#12358;&#12395;&#25351;&#23450;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#12371;&#12371;&#12391;&#12289; <em class="replaceable"><code>myStylesheet.xsl</code></em> &#12399;&#12518;&#12540;&#12470;&#12540;&#12364;&#20351;&#29992;&#12375;&#12383;&#12356;&#12473;&#12479;&#12452;&#12523;&#12471;&#12540;&#12488;&#12398;&#12501;&#12449;&#12452;&#12523;&#21517;&#12391;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-emacs</strong></span></span></dt><dd><p>&#12496;&#12464;&#22577;&#21578;&#12364; Emacs &#24418;&#24335;&#12391;&#20316;&#25104;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-xdocs</strong></span></span></dt><dd><p>&#12496;&#12464;&#22577;&#21578;&#12364; xdoc XML &#24418;&#24335;&#12391;&#20316;&#25104;&#12373;&#12428;&#12414;&#12377;&#12290;Apache Maven&#12391;&#20351;&#29992;&#12391;&#12365;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-output</strong></span> <em class="replaceable"><code>&#12501;&#12449;&#12452;&#12523;&#21517;</code></em></span></dt><dd><p>&#25351;&#23450;&#12375;&#12383;&#12501;&#12449;&#12452;&#12523;&#12395;&#20986;&#21147;&#32080;&#26524;&#12364;&#20316;&#25104;&#12373;&#12428;&#12414;&#12377;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-outputFile</strong></span> <em class="replaceable"><code>&#12501;&#12449;&#12452;&#12523;&#21517;</code></em></span></dt><dd><p>&#12371;&#12398;&#24341;&#25968;&#12399;&#12289;&#20351;&#29992;&#12377;&#12409;&#12365;&#12391;&#12399;&#12354;&#12426;&#12414;&#12379;&#12435;&#12290;&#20195;&#12431;&#12426;&#12395;&#12289; <span class="command"><strong>-output</strong></span> &#12434;&#20351;&#29992;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-nested</strong></span><em class="replaceable"><code>[:true|false]</code></em></span></dt><dd><p>&#12371;&#12398;&#12458;&#12503;&#12471;&#12519;&#12531;&#12399;&#12289;&#12501;&#12449;&#12452;&#12523;&#12420;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12398;&#20013;&#12391;&#20837;&#12428;&#23376;&#12395;&#12394;&#12387;&#12383; jar &#12362;&#12424;&#12403; zip &#12501;&#12449;&#12452;&#12523;&#12434;&#20998;&#26512;&#12377;&#12427;&#12363;&#12393;&#12358;&#12363;&#12434;&#25351;&#23450;&#12375;&#12414;&#12377;&#12290;&#12487;&#12501;&#12457;&#12523;&#12488;&#12391;&#12399;&#12289;&#20837;&#12428;&#23376;&#12395;&#12394;&#12387;&#12383; jar &#12362;&#12424;&#12403; zip &#12501;&#12449;&#12452;&#12523;&#12418;&#20998;&#26512;&#12375;&#12414;&#12377;&#12290;&#20837;&#12428;&#23376;&#12395;&#12394;&#12387;&#12383; jar &#12362;&#12424;&#12403; zip &#12501;&#12449;&#12452;&#12523;&#12398;&#20998;&#26512;&#12377;&#12427;&#12434;&#28961;&#21177;&#12395;&#12377;&#12427;&#22580;&#21512;&#12399;&#12289; <span class="command"><strong>-nested:false</strong></span> &#12434;&#12467;&#12510;&#12531;&#12489;&#12521;&#12452;&#12531;&#24341;&#25968;&#12395;&#36861;&#21152;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;</p></dd><dt><span class="term"><span class="command"><strong>-auxclasspath</strong></span> <em class="replaceable"><code>&#12463;&#12521;&#12473;&#12497;&#12473;</code></em></span></dt><dd><p>&#20998;&#26512;&#26178;&#12395;&#20351;&#29992;&#12377;&#12427;&#35036;&#21161;&#12463;&#12521;&#12473;&#12497;&#12473;&#12434;&#35373;&#23450;&#12375;&#12414;&#12377;&#12290;&#20998;&#26512;&#12377;&#12427;&#12503;&#12525;&#12464;&#12521;&#12512;&#12391;&#20351;&#29992;&#12377;&#12427;jar&#12501;&#12449;&#12452;&#12523;&#12420;&#12463;&#12521;&#12473;&#12487;&#12451;&#12524;&#12463;&#12488;&#12522;&#12540;&#12434;&#12377;&#12409;&#12390;&#25351;&#23450;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;&#35036;&#21161;&#12463;&#12521;&#12473;&#12497;&#12473;&#12395;&#25351;&#23450;&#12375;&#12383;&#12463;&#12521;&#12473;&#12399;&#20998;&#26512;&#12398;&#23550;&#35937;&#12395;&#12399;&#12394;&#12426;&#12414;&#12379;&#12435;&#12290;</p></dd></dl></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="building.html">&#25147;&#12427;</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="gui.html">&#27425;&#12408;</a></td></tr><tr><td width="40%" align="left" valign="top">&#31532;3&#31456; <span class="application">FindBugs</span>&#8482; &#12398;&#12477;&#12540;&#12523;&#12363;&#12425;&#12398;&#12499;&#12523;&#12489;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">&#12507;&#12540;&#12512;</a></td><td width="40%" align="right" valign="top">&nbsp;&#31532;5&#31456; <span class="application">FindBugs</span> GUI &#12398;&#20351;&#29992;&#26041;&#27861;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/ja/manual/warning.png b/tools/findbugs/doc/ja/manual/warning.png
deleted file mode 100644
index 1c33db8..0000000
--- a/tools/findbugs/doc/ja/manual/warning.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/links.html b/tools/findbugs/doc/links.html
deleted file mode 100644
index 87884b8..0000000
--- a/tools/findbugs/doc/links.html
+++ /dev/null
@@ -1,126 +0,0 @@
-<html>
-<head>
-<title>FindBugs Links</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-
-<h1>FindBugs Links</h1>
-
-<p> This page contains links to related projects,
-including tools that are similar to FindBugs.
-
-<h2>FindBugs Add-Ons</h2>
-
-<ul>
-<li> <a href="http://fb-contrib.sourceforge.net/">fb-contrib</a>: additional bug detectors for use with
-     FindBugs. The lead FindBugs team does not vouch for the relevance, accuracy or wisdom of the warnings
-     generated by any third-party plugin. 
-<li> <a href="http://www.tobject.de/development/findbugs.html">FindBugs Eclipse plugin</a>.&nbsp;
-     This is now included as part of FindBugs.
-<!--<li> <a href="http://maven-plugins.sourceforge.net/maven-findbugs-plugin/index.html">Maven FindBugs plugin</a>.&nbsp;-->
-      <!--Maven is a Java project management and project comprehension tool.&nbsp;-->
-      <!--The Maven FindBugs plugin allows FindBugs reports to be generated-->
-      <!--from within Maven.-->
-<li> <a href="http://mojo.codehaus.org/findbugs-maven-plugin/">Maven2 FindBugs plugin</a>.&nbsp;
-      Maven2 is the latest version of the Java project management and project comprehension tool.&nbsp;
-      The Maven2 FindBugs plugin allows FindBugs reports to be generated
-      from within Maven.
-<li> <a href="http://qalab.sourceforge.net/">QALab</a> records and aggregates
-     the results of static analysis (including FindBugs results)
-     over time.&nbsp; Features include charts of warnings over time
-     and summary reports showing hot spots in the source code.</li>
-</ul>
-
-<h2>Similar Tools</h2>
-
-<h3>Open source tools</h3>
-
-<ul>
-<li> <a href="http://artho.com/jlint/index.shtml">JLint</a>.&nbsp; A static analysis tool
-     to find race conditions, locking errors, null pointer uses,
-     and a number of other problems in Java programs.
-<li> <a href="http://pmd.sourceforge.net/">PMD</a>.&nbsp; PMD scans Java
-     source code for potential problems.
-<li> <a href="http://checkstyle.sourceforge.net/">Checkstyle</a>.&nbsp;
-     Checkstyle is a style checker for Java.
-</ul>
-
-<h3>Commercial tools and services</h3>
-
-<ul>
-<li> <a href="http://www.jutils.com">lint4j</a>: lint tool for Java programs
-<li> <a href="http://www.parasoft.com/">JTest</a>: automatically generates
-     <a href="http://junit.org/">JUnit</a> tests for Java classes.&nbsp;
-     Also checks for many kinds of coding errors.
-<li> <a href="http://www.sureshotsoftware.com/javalint/">JiveLint</a>.&nbsp; Another
-     lint utility for Java programs.&nbsp; Finds hashcode/equals problems,
-     string reference comparisons, and more.&nbsp; Free 15 day demo.
-</ul>
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</tr></table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/mailingLists.html b/tools/findbugs/doc/mailingLists.html
deleted file mode 100644
index 4c619c9..0000000
--- a/tools/findbugs/doc/mailingLists.html
+++ /dev/null
@@ -1,85 +0,0 @@
-<html>
-<head>
-<title>FindBugs Mailing Lists</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-
-<h1>FindBugs Mailing Lists</h1>
-
-<p> There are two mailing lists for FindBugs.
-<ul>
-<li> <a href="http://www.cs.umd.edu/mailman/listinfo/findbugs-announce">Findbugs-announce</a>
-is a low volume (moderated) list for announcements of new releases.
-</li><li> <a href="http://www.cs.umd.edu/mailman/listinfo/findbugs-discuss">Findbugs-discuss</a>
-is for discussion of planned features, bugs, development issues, etc.&nbsp; Note
-that you must be a subscriber in order to post messages to the list.
-</li>
-</ul>
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</tr></table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/manual-fo.xsl b/tools/findbugs/doc/manual-fo.xsl
deleted file mode 100644
index df29918..0000000
--- a/tools/findbugs/doc/manual-fo.xsl
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version='1.0'?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                version='1.0'
-                xmlns="http://www.w3.org/TR/xhtml1/transitional"
-                exclude-result-prefixes="#default">
-
-<!-- build.xml will substitute the real path to fo/docbook.xsl here. -->
-<xsl:import href="/Users/pugh/tools/docbook-xsl-1.76.1/fo/docbook.xsl"/>
-
-<!-- Enumerate sections. -->
-<xsl:variable name="section.autolabel">1</xsl:variable>
-
-<!-- Use graphics in admonitions -->
-<xsl:variable name="admon.graphics">1</xsl:variable>
-
-<!-- Admonition graphics are in the "manual" subdirectory. -->
-<xsl:variable name="admon.graphics.path">manual/</xsl:variable>
-
-<!-- Included graphics are also in the "manual" subdirectory. -->
-<xsl:variable name="img.src.path">manual/</xsl:variable>
-
-<!-- Default image width is 5 inches - otherwise, they become much too large.
-     FIXME: for some reason, this isn't honored.  Blech.
--->
-<xsl:variable name="default.image.width">5in</xsl:variable>
-
-<!-- Just put chapters and sect1s in the TOC. -->
-<xsl:variable name="toc.section.depth">1</xsl:variable>
-
-</xsl:stylesheet>
diff --git a/tools/findbugs/doc/manual.xml b/tools/findbugs/doc/manual.xml
deleted file mode 100644
index e36db9d..0000000
--- a/tools/findbugs/doc/manual.xml
+++ /dev/null
@@ -1,3990 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
-                    "file:../etc/docbook/docbookx.dtd" [
-<!ENTITY FindBugs "<application>FindBugs</application>">
-<!ENTITY Ant "<application>Ant</application>">
-<!ENTITY Saxon "<application>Saxon</application>">
-<!ENTITY FBHome "<replaceable>$FINDBUGS_HOME</replaceable>">
-<!ENTITY FBHomeWin "<replaceable>&#x25;FINDBUGS_HOME&#x25;</replaceable>">
-<!ENTITY nbsp "&#160;">
-]>
-
-<book lang="en" id="findbugs-manual">
-
-<bookinfo>
-<title>&FindBugs;&trade; Manual</title>
-
-<authorgroup>
-  <author>
-    <firstname>David</firstname>
-    <othername>H.</othername>
-    <surname>Hovemeyer</surname>
-  </author>
-    <author>
-        <firstname>William</firstname>
-        <othername>W.</othername>
-        <surname>Pugh</surname>
-    </author>
-</authorgroup>
-
-<copyright>
-  <year>2003 - 2012</year>
-  <holder>University of Maryland</holder>
-</copyright>
-
-<legalnotice>
-<para>
-This manual is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike License.
-To view a copy of this license, visit
-<ulink url="http://creativecommons.org/licenses/by-nc-sa/1.0/">http://creativecommons.org/licenses/by-nc-sa/1.0/</ulink>
-or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
-</para>
-<para>
-The name FindBugs and the FindBugs logo are trademarked by the University of Maryland.
-</para>
-</legalnotice>
-
-<edition>2.0.3</edition>
-
-<pubdate>17:16:15 EST, 22 November, 2013</pubdate>
-
-</bookinfo>
-
-<!--
-   **************************************************************************
-   Introduction
-   **************************************************************************
--->
-
-<chapter id="introduction">
-<title>Introduction</title>
-
-<para> &FindBugs;&trade; is a program to find bugs in Java programs.  It looks for instances
-of "bug patterns" --- code instances that are likely to be errors.</para>
-
-<para> This document describes version 2.0.3 of &FindBugs;.We
-are very interested in getting your feedback on &FindBugs;. Please visit
-the <ulink url="http://findbugs.sourceforge.net">&FindBugs; web page</ulink> for
-the latest information on &FindBugs;, contact information, and support resources such
-as information about the &FindBugs; mailing lists.</para>
-
-<sect1>
-<title>Requirements</title>
-<para> To use &FindBugs;, you need a runtime environment compatible with
-<ulink url="http://java.sun.com/j2se">Java 2 Standard Edition</ulink>, version 1.5 or later.
-&FindBugs; is platform independent, and is known to run on GNU/Linux, Windows, and
-MacOS X platforms.</para>
-
-<para>You should have at least 512 MB of memory to use &FindBugs;.
-To analyze very large projects, more memory may be needed.</para>
-</sect1>
-
-</chapter>
-
-<!--
-   **************************************************************************
-   Installing FindBugs
-   **************************************************************************
--->
-
-<chapter id="installing">
-<title>Installing &FindBugs;&trade;</title>
-
-<para>
-This chapter explains how to install &FindBugs;.
-</para>
-
-<sect1>
-<title>Extracting the Distribution</title>
-
-<para>
-The easiest way to install &FindBugs; is to download a binary distribution.
-Binary distributions are available in
-<ulink url="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3.tar.gz?download">gzipped tar format</ulink> and
-<ulink url="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3.zip?download">zip format</ulink>.
-Once you have downloaded a binary distribution, extract it into a directory of your choice.
-</para>
-
-<para>
-Extracting a gzipped tar format distribution:
-<screen>
-<prompt>$ </prompt><command>gunzip -c findbugs-2.0.3.tar.gz | tar xvf -</command>
-</screen>
-</para>
-
-<para>
-Extracting a zip format distribution:
-<screen>
-<prompt>C:\Software></prompt><command>unzip findbugs-2.0.3.zip</command>
-</screen>
-</para>
-
-<para>
-Usually, extracting a binary distribution will create a directory ending in
-<filename class="directory">findbugs-2.0.3</filename>. For example, if you extracted
-the binary distribution from the <filename class="directory">C:\Software</filename>
-directory, then the &FindBugs; software will be extracted into the directory
-<filename class="directory">C:\Software\findbugs-2.0.3</filename>.
-This directory is the &FindBugs; home directory.  We'll refer to it as
-&FBHome; (or &FBHomeWin; for Windows) throughout this manual.
-</para>
-</sect1>
-
-</chapter>
-
-<!--
-   **************************************************************************
-   Compiling FindBugs from Source
-   **************************************************************************
--->
-
-<chapter id="building">
-<title>Building &FindBugs;&trade; from Source</title>
-
-<para>
-This chapter describes how to build &FindBugs; from source code.  Unless you are
-interesting in modifying &FindBugs;, you will probably want to skip to the
-<link linkend="running">next chapter</link>.
-</para>
-
-<sect1>
-<title>Prerequisites</title>
-
-<para>
-To compile &FindBugs; from source, you will need the following:
-<itemizedlist>
-  <listitem>
-    <para>
-      The <ulink url="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3-source.zip?download"
-      >&FindBugs; source distribution</ulink>
-    </para>
-  </listitem>
-  <listitem>
-    <para>
-      <ulink url="http://java.sun.com/j2se/">JDK 1.5.0 or later</ulink>
-    </para>
-  </listitem>
-  <listitem>
-    <para>
-      <ulink url="http://ant.apache.org/">Apache &Ant;</ulink>, version 1.6.3 or later
-    </para>
-  </listitem>
-</itemizedlist>
-</para>
-
-<warning>
-    <para>
-        The version of &Ant; included as <filename>/usr/bin/ant</filename> on
-        Redhat Linux systems will <emphasis>not</emphasis> work for compiling
-        &FindBugs;.  We recommend you install a binary distribution of &Ant;
-        downloaded from the <ulink url="http://ant.apache.org/">&Ant; website</ulink>.
-        Make sure that when you run &Ant; your <replaceable>JAVA_HOME</replaceable>
-        environment variable points to the directory in which you installed
-        JDK 1.5 (or later).
-    </para>
-</warning>
-
-<para>
-If you want to be able to generate formatted versions of the &FindBugs; documentation,
-you will also need the following software:
-<itemizedlist>
-  <listitem>
-    <para>
-    The <ulink url="http://docbook.sourceforge.net/projects/xsl/index.html">DocBook XSL Stylesheets</ulink>.
-    These are required to convert the &FindBugs; manual into HTML format.
-    </para>
-  </listitem>
-  <listitem>
-    <para>
-      The <ulink url="http://saxon.sourceforge.net/">&Saxon; XSLT Processor</ulink>.
-      (Also required for converting the &FindBugs; manual to HTML.)
-    </para>
-  </listitem>
-<!--
-  <listitem>
-    <para>
-    </para>
-  </listitem>
--->
-</itemizedlist>
-</para>
-
-</sect1>
-
-<sect1>
-<title>Extracting the Source Distribution</title>
-<para>
-After you download the source distribution, you'll need to extract it into
-a working directory.  A typical command to do this is:
-
-<screen>
-<prompt>$ </prompt><command>unzip findbugs-2.0.3-source.zip</command>
-</screen>
-
-</para>
-</sect1>
-
-<sect1>
-<title>Modifying <filename>local.properties</filename></title>
-<para>
-If you intend to build the FindBugs documentation,
-you will need to modify the <filename>local.properties</filename> file
-used by the <ulink url="http://ant.apache.org/">&Ant;</ulink>
-<filename>build.xml</filename> file to build &FindBugs;.
-If you do not want to build the FindBugs documentation, then you
-can ignore this file.
-</para>
-
-<para>
-The <filename>local.properties</filename> overrides definitions
-in the <filename>build.properties</filename> file.
-The <filename>build.properties</filename> file looks something like this:
-<programlisting>
-<![CDATA[
-# User Configuration:
-# This section must be modified to reflect your system.
-
-local.software.home     =/export/home/daveho/linux
-
-# Set this to the directory containing the DocBook Modular XSL Stylesheets
-#  from http://docbook.sourceforge.net/projects/xsl/
-
-xsl.stylesheet.home     =${local.software.home}/docbook/docbook-xsl-1.71.1
-
-# Set this to the directory where Saxon (http://saxon.sourceforge.net/)
-# is installed.
-
-saxon.home              =${local.software.home}/java/saxon-6.5.5
-]]>
-</programlisting>
-</para>
-
-<para>
-The <varname>xsl.stylesheet.home</varname> property specifies the full
-path to the directory where you have installed the
-<ulink url="http://docbook.sourceforge.net/projects/xsl/">DocBook Modular XSL
-Stylesheets</ulink>.  You only need to specify this property if you will be
-generating the &FindBugs; documentation.
-</para>
-
-<para>
-The <varname>saxon.home</varname> property is the full path to the
-directory where you installed the <ulink url="http://saxon.sourceforge.net/">&Saxon; XSLT Processor</ulink>.
-You only need to specify this property if you will be
-generating the &FindBugs; documentation.
-</para>
-
-</sect1>
-
-<sect1>
-<title>Running &Ant;</title>
-
-<para>
-Once you have extracted the source distribution,
-made sure that &Ant; is installed,
-modified <filename>build.properties</filename> (optional),
-and configured the tools (such as &Saxon;),
-you are ready to build &FindBugs;.  Invoking &Ant; is a simple matter
-of running the command
-<screen>
-<prompt>$ </prompt><command>ant <replaceable>target</replaceable></command>
-</screen>
-where <replaceable>target</replaceable> is one of the following:
-<variablelist>
-  <varlistentry>
-    <term><command>build</command></term>
-    <listitem>
-       <para>
-         This target compiles the code for &FindBugs;. It is the default target.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>docs</command></term>
-    <listitem>
-       <para>
-       This target formats the documentation.  (It also compiles some of
-       the source code as a side-effect.)
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>runjunit</command></term>
-    <listitem>
-        <para>
-            This target compiles and runs the internal JUnit tests included
-            in &FindBugs;.  It will print an error message if any unit
-            tests fail.
-        </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>bindist</command></term>
-    <listitem>
-        <para>
-            Builds a binary distribution of &FindBugs;.
-            The target creates both <filename>.zip</filename> and
-            <filename>.tar.gz</filename> archives.
-        </para>
-    </listitem>
-  </varlistentry>
-</variablelist>
-</para>
-
-<para>
-After running an &Ant; command, you should see output similar to
-the following (after some other messages regarding the tasks that
-&Ant; is running):
-<screen>
-<computeroutput>
-BUILD SUCCESSFUL
-Total time: 17 seconds
-</computeroutput>
-</screen>
-</para>
-
-</sect1>
-
-<sect1>
-<title>Running &FindBugs;&trade; from a source directory</title>
-<para>
-The &Ant; build script for &FindBugs; is written such that after
-building the <command>build</command> target, the working directory
-is set up just like a binary distribution.  So, the information about
-running &FindBugs; in <xref linkend="running" />
-applies to source distributions, too.
-</para>
-</sect1>
-
-</chapter>
-
-
-<!--
-   **************************************************************************
-   Running FindBugs
-   **************************************************************************
--->
-
-<chapter id="running">
-<title>Running &FindBugs;&trade;</title>
-
-<para>
-&FindBugs; has two user interfaces: a graphical user interface (GUI) and a
-command line user interface.  This chapter describes
-how to run each of these user interfaces.
-</para>
-
-    <warning>
-        <para>
-            This chapter is in the process of being re-written.
-            The rewrite is not complete yet.
-        </para>
-    </warning>
-
-<!--
-<sect1>
-<title>Executing the &FindBugs;&trade; GUI</title>
-</sect1>
--->
-
-<sect1>
-    <title>Quick Start</title>
-    <para>
-        If you are running &FindBugs; on a  Windows system,
-        double-click on the file <filename>&FBHomeWin;\lib\findbugs.jar</filename> to start the &FindBugs; GUI.
-    </para>
-
-    <para>
-        On a Unix, Linux, or Mac OS X system, run the <filename>&FBHome;/bin/findbugs</filename>
-        script, or run the command <screen>
-<command>java -jar &FBHome;/lib/findbugs.jar</command></screen>
-    to run the &FindBugs; GUI.
-    </para>
-
-    <para>
-    Refer to <xref linkend="gui"/> for information on how to use the GUI.
-    </para>
-</sect1>
-
-<sect1>
-
-    <title>Executing &FindBugs;</title>
-
-    <para>
-        This section describes how to invoke the &FindBugs; program.
-        There are two ways to invoke &FindBugs;: directly, or using a
-        wrapper script.
-    </para>
-
-
-    <sect2 id="directInvocation">
-        <title>Direct invocation of &FindBugs;</title>
-
-        <para>
-            The preferred method of running &FindBugs; is to directly execute
-            <filename>&FBHome;/lib/findbugs.jar</filename> using the <command>-jar</command>
-            command line switch of the JVM (<command>java</command>) executable.
-            (Versions of &FindBugs; prior to 1.3.5 required a wrapper script
-            to invoke &FindBugs;.)
-        </para>
-
-        <para>
-            The general syntax of invoking &FindBugs; directly is the following:
-<screen>
-    <command>java <replaceable>[JVM arguments]</replaceable> -jar &FBHome;/lib/findbugs.jar <replaceable>options...</replaceable></command>
-</screen>
-        </para>
-
-<!--
-        <para>
-            By default, executing <filename>findbugs.jar</filename> runs the
-            &FindBugs; graphical user interface (GUI).  On windows systems,
-            you can double-click on <filename>findbugs.jar</filename> to launch
-            the GUI.  From a command line, the command
-            <screen>
-java -jar <replaceable>&FBHome;</replaceable>/lib/findbugs.jar</screen>
-            will launch the GUI.
-        </para>
--->
-
-        <sect3 id="chooseUI">
-            <title>Choosing the User Interface</title>
-
-        <para>
-            The first command line option chooses the &FindBugs; user interface to execute.
-            Possible values are:
-        </para>
-        <itemizedlist>
-            <listitem>
-                <para>
-                <command>-gui</command>: runs the graphical user interface (GUI)
-                </para>
-            </listitem>
-
-            <listitem>
-                <para>
-                    <command>-textui</command>: runs the command line user interface
-                </para>
-            </listitem>
-
-            <listitem>
-                <para>
-                    <command>-version</command>: displays the &FindBugs; version number
-                </para>
-            </listitem>
-
-            <listitem>
-                <para>
-                    <command>-help</command>: displays help information for the
-                    &FindBugs; command line user interface
-                </para>
-            </listitem>
-
-            <listitem>
-                <para>
-                    <command>-gui1</command>: executes the original (obsolete)
-                    &FindBugs; graphical user interface
-                </para>
-            </listitem>
-        </itemizedlist>
-
-        </sect3>
-
-        <sect3 id="jvmArgs">
-            <title>Java Virtual Machine (JVM) arguments</title>
-
-            <para>
-                Several Java Virtual Machine arguments are useful when invoking
-                &FindBugs;.
-            </para>
-
-            <variablelist>
-                <varlistentry>
-                    <term><command>-Xmx<replaceable>NN</replaceable>m</command></term>
-                    <listitem>
-                        <para>
-                            Set the maximum Java heap size to <replaceable>NN</replaceable>
-                            megabytes.  &FindBugs; generally requires a large amount of
-                            memory.  For a very large project, using 1500 megabytes
-                            is not unusual.
-                        </para>
-                    </listitem>
-                </varlistentry>
-
-                <varlistentry>
-                    <term><command>-D<replaceable>name</replaceable>=<replaceable>value</replaceable></command></term>
-                    <listitem>
-                        <para>
-                            Set a Java system property.  For example, you might use the
-                            argument <command>-Duser.language=ja</command> to display
-                            GUI messages in Japanese.
-                        </para>
-                    </listitem>
-                </varlistentry>
-
-                <!--
-                <varlistentry>
-                    <term></term>
-                    <listitem>
-                        <para>
-                        </para>
-                    </listitem>
-                </varlistentry>
-                -->
-            </variablelist>
-        </sect3>
-
-    </sect2>
-
-    <sect2 id="wrapperScript">
-        <title>Invocation of &FindBugs; using a wrapper script</title>
-
-        <para>
-            Another way to run &FindBugs; is to use a wrapper script.
-        </para>
-
-<para>
-On Unix-like systems, use the following command to invoke the wrapper script:
-<screen>
-<prompt>$ </prompt><command>&FBHome;/bin/findbugs <replaceable>options...</replaceable></command>
-</screen>
-</para>
-
-<para>
-On Windows systems, the command to invoke the wrapper script is
-<screen>
-<prompt>C:\My Directory></prompt><command>&FBHomeWin;\bin\findbugs.bat <replaceable>options...</replaceable></command>
-</screen>
-</para>
-
-<para>
-On both Unix-like and Windows systems, you can simply add the <filename><replaceable>$FINDBUGS_HOME</replaceable>/bin</filename>
-directory to your <filename>PATH</filename> environment variable and then invoke
-FindBugs using the <command>findbugs</command> command.
-</para>
-
-    <sect3 id="wrapperOptions">
-        <title>Wrapper script command line options</title>
-        <para>The &FindBugs; wrapper scripts support the following command-line options.
-        Note that these command line options are <emphasis>not</emphasis> handled by
-        the &FindBugs; program per se; rather, they are handled by the wrapper
-        script.
-        </para>
-    <variablelist>
-  <varlistentry>
-    <term><command>-jvmArgs <replaceable>args</replaceable></command></term>
-    <listitem>
-       <para>
-         Specifies arguments to pass to the JVM.  For example, you might want
-         to set a JVM property:
-<screen>
-<prompt>$ </prompt><command>findbugs -textui -jvmArgs "-Duser.language=ja" <replaceable>myApp.jar</replaceable></command>
-</screen>
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-javahome <replaceable>directory</replaceable></command></term>
-    <listitem>
-      <para>
-        Specifies the directory containing the JRE (Java Runtime Environment) to
-        use to execute &FindBugs;.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-maxHeap <replaceable>size</replaceable></command></term>
-    <listitem>
-      <para>
-      Specifies the maximum Java heap size in megabytes. The default is 256.
-      More memory may be required to analyze very large programs or libraries.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-debug</command></term>
-    <listitem>
-      <para>
-      Prints a trace of detectors run and classes analyzed to standard output.
-      Useful for troubleshooting unexpected analysis failures.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-property</command> <replaceable>name=value</replaceable></term>
-    <listitem>
-      <para>
-      This option sets a system property.&nbsp; &FindBugs; uses system properties
-      to configure analysis options.  See <xref linkend="analysisprops"/>.
-      You can use this option multiple times in order to set multiple properties.
-      Note: In most versions of Windows, the <replaceable>name=value</replaceable>
-      string must be in quotes.
-      </para>
-    </listitem>
-  </varlistentry>
-
-    </variablelist>
-
-    </sect3>
-
-</sect2>
-
-</sect1>
-
-<sect1 id="commandLineOptions">
-<title>Command-line Options</title>
-
-<!--
-<para>
-
-There are two ways to invoke &FindBugs;.  The first invokes the the Graphical User Interface (GUI):
-
-<screen>
-<prompt>$ </prompt><command>findbugs <replaceable>[standard options]</replaceable> <replaceable>[GUI options]</replaceable></command>
-</screen>
-
-The second invokes the Command Line Interface (Text UI):
-
-<screen>
-<prompt>$ </prompt><command>findbugs -textui <replaceable>[standard options]</replaceable> <replaceable>[Text UI options]</replaceable></command>
-</screen>
-</para>
--->
-
-<para>
-    This section describes the command line options supported by &FindBugs;.
-    These command line options may be used when invoking &FindBugs; directly,
-    or when using a wrapper script.
-</para>
-
-<sect2>
-<title>Common command-line options</title>
-
-<para>
-These options may be used with both the GUI and command-line interfaces.
-</para>
-
-<variablelist>
-
-  <varlistentry>
-    <term><command>-effort:min</command></term>
-    <listitem>
-      <para>
-      This option disables analyses that increase precision but also
-      increase memory consumption.  You may want to try this option if
-      you find that &FindBugs; runs out of memory, or takes an unusually
-      long time to complete its analysis.
-      </para>
-    </listitem>
-  </varlistentry>
-
-
-  <varlistentry>
-    <term><command>-effort:max</command></term>
-    <listitem>
-      <para>
-        Enable analyses which increase precision and find more bugs, but which
-        may require more memory and take more time to complete.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-project</command> <replaceable>project</replaceable></term>
-  <listitem>
-    <para>
-    Specify a project to be analyzed.  The project file you specify should
-    be one that was created using the GUI interface.  It will typically end
-    in the extension <filename>.fb</filename> or <filename>.fbp</filename>.
-    </para>
-  </listitem>
-  </varlistentry>
-
-  <!--
-  <varlistentry>
-      <term><command></command></term>
-      <listitem>
-          <para>
-
-          </para>
-      </listitem>
-  </varlistentry>
-  -->
-
-</variablelist>
-
-</sect2>
-
-<sect2>
-<title>GUI Options</title>
-
-<para>
-These options are only accepted by the Graphical User Interface.
-
-<variablelist>
-  <varlistentry>
-    <term><command>-look:</command><replaceable>plastic|gtk|native</replaceable></term>
-    <listitem>
-       <para>
-        Set Swing look and feel.
-       </para>
-    </listitem>
-  </varlistentry>
-
-</variablelist>
-</para>
-</sect2>
-
-<sect2>
-<title>Text UI Options</title>
-
-<para>
-These options are only accepted by the Text User Interface.
-</para>
-
-<variablelist>
-  <varlistentry>
-    <term><command>-sortByClass</command></term>
-    <listitem>
-       <para>
-       Sort reported bug instances by class name.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command >-include</command> <replaceable>filterFile.xml</replaceable></term>
-    <listitem>
-       <para>
-       Only report bug instances that match the filter specified by <replaceable>filterFile.xml</replaceable>.
-       See <xref linkend="filter" />.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command >-exclude</command> <replaceable>filterFile.xml</replaceable></term>
-    <listitem>
-       <para>
-       Report all bug instances except those matching the filter specified by <replaceable>filterFile.xml</replaceable>.
-       See <xref linkend="filter" />.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-onlyAnalyze</command> <replaceable>com.foobar.MyClass,com.foobar.mypkg.*</replaceable></term>
-    <listitem>
-      <para>
-      Restrict analysis to find bugs to given comma-separated list of
-      classes and packages.
-      Unlike filtering, this option avoids running analysis on
-      classes and packages that are not explicitly matched:
-      for large projects, this may greatly reduce the amount of time
-      needed to run the analysis.  (However, some detectors may produce
-      inaccurate results if they aren't run on the entire application.)
-      Classes should be specified using their full classnames (including
-      package), and packages should be specified in the same way
-      they would in a Java <literal>import</literal> statement to
-      import all classes in the package (i.e., add <literal>.*</literal>
-      to the full name of the package).
-      Replace <literal>.*</literal> with <literal>.-</literal> to also
-      analyze all subpackages.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-low</command></term>
-  <listitem>
-    <para>
-    Report all bugs.
-    </para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-medium</command></term>
-  <listitem>
-    <para>
-    Report medium and high priority bugs.  This is the default setting.
-    </para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-high</command></term>
-  <listitem>
-    <para>
-    Report only high priority bugs.
-    </para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-relaxed</command></term>
-    <listitem>
-        <para>
-            Relaxed reporting mode.  For many detectors, this option
-            suppresses the heuristics used to avoid reporting false positives.
-        </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-xml</command></term>
-  <listitem>
-    <para>
-    Produce the bug reports as XML.  The XML data produced may be
-    viewed in the GUI at a later time.  You may also specify this
-    option as <command>-xml:withMessages</command>; when this variant
-    of the option is used, the XML output will contain human-readable
-    messages describing the warnings contained in the file.
-    XML files generated this way are easy to transform into reports.
-    </para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-html</command></term>
-  <listitem>
-    <para>
-    Generate HTML output.  By default, &FindBugs; will use the <filename>default.xsl</filename>
-    <ulink url="http://www.w3.org/TR/xslt">XSLT</ulink>
-    stylesheet to generate the HTML: you can find this file in <filename>findbugs.jar</filename>,
-    or in the &FindBugs; source or binary distributions.  Variants of this option include
-    <command>-html:plain.xsl</command>, <command>-html:fancy.xsl</command> and <command>-html:fancy-hist.xsl</command>.
-    The <filename>plain.xsl</filename> stylesheet does not use Javascript or DOM,
-    and may work better with older web browsers, or for printing.  The <filename>fancy.xsl</filename>
-    stylesheet uses DOM and Javascript for navigation and CSS for
-    visual presentation. The <command>fancy-hist.xsl</command> an evolution of <command>fancy.xsl</command> stylesheet.
-    It makes an extensive use of DOM and Javascript for dynamically filtering the lists of bugs.
-    </para>
-
-    <para>
-      If you want to specify your own
-    XSLT stylesheet to perform the transformation to HTML, specify the option as
-    <command>-html:<replaceable>myStylesheet.xsl</replaceable></command>,
-    where <replaceable>myStylesheet.xsl</replaceable> is the filename of the
-    stylesheet you want to use.
-    </para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-emacs</command></term>
-  <listitem>
-    <para>
-    Produce the bug reports in Emacs format.
-    </para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-xdocs</command></term>
-  <listitem>
-    <para>
-    Produce the bug reports in xdoc XML format for use with Apache Maven.
-    </para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-output</command> <replaceable>filename</replaceable></term>
-    <listitem>
-       <para>
-       Produce the output in the specified file.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-outputFile</command> <replaceable>filename</replaceable></term>
-    <listitem>
-       <para>
-       This argument is deprecated.  Use <command>-output</command> instead.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-nested</command><replaceable>[:true|false]</replaceable></term>
-  <listitem>
-    <para>
-    This option enables or disables scanning of nested jar and zip files found in
-    the list of files and directories to be analyzed.
-    By default, scanning of nested jar/zip files is enabled.
-    To disable it, add <command>-nested:false</command> to the command line
-    arguments.
-    </para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-auxclasspath</command> <replaceable>classpath</replaceable></term>
-  <listitem>
-    <para>
-    Set the auxiliary classpath for analysis.  This classpath should include all
-    jar files and directories containing classes that are part of the program
-    being analyzed but you do not want to have analyzed for bugs.
-    </para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-userPrefs</command> <replaceable>edu.umd.cs.findbugs.core.prefs</replaceable></term>
-  <listitem>
-    <para>
-    Set the path of the user preferences file to use, which might override some of the options abobe.
-    Specifying <literal>userPrefs</literal> as first argument would mean some later
-    options will override them, as last argument would mean they will override some previous options).
-    This rationale behind this option is to reuse FindBugs Eclipse project settings for command
-    line execution.
-    </para>
-  </listitem>
-  </varlistentry>
-
-<!--
-  <varlistentry>
-  <term><command></command> <replaceable></replaceable></term>
-  <listitem>
-    <para>
-    </para>
-  </listitem>
-  </varlistentry>
--->
-
-</variablelist>
-
-</sect2>
-</sect1>
-
-
-</chapter>
-
-<chapter id="gui">
-    <title>Using the &FindBugs; GUI</title>
-
-    <para>
-        This chapter describes how to use the &FindBugs; graphical user interface (GUI).
-    </para>
-
-<sect1>
-<title>Creating a Project</title>
-<para>
-After you have started &FindBugs; using the <command>findbugs</command> command,
-choose the <menuchoice><guimenu>File</guimenu><guimenuitem>New Project</guimenuitem></menuchoice>
-menu item.  You will see a dialog which looks like this:
-<mediaobject>
-<imageobject>
-<imagedata fileref="project-dialog.png"  />
-</imageobject>
-</mediaobject>
-</para>
-
-<para>
-Use the "Add" button next to "Classpath to analyze" to select a Java archive
-file (zip, jar, ear, or war file) or directory containing java classes to analyze for bugs.  You may add multiple
-archives/directories.
-</para>
-
-<para>
-You can also add the source directories which contain
-the source code for the Java archives you are analyzing.  This will enable
-&FindBugs; to highlight the source code which contains a possible error.
-The source directories you add should be the roots of the Java
-package hierarchy.  For example, if your application is contained in the
-<varname>org.foobar.myapp</varname> package, you should add the
-parent directory of the <filename class="directory">org</filename> directory
-to the source directory list for the project.
-</para>
-
-<para>
-Another optional step is to add additional Jar files or directories as
-"Auxiliary classpath locations" entries.  You should do this if the archives and directories you are analyzing
-have references to other classes which are not included in the analyzed
-archives/directories and are not in the standard runtime classpath.  Some of the bug
-pattern detectors in &FindBugs; make use of class hierarchy information,
-so you will get more accurate results if the entire class hierarchy is
-available which &FindBugs; performs its analysis.
-</para>
-
-</sect1>
-
-<sect1>
-<title>Running the Analysis</title>
-<para>
-Once you have added all of the archives, directories, and source directories,
-click the "Analyze" button to analyze the classes contained in the
-Jar files.  Note that for a very large program on an older computer,
-this may take quite a while (tens of minutes).  A recent computer with
-ample memory will typically be able to analyze a large program in only a
-few minutes.
-</para>
-</sect1>
-
-<sect1>
-<title>Browsing Results</title>
-
-<para>
-When the analysis completes, you will see a screen like the following:
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="example-details.png"  />
-  </imageobject>
-</mediaobject>
-</para>
-
-<para>
-The upper left-hand pane of the window shows the bug tree; this is a hierarchical
-representation of all of the potential bugs detected in the analyzed
-Jar files.
-</para>
-
-<para>
-When you select a particular bug instance in the top pane, you will
-see a description of the bug in the "Details" tab of the bottom pane.
-In addition, the source code pane on the upper-right will show the
-program source code where the potential bug occurs, if source is available.
-In the above example, the bug is a stream object that is not closed.  The
-source code window highlights the line where the stream object is created.
-</para>
-
-<para>
-You may add a textual annotations to bug instances.  To do so, type them
-into the text box just below the hierarchical view.  You can type any
-information which you would like to record.  When you load and save bug
-results files, the annotations are preserved.
-</para>
-
-</sect1>
-
-<sect1>
-<title>Saving and Opening</title>
-
-<para>
-You may use the <menuchoice><guimenu>File</guimenu><guimenuitem>Save as...</guimenuitem></menuchoice>
-menu option to save your work.  To save your work, including the jar
-file lists you specified and all bug results, choose
-"FindBugs analysis results (.xml)" from the drop-down list in the
-"Save as..." dialog.  There are also options for saving just the jar
-file lists ("FindBugs project file (.fbp)") or just the results
-("FindBugs analysis file (.fba)").
-A saved file may be loaded with the
-<menuchoice><guimenu>File</guimenu><guimenuitem>Open...</guimenuitem></menuchoice>
-menu option.
-</para>
-
-</sect1>
-
-<!--
-<sect1 id="textui">
-<title>Using the &FindBugs;&trade; Command Line Interface</title>
-
-<para>
-The &FindBugs; Command Line Interface (or Text UI) can be used to
-analyze an application for bugs non-interactively.  Each bug instance will be
-reported on a single line.  All output is written to the standard output file descriptor.
-<xref linkend="filter" /> explains how bug reports may be filtered in order
-to get only the output you're interested in.
-</para>
-
-<para>
-See <xref linkend="commandLineOptions" /> for a description of how to invoke the
-Command Line Interface.
-</para>
-</sect1>
--->
-
-</chapter>
-
-<!--
-   **************************************************************************
-   Using the FindBugs Ant task
-   **************************************************************************
--->
-
-<chapter id="anttask">
-<title>Using the &FindBugs;&trade; &Ant; task</title>
-
-<para>
-This chapter describes how to integrate &FindBugs; into a build script
-for <ulink url="http://ant.apache.org/">&Ant;</ulink>, which is a popular Java build
-and deployment tool.  Using the &FindBugs; &Ant; task, your build script can
-automatically run &FindBugs; on your Java code.
-</para>
-
-<para>
-The &Ant; task was generously contributed by Mike Fagan.
-</para>
-
-<sect1>
-<title>Installing the &Ant; task</title>
-
-<para>
-To install the &Ant; task, simply copy <filename>&FBHome;/lib/findbugs-ant.jar</filename>
-into the <filename>lib</filename> subdirectory of your &Ant; installation.
-
-<note>
-<para>It is strongly recommended that you use the &Ant; task with the version
-of &FindBugs; it was included with.  We do not guarantee that the &Ant; task Jar file
-will work with any version of &FindBugs; other than the one it was included with.</para>
-</note>
-</para>
-
-</sect1>
-
-<sect1>
-<title>Modifying build.xml</title>
-
-<para>
-To incorporate &FindBugs; into <filename>build.xml</filename> (the build script
-for &Ant;), you first need to add a task definition.  This should appear as follows:
-
-<screen>
-  &lt;taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/&gt;
-</screen>
-
-The task definition specifies that when a <literal>findbugs</literal> element is
-seen in <filename>build.xml</filename>, it should use the indicated class to execute the task.
-</para>
-
-<para>
-After you have added the task definition, you can define a target
-which uses the <literal>findbugs</literal> task.  Here is an example
-which could be added to the <filename>build.xml</filename> for the
-Apache <ulink url="http://jakarta.apache.org/bcel/">BCEL</ulink> library.
-
-<screen>
-  &lt;property name="findbugs.home" value="/export/home/daveho/work/findbugs" /&gt;
-
-  &lt;target name="findbugs" depends="jar"&gt;
-    &lt;findbugs home="${findbugs.home}"
-              output="xml"
-              outputFile="bcel-fb.xml" &gt;
-      &lt;auxClasspath path="${basedir}/lib/Regex.jar" /&gt;
-      &lt;sourcePath path="${basedir}/src/java" /&gt;
-      &lt;class location="${basedir}/bin/bcel.jar" /&gt;
-    &lt;/findbugs&gt;
-  &lt;/target&gt;
-</screen>
-
-The <literal>findbugs</literal> element must have the <literal>home</literal>
-attribute set to the directory in which &FindBugs; is installed; in other words,
-&FBHome;.  See <xref linkend="installing" />.
-</para>
-
-<para>
-This target will execute &FindBugs; on <filename>bcel.jar</filename>, which is the
-Jar file produced by BCEL's build script.  (By making it depend on the "jar"
-target, we ensure that the library is fully compiled before running &FindBugs; on it.)
-The output of &FindBugs; will be saved in XML format to a file called
-<filename>bcel-fb.xml</filename>.
-An auxiliary Jar file, <filename>Regex.jar</filename>, is added to the aux classpath,
-because it is referenced by the main BCEL library.  A source path is specified
-so that the saved bug data will have accurate references to the BCEL source code.
-</para>
-</sect1>
-
-<sect1>
-<title>Executing the task</title>
-
-<para>
-Here is an example of invoking &Ant; from the command line, using the <literal>findbugs</literal>
-target defined above.
-
-<screen>
-  <prompt>[daveho@noir]$</prompt> <command>ant findbugs</command>
-  Buildfile: build.xml
-
-  init:
-
-  compile:
-
-  examples:
-
-  jar:
-
-  findbugs:
-   [findbugs] Running FindBugs...
-   [findbugs] Bugs were found
-   [findbugs] Output saved to bcel-fb.xml
-
-  BUILD SUCCESSFUL
-  Total time: 35 seconds
-</screen>
-
-In this case, because we saved the bug results in an XML file, we can
-use the &FindBugs; GUI to view the results; see <xref linkend="running"/>.
-</para>
-
-</sect1>
-
-<sect1>
-<title>Parameters</title>
-
-<para>This section describes the parameters that may be specified when
-using the &FindBugs; task.
-
-<variablelist>
-
-  <varlistentry>
-    <term><literal>class</literal></term>
-    <listitem>
-       <para>
-       A optional nested element specifying which classes to analyze.  The <literal>class</literal>
-       element must specify a <literal>location</literal> attribute which names the
-       archive file (jar, zip, etc.), directory, or class file to be analyzed.  Multiple <literal>class</literal>
-       elements may be specified as children of a single <literal>findbugs</literal> element.
-       </para>
-       <para>In addition to or instead of specifying a <literal>class</literal> element,
-       the  &FindBugs; task can contain one or more <literal>fileset</literal> element(s) that
-       specify files to be analyzed.
-       For example, you might use a fileset to specify that all of the jar files in a directory
-       should be analyzed.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>auxClasspath</literal></term>
-    <listitem>
-       <para>
-       An optional nested element which specifies a classpath (Jar files or directories)
-       containing classes used by the analyzed library or application, but which
-       you don't want to analyze.  It is specified the same way as
-       &Ant;'s <literal>classpath</literal> element for the Java task.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>sourcePath</literal></term>
-    <listitem>
-       <para>
-       An optional nested element which specifies a source directory path
-       containing source files used to compile the Java code being analyzed.
-       By specifying a source path, any generated XML bug output will have
-       complete source information, which allows later viewing in the
-       GUI.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>home</literal></term>
-    <listitem>
-       <para>
-       A required attribute.
-       It must be set to the name of the directory where &FindBugs; is installed.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>quietErrors</literal></term>
-    <listitem>
-       <para>
-       An optional boolean attribute.
-       If true, reports of serious analysis errors and missing classes will
-       be suppressed in the &FindBugs; output.  Default is false.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>reportLevel</literal></term>
-    <listitem>
-       <para>
-       An optional attribute.  It specifies
-       the confidence/priority threshold for reporting issues.  If set to "low", confidence is not used to filter bugs.
-       If set to "medium" (the default), low confidence issues are supressed.
-       If set to "high", only high confidence bugs are reported.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>output</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.
-       It specifies the output format.  If set to "xml" (the default), output
-       is in XML format.
-       If set to "xml:withMessages", output is in XML format augmented with
-       human-readable messages.  (You should use this format if you plan
-        to generate a report using an XSL stylesheet.)
-       If set to "html", output is in HTML formatted (default stylesheet is default.xsl).
-        If set to "text", output is in ad-hoc text format.
-       If set to "emacs", output is in <ulink url="http://www.gnu.org/software/emacs/">Emacs</ulink> error message format.
-       If set to "xdocs", output is xdoc XML for use with Apache Maven.
-       </para>
-    </listitem>
-  </varlistentry>
- <varlistentry>
-    <term><literal>stylesheet</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.
-      It specifies the stylesheet to use to generate html output when the output is set to html.
-      Stylesheets included in the FindBugs distribution include default.xsl, fancy.xsl, fancy-hist.xsl, plain.xsl, and summary.xsl.
-       The default value, if no stylesheet attribute is provided, is default.xsl.
-
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>sort</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.  If the <literal>output</literal> attribute
-       is set to "text", then the <literal>sort</literal> attribute specifies
-       whether or not reported bugs are sorted by class.  Default is true.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>outputFile</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.  If specified, names the output file in which the
-       &FindBugs; output will be saved.  By default, the output is displayed
-       directly by &Ant;.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>debug</literal></term>
-    <listitem>
-       <para>
-      Optional boolean attribute.  If set to true, &FindBugs; prints diagnostic
-      information about which classes are being analyzed, and which bug pattern
-      detectors are being run.  Default is false.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-      <term><literal>effort</literal></term>
-      <listitem>
-          <para>
-              Set the analysis effort level.  The value specified should be
-              one of <literal>min</literal>, <literal>default</literal>,
-              or <literal>max</literal>.  See <xref linkend="commandLineOptions"/>
-              for more information about setting the analysis level.
-          </para>
-      </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>conserveSpace</literal></term>
-    <listitem>
-       <para>Synonym for effort="min".</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>workHard</literal></term>
-    <listitem>
-       <para>Synonym for effort="max".</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>visitors</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.  It specifies a comma-separated list of bug detectors
-       which should be run.  The bug detectors are specified by their class names,
-       without any package qualification.  By default, all detectors which are
-       not disabled by default are run.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>omitVisitors</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.  It is like the <literal>visitors</literal> attribute,
-       except it specifies detectors which will <emphasis>not</emphasis> be run.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>excludeFilter</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.  It specifies the filename of a filter specifying bugs
-       to exclude from being reported.  See <xref linkend="filter" />.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>includeFilter</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.  It specifies the filename of a filter specifying
-       which bugs are reported.  See <xref linkend="filter" />.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>projectFile</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.  It specifies the name of a project file.
-       Project files are created by the &FindBugs; GUI, and specify classes,
-       aux classpath entries, and source directories.  By naming a project,
-       you don't need to specify any <literal>class</literal> elements,
-       nor do you need to specify <literal>auxClasspath</literal> or
-       <literal>sourcePath</literal> attributes.
-       See <xref linkend="running"/> for how to create a project.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>jvmargs</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.  It specifies any arguments that should be passed
-       to the Java virtual machine used to run &FindBugs;.  You may need to
-       use this attribute to specify flags to increase the amount of memory
-       the JVM may use if you are analyzing a very large program.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>systemProperty</literal></term>
-    <listitem>
-      <para>
-      Optional nested element.  If specified, defines a system property.
-      The <literal>name</literal> attribute specifies the name of the
-      system property, and the <literal>value</literal> attribute specifies
-      the value of the system property.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>timeout</literal></term>
-    <listitem>
-       <para>
-       Optional attribute.  It specifies the amount of time, in milliseconds,
-       that the Java process executing &FindBugs; may run before it is
-       assumed to be hung and is terminated.  The default is 600,000
-       milliseconds, which is ten minutes.  Note that for very large
-       programs, &FindBugs; may require more than ten minutes to complete its
-       analysis.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>failOnError</literal></term>
-    <listitem>
-       <para>
-       Optional boolean attribute.  Whether to abort the build process if there is an
-       error running &FindBugs;. Defaults to "false"
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>errorProperty</literal></term>
-    <listitem>
-       <para>
-       Optional attribute which specifies the name of a property that
-       will be set to "true" if an error occurs while running &FindBugs;.
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-      <term><literal>warningsProperty</literal></term>
-      <listitem>
-          <para>
-              Optional attribute which specifies the name of a property
-              that will be set to "true" if any warnings are reported by
-              &FindBugs; on the analyzed program.
-          </para>
-      </listitem>
-  </varlistentry>
-
-  <varlistentry>
-      <term><literal>userPreferencesFile</literal></term>
-      <listitem>
-          <para>
-              Optional attribute. Set the path of the user preferences file to use, which might override some of the options abobe.
-              Specifying <literal>userPreferencesFile</literal> as first argument would mean some later
-              options will override them, as last argument would mean they will override some previous options).
-              This rationale behind this option is to reuse FindBugs Eclipse project settings for command
-              line execution.
-            </para>
-      </listitem>
-  </varlistentry>
-
-</variablelist>
-
-
-</para>
-
-<!--
-
--->
-
-</sect1>
-
-</chapter>
-
-<!--
-   **************************************************************************
-   Using the FindBugs Eclipse plugin
-   **************************************************************************
--->
-
-<chapter id="eclipse">
-<title>Using the &FindBugs;&trade; Eclipse plugin</title>
-
-<para>
-The FindBugs Eclipse plugin allows &FindBugs; to be used within
-the <ulink url="http://www.eclipse.org/">Eclipse</ulink> IDE.
-The FindBugs Eclipse plugin was generously contributed by Peter Friese.
-Phil Crosby and Andrei Loskutov contributed major improvements
-to the plugin.
-</para>
-
-<sect1>
-<title>Requirements</title>
-
-<para>
-To use the &FindBugs; Plugin for Eclipse, you need Eclipse 3.3 or later,
-and JRE/JDK 1.5 or later.
-</para>
-
-</sect1>
-
-<sect1>
-<title>Installation</title>
-
-<para>
-  We provide update sites that allow you to automatically install FindBugs into Eclipse and also query and install updates.
-  There are three different update sites</para>
-
-  <variablelist><title>FindBugs Eclipse update sites</title>
-    <varlistentry><term><ulink url="http://findbugs.cs.umd.edu/eclipse/">http://findbugs.cs.umd.edu/eclipse/</ulink></term>
-
-    <listitem>
-      <para>
-       Only provides official releases of FindBugs.
-      </para>
-    </listitem>
-    </varlistentry>
-
-    <varlistentry><term><ulink url="http://findbugs.cs.umd.edu/eclipse-candidate/">http://findbugs.cs.umd.edu/eclipse-candidate/</ulink></term>
-
-      <listitem>
-        <para>
-          Provides official releases and release candidates of FindBugs.
-        </para>
-      </listitem>
-    </varlistentry>
-
-    <varlistentry><term><ulink url="http://findbugs.cs.umd.edu/eclipse-daily/">http://findbugs.cs.umd.edu/eclipse-daily/</ulink></term>
-
-      <listitem>
-        <para>
-         Provides the daily build of FindBugs. No testing other than that it compiles.
-        </para>
-      </listitem>
-    </varlistentry>
-    </variablelist>
-
-<para>You can also manually
-download the plugin from the following link:
-<ulink url="http://prdownloads.sourceforge.net/findbugs/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122.zip?download"
->http://prdownloads.sourceforge.net/findbugs/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122.zip?download</ulink>.
-Extract it in Eclipse's "plugins" subdirectory.
-(So &lt;eclipse_install_dir&gt;/plugins/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122/findbugs.png
-should be the path to the &FindBugs; logo.)
-
-</para>
-
-<para>
-Once the plugin is extracted, start Eclipse and choose
-<menuchoice>
-  <guimenu>Help</guimenu>
-  <guimenuitem>About Eclipse Platform</guimenuitem>
-  <guimenuitem>Plug-in Details</guimenuitem>
-</menuchoice>.
-You should find a plugin called "FindBugs Plug-in" provided by "FindBugs Project".
-</para>
-</sect1>
-
-<sect1>
-<title>Using the Plugin</title>
-
-<para>
-To get started, right click on a Java project in Package Explorer,
-and select the option labeled "Find Bugs".
-&FindBugs; will run, and problem markers (displayed in source
-windows, and also in the Eclipse Problems view) will point to
-locations in your code which have been identified as potential instances
-of bug patterns.
-</para>
-<para>
-You can also run &FindBugs; on existing java archives (jar, ear, zip, war etc). Simply
-create an empty Java project and attach archives to the project classpath. Having that, you
-can now right click the archive node in Package Explorer and select the option labeled
-"Find Bugs". If you additionally configure the source code locations for the binaries,
-&FindBugs; will also link the generated warnings to the right source files.
-</para>
-<para>
-You may customize how &FindBugs; runs by opening the Properties
-dialog for a Java project, and choosing the "Findbugs" property page.
-Options you may choose include:
-</para>
-
-<itemizedlist>
-  <listitem>
-    <para>
-    Enable or disable the "Run FindBugs Automatically" checkbox.
-    When enabled, FindBugs will run every time you modify a Java class
-    within the project.
-    </para>
-  </listitem>
-
-  <listitem>
-    <para>
-    Choose minimum warning priority and enabled bug categories.
-    These options will choose which warnings are shown.
-    For example, if you select the "Medium" warning priority,
-    only Medium and High priority warnings will be shown.
-    Similarly, if you uncheck the "Style" checkbox, no warnings
-    in the Style category will be displayed.
-    </para>
-  </listitem>
-
-  <listitem>
-    <para>
-    Select detectors.  The table allows you to select which detectors
-    you want to enable for your project.
-    </para>
-  </listitem>
-</itemizedlist>
-
-</sect1>
-
-<sect1>
-<title>Extending the Eclipse Plugin (since 2.0.0)</title>
-<para>
-Eclipse plugin supports contribution of custom &FindBugs; detectors (see also
-<ulink url="http://code.google.com/p/findbugs/source/browse/trunk/findbugs/src/doc/AddingDetectors.txt">AddingDetectors.txt</ulink>
-for more information). There are two ways to contribute custom plugins to the Eclipse:
-</para>
-<itemizedlist>
-  <listitem>
-    <para>
-    Existing standard &FindBugs; detector packages can be configured via
-    <menuchoice>
-        <guimenu>Window</guimenu>
-        <guimenuitem>Preferences</guimenuitem>
-        <guimenuitem>Java</guimenuitem>
-        <guimenuitem>&FindBugs;</guimenuitem>
-        <guimenuitem>Misc. Settings</guimenuitem>
-        <guimenuitem>Custom Detectors</guimenuitem>
-    </menuchoice>.
-    Simply specify there locations of any additional plugin libraries.
-    </para>
-
-    <para>
-    The benefit of this solution is that already existing detector packages can be
-    used "as is", and that you can quickly verify the quality of third party detectors.
-    The drawback is that you have to apply this settings in each
-    new Eclipse workspace, and this settings can't be shared between team members.
-    </para>
-  </listitem>
-
-  <listitem>
-    <para>
-    It is possible to contribute custom detectors via standard Eclipse extensions mechanism.
-    </para>
-
-    <para>
-    Please check the documentation of the
-    <ulink url="http://code.google.com/p/findbugs/source/browse/trunk/eclipsePlugin/schema/detectorPlugins.exsd">
-    findBugsEclipsePlugin/schema/detectorPlugins.exsd</ulink>
-    extension point how to update the plugin.xml. Existing &FindBugs; detector plugins can
-    be easily "extended" to be full featured &FindBugs; AND Eclipse detector plugins.
-    Usually you only need to add META-INF/MANIFEST.MF and plugin.xml to the jar and
-    update your build scripts to not to override the MANIFEST.MF during the build.
-    </para>
-
-    <para>
-    The benefit of this solution is that for given (shared) Eclipse installation
-    each team member has exactly same detectors set, and there is no need to configure
-    anything anymore. The (really small) precondition
-    is that you have to convert your existing detectors package to the valid
-    Eclipse plugin. You can do this even for third-party detector packages.
-    Another major differentiator is the ability to extend the default FindBugs
-    classpath at runtime with required third party libraries (see
-    <ulink url="http://code.google.com/p/findbugs/source/browse/trunk/findbugs/src/doc/AddingDetectors.txt">AddingDetectors.txt</ulink>
-    for more information).
-    </para>
-  </listitem>
-
-</itemizedlist>
-
-</sect1>
-
-<sect1>
-<title>Troubleshooting</title>
-
-<para>
-This section lists common problems with the plugin and (if known) how to resolve them.
-</para>
-
-<itemizedlist>
-  <listitem>
-    <para>
-    If you see OutOfMemory error dialogs after starting &FindBugs; analysis in Eclipse,
-    please increase JVM available memory: change eclipse.ini and add the lines below
-    to the end of the file:
-    <programlisting>
-    -vmargs
-    -Xmx1000m
-    </programlisting>
-    Important: the configuration arguments starting with the line "-vmargs" must
-    be last lines in the eclipse.ini file, and only one argument per line is allowed!
-    </para>
-  </listitem>
-  <listitem>
-    <para>
-    If you do not see any &FindBugs; problem markers (in your source
-    windows or in the Problems View), you may need to change your
-    Problems View filter settings.  See
-    <ulink url="http://findbugs.sourceforge.net/FAQ.html#q7">http://findbugs.sourceforge.net/FAQ.html#q7</ulink> for more information.
-    </para>
-  </listitem>
-
-</itemizedlist>
-
-</sect1>
-
-
-</chapter>
-
-
-<!--
-   **************************************************************************
-   Filter files
-   **************************************************************************
--->
-
-<chapter id="filter">
-<title>Filter Files</title>
-
-<para>
-Filter files may be used to include or exclude bug reports for particular classes
-and methods.  This chapter explains how to use filter files.
-
-<note>
-<title>Planned Features</title>
-<para>
-  Filters are currently only supported by the Command Line interface.
-  Eventually, filter support will be added to the GUI.
-</para>
-</note>
-</para>
-
-
-<sect1>
-<title>Introduction to Filter Files</title>
-
-<para>
-Conceptually, a filter matches bug instances against a set of criteria.
-By defining a filter, you can select bug instances for special treatment;
-for example, to exclude or include them in a report.
-</para>
-
-<para>
-A filter file is an <ulink url="http://www.w3.org/XML/">XML</ulink> document with a top-level <literal>FindBugsFilter</literal> element
-which has some number of <literal>Match</literal> elements as children.  Each <literal>Match</literal>
-element represents a predicate which is applied to generated bug instances.
-Usually, a filter will be used to exclude bug instances.  For example:
-
-<screen>
-<prompt>$ </prompt><command>findbugs -textui -exclude <replaceable>myExcludeFilter.xml</replaceable> <replaceable>myApp.jar</replaceable></command>
-</screen>
-
-However, a filter could also be used to select bug instances to specifically
-report:
-
-<screen>
-<prompt>$ </prompt><command>findbugs -textui -include <replaceable>myIncludeFilter.xml</replaceable> <replaceable>myApp.jar</replaceable></command>
-</screen>
-</para>
-
-<para>
-<literal>Match</literal> elements contain children, which are conjuncts of the predicate.
-In other words, each of the children must be true for the predicate to be true.
-</para>
-
-</sect1>
-
-<sect1>
-<title>Types of Match clauses</title>
-
-<variablelist>
- <varlistentry>
-   <term><literal>&lt;Bug&gt;</literal></term>
-   <listitem><para>
-            This element specifies a particular bug pattern or patterns to match.
-            The <literal>pattern</literal> attribute is a comma-separated list of
-            bug pattern types.  You can find the bug pattern types for particular
-            warnings by looking at the output produced by the <command>-xml</command>
-            output option (the <literal>type</literal> attribute of <literal>BugInstance</literal>
-            elements), or from the <ulink url="../bugDescriptions.html">bug
-            descriptions document</ulink>.
-   </para><para>
-               For more coarse-grained matching, use <literal>code</literal> attribute. It takes
-               a comma-separated list of bug abbreviations. For most-coarse grained matching use
-               <literal>category</literal> attriute, that takes a comma separated list of bug category names:
-               <literal>CORRECTNESS</literal>, <literal>MT_CORRECTNESS</literal>,
-               <literal>BAD_PRACTICICE</literal>, <literal>PERFORMANCE</literal>, <literal>STYLE</literal>.
-   </para><para>
-               If more than one of the attributes mentioned above are specified on the same
-               <literal>&lt;Bug&gt;</literal> element, all bug patterns that match either one of specified
-               pattern names, or abreviations, or categories will be matched.
-   </para><para>
-               As a backwards compatibility measure, <literal>&lt;BugPattern&gt;</literal> and
-               <literal>&lt;BugCode&gt;</literal> elements may be used instead of
-               <literal>&lt;Bug&gt;</literal> element. Each of these uses a
-               <literal>name</literal> attribute for specifying accepted values list. Support for these
-               elements may be removed in a future release.
-   </para></listitem>
- </varlistentry>
-
- <varlistentry>
-    <term><literal>&lt;Confidence&gt;</literal></term>
-    <listitem>
-        <para>
-            This element matches warnings with a particular bug confidence.
-            The <literal>value</literal> attribute should be an integer value:
-            1 to match high-confidence warnings, 2 to match normal-confidence warnings,
-            or 3 to match low-confidence warnings. &lt;Confidence&gt; replaced
-            &lt;Priority&gt; in 2.0.0 release.
-        </para>
-    </listitem>
- </varlistentry>
-
- <varlistentry>
-    <term><literal>&lt;Priority&gt;</literal></term>
-    <listitem>
-        <para>
-            Same as <literal>&lt;Confidence&gt;</literal>, exists for backward compatibility.
-        </para>
-    </listitem>
- </varlistentry>
-
- <varlistentry>
-    <term><literal>&lt;Rank&gt;</literal></term>
-    <listitem>
-        <para>
-            This element matches warnings with a particular bug rank.
-            The <literal>value</literal> attribute should be an integer value
-            between 1 and 20, where 1 to 4 are scariest, 5 to 9 scary, 10 to 14 troubling,
-            and 15 to 20 of concern bugs.
-        </para>
-    </listitem>
- </varlistentry>
-
- <varlistentry>
-   <term><literal>&lt;Package&gt;</literal></term>
-    <listitem>
-        <para>
-            This element matches warnings associated with classes within the package specified
-            using <literal>name</literal> attribute. Nested packages are not included (along the
-            lines of Java import statement). However matching multiple packages can be achieved
-            easily using regex name match.
-        </para>
-    </listitem>
-  </varlistentry>
-
- <varlistentry>
-   <term><literal>&lt;Class&gt;</literal></term>
-    <listitem>
-        <para>
-            This element matches warnings associated with a particular class. The
-            <literal>name</literal> attribute is used to specify the exact or regex match pattern
-            for the class name.
-        </para>
-
-        <para>
-            As a backward compatibility measure, instead of element of this type, you can use
-             <literal>class</literal> attribute on a <literal>Match</literal> element to specify
-             exact an class name or <literal>classregex</literal> attribute to specify a regular
-             expression to match the class name against.
-        </para>
-
-        <para>
-            If the <literal>Match</literal> element contains neither a <literal>Class</literal> element,
-            nor a <literal>class</literal> / <literal>classregex</literal> attribute, the predicate will apply
-            to all classes. Such predicate is likely to match more bug instances than you want, unless it is
-            refined further down with apropriate method or field predicates.
-        </para>
-    </listitem>
- </varlistentry>
-
- <varlistentry>
-   <term><literal>&lt;Method&gt;</literal></term>
-
-   <listitem><para>This element specifies a method.  The <literal>name</literal> is used to specify
-   the exact or regex match pattern for the method name.
-   The <literal>params</literal> attribute is a comma-separated list
-   of the types of the method's parameters.  The <literal>returns</literal> attribute is
-   the method's return type.  In <literal>params</literal> and <literal>returns</literal>, class names
-   must be fully qualified. (E.g., "java.lang.String" instead of just
-   "String".) If one of the latter attributes is specified the other is required for creating a method signature.
-   Note that you can provide either <literal>name</literal> attribute or <literal>params</literal>
-   and <literal>returns</literal> attributes or all three of them. This way you can provide various kinds of
-   name and signature based matches.
-   </para></listitem>
- </varlistentry>
-
- <varlistentry>
-   <term><literal>&lt;Field&gt;</literal></term>
-
-   <listitem><para>This element specifies a field. The <literal>name</literal> attribute is is used to specify
-   the exact or regex match pattern for the field name. You can also filter fields according to their signature -
-   use <literal>type</literal> attribute to specify fully qualified type of the field. You can specify eiter or both
-   of these attributes in order to perform name / signature based matches.
-   </para></listitem>
- </varlistentry>
-
-   <varlistentry>
-   <term><literal>&lt;Local&gt;</literal></term>
-
-   <listitem><para>This element specifies a local variable. The <literal>name</literal> attribute is is used to specify
-   the exact or regex match pattern for the local variable name. Local variables are variables defined within a method.
-   </para></listitem>
- </varlistentry>
-
- <varlistentry>
-   <term><literal>&lt;Or&gt;</literal></term>
-    <listitem><para>
-   This element combines <literal>Match</literal> clauses as disjuncts.  I.e., you can put two
-   <literal>Method</literal> elements in an <literal>Or</literal> clause in order to match either method.
-   </para></listitem>
- </varlistentry>
- <varlistentry>
-   <term><literal>&lt;And&gt;</literal></term>
-    <listitem><para>
-   This element combines <literal>Match</literal> clauses which both must evaluate to true.  I.e., you can put
-   <literal>Bug</literal> and <literal>Priority</literal> elements in an <literal>And</literal> clause in order
-   to match specific bugs with given priority only.
-   </para></listitem>
- </varlistentry>
- <varlistentry>
-   <term><literal>&lt;Not&gt;</literal></term>
-    <listitem><para>
-   This element inverts the included child <literal>Match</literal>. I.e., you can put a
-   <literal>Bug</literal> element in a <literal>Not</literal> clause in order to match any bug
-   excluding the given one.
-   </para></listitem>
- </varlistentry>
-</variablelist>
-
-</sect1>
-
-<sect1>
-<title>Java element name matching</title>
-
-<para>
-If the <literal>name</literal> attribute of <literal>Class</literal>, <literal>Method</literal> or
-<literal>Field</literal> starts with the ~ character the rest of attribute content is interpreted as
-a Java regular expression that is matched against the names of the Java element in question.
-</para>
-
-<para>
-Note that the pattern is matched against whole element name and therefore .* clauses need to be used
-at pattern beginning and/or end to perform substring matching.
-</para>
-
-<para>
-See <ulink url="http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html"><literal>java.util.regex.Pattern</literal></ulink>
-documentation for pattern syntax.
-</para>
-</sect1>
-
-<sect1>
-<title>Caveats</title>
-
-<para>
-<literal>Match</literal> clauses can only match information that is actually contained in the
-bug instances.  Every bug instance has a class, so in general, excluding
-bugs by class will work.
-</para>
-
-<para>
-Some bug instances have two (or more) classes.  For example, the DE (dropped exception)
-bugs report both the class containing the method where the dropped exception
-happens, and the class which represents the type of the dropped exception.
-Only the <emphasis>first</emphasis> (primary) class is matched against <literal>Match</literal> clauses.
-So, for example, if you want to suppress IC (initialization circularity)
-reports for classes "com.foobar.A" and "com.foobar.B", you would use
-two <literal>Match</literal> clauses:
-
-<programlisting>
-   &lt;Match&gt;
-      &lt;Class name="com.foobar.A" /&gt;
-      &lt;Bug code="IC" /&gt;
-   &lt;/Match&gt;
-
-   &lt;Match&gt;
-      &lt;Class name="com.foobar.B" /&gt;
-      &lt;Bug code="IC" /&gt;
-   &lt;/Match&gt;
-</programlisting>
-
-By explicitly matching both classes, you ensure that the IC bug instance will be
-matched regardless of which class involved in the circularity happens to be
-listed first in the bug instance.  (Of course, this approach might accidentally
-supress circularities involving "com.foobar.A" or "com.foobar.B" and a third
-class.)
-</para>
-
-<para>
-Many kinds of bugs report what method they occur in.  For those bug instances,
-you can put <literal>Method</literal> clauses in the <literal>Match</literal> element and they should work
-as expected.
-</para>
-
-</sect1>
-
-<sect1>
-<title>Examples</title>
-
-<para>
-  1. Match all bug reports for a class.
-
-<programlisting>
-<![CDATA[
-     <Match>
-       <Class name="com.foobar.MyClass" />
-     </Match>
-]]>
-</programlisting>
-
-</para>
-
-<para>
-  2. Match certain tests from a class by specifying their abbreviations.
-<programlisting>
-<![CDATA[
-     <Match>
-       <Class name="com.foobar.MyClass"/ >
-       <Bug code="DE,UrF,SIC" />
-     </Match>
-]]>
-</programlisting>
-</para>
-
-<para>
-  3. Match certain tests from all classes by specifying their abbreviations.
-
-<programlisting>
-<![CDATA[
-     <Match>
-       <Bug code="DE,UrF,SIC" />
-     </Match>
-]]>
-</programlisting>
-</para>
-
-<para>
-  4. Match certain tests from all classes by specifying their category.
-
-<programlisting>
-<![CDATA[
-     <Match>
-       <Bug category="PERFORMANCE" />
-     </Match>
-]]>
-</programlisting>
-</para>
-
-<para>
-  5. Match bug types from specified methods of a class by their abbreviations.
-
-<programlisting>
-<![CDATA[
-     <Match>
-       <Class name="com.foobar.MyClass" />
-       <Or>
-         <Method name="frob" params="int,java.lang.String" returns="void" />
-         <Method name="blat" params="" returns="boolean" />
-       </Or>
-       <Bug code="DC" />
-     </Match>
-]]>
-</programlisting>
-</para>
-
-<para>
-    6. Match a particular bug pattern in a particular method.
-
-<programlisting>
-<![CDATA[
-    <!-- A method with an open stream false positive. -->
-    <Match>
-      <Class name="com.foobar.MyClass" />
-      <Method name="writeDataToFile" />
-      <Bug pattern="OS_OPEN_STREAM" />
-    </Match>
-]]>
-</programlisting>
-</para>
-
-<para>
-    7. Match a particular bug pattern with a given priority in a particular method.
-
-<programlisting>
-<![CDATA[
-    <!-- A method with a dead local store false positive (medium priority). -->
-    <Match>
-      <Class name="com.foobar.MyClass" />
-      <Method name="someMethod" />
-      <Bug pattern="DLS_DEAD_LOCAL_STORE" />
-      <Priority value="2" />
-    </Match>
-]]>
-</programlisting>
-</para>
-
-<para>
-    8. Match minor bugs introduced by AspectJ compiler (you are probably not interested in these unless
-    you are an AspectJ developer).
-
-<programlisting>
-<![CDATA[
-    <Match>
-      <Class name="~.*\$AjcClosure\d+" />
-      <Bug pattern="DLS_DEAD_LOCAL_STORE" />
-      <Method name="run" />
-    </Match>
-    <Match>
-      <Bug pattern="UUF_UNUSED_FIELD" />
-      <Field name="~ajc\$.*" />
-    </Match>
-]]>
-</programlisting>
-</para>
-
-<para>
-    9. Match bugs in specific parts of the code base
-
-<programlisting>
-<![CDATA[
-    <!-- match unused fields warnings in Messages classes in all packages -->
-    <Match>
-      <Class name="~.*\.Messages" />
-      <Bug code="UUF" />
-    </Match>
-    <!-- match mutable statics warnings in all internal packages -->
-    <Match>
-      <Package name="~.*\.internal" />
-      <Bug code="MS" />
-    </Match>
-    <!-- match anonymoous inner classes warnings in ui package hierarchy -->
-    <Match>
-      <Package name="~com\.foobar\.fooproject\.ui.*" />
-      <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON" />
-    </Match>
-]]>
-</programlisting>
-</para>
-
-<para>
-    10. Match bugs on fields or methods with specific signatures
-<programlisting>
-<![CDATA[
-    <!-- match System.exit(...) usage warnings in void main(String[]) methods in all classes -->
-    <Match>
-      <Method returns="void" name="main" params="java.lang.String[]" />
-      <Bug pattern="DM_EXIT" />
-    </Match>
-    <!-- match UuF warnings on fields of type com.foobar.DebugInfo on all classes -->
-    <Match>
-      <Field type="com.foobar.DebugInfo" />
-      <Bug code="UuF" />
-    </Match>
-]]>
-</programlisting>
-</para>
-
-
-<para>
-    11. Match bugs using the Not filter operator
-<programlisting>
-<![CDATA[
-<!-- ignore all bugs in test classes, except for those bugs specifically relating to JUnit tests -->
-<!-- i.e. filter bug if ( classIsJUnitTest && ! bugIsRelatedToJUnit ) -->
-<Match>
-  <!-- the Match filter is equivalent to a logical 'And' -->
-
-  <Class name="~.*\.*Test" />
-  <!-- test classes are suffixed by 'Test' -->
-
-  <Not>
-      <Bug code="IJU" /> <!-- 'IJU' is the code for bugs related to JUnit test code -->
-  </Not>
-</Match>
-]]>
-</programlisting>
-</para>
-
-</sect1>
-
-<sect1>
-<title>Complete Example</title>
-
-<programlisting>
-<![CDATA[
-<FindBugsFilter>
-     <Match>
-       <Class name="com.foobar.ClassNotToBeAnalyzed" />
-     </Match>
-
-     <Match>
-       <Class name="com.foobar.ClassWithSomeBugsMatched" />
-       <Bug code="DE,UrF,SIC" />
-     </Match>
-
-     <!-- Match all XYZ violations. -->
-     <Match>
-       <Bug code="XYZ" />
-     </Match>
-
-     <!-- Match all doublecheck violations in these methods of "AnotherClass". -->
-     <Match>
-       <Class name="com.foobar.AnotherClass" />
-       <Or>
-         <Method name="nonOverloadedMethod" />
-         <Method name="frob" params="int,java.lang.String" returns="void" />
-         <Method name="blat" params="" returns="boolean" />
-       </Or>
-       <Bug code="DC" />
-     </Match>
-
-     <!-- A method with a dead local store false positive (medium priority). -->
-     <Match>
-       <Class name="com.foobar.MyClass" />
-       <Method name="someMethod" />
-       <Bug pattern="DLS_DEAD_LOCAL_STORE" />
-       <Priority value="2" />
-     </Match>
-
-     <!-- All bugs in test classes, except for JUnit-specific bugs -->
-     <Match>
-      <Class name="~.*\.*Test" />
-      <Not>
-          <Bug code="IJU" />
-      </Not>
-     </Match>
-
-</FindBugsFilter>
-]]>
-</programlisting>
-
-</sect1>
-
-
-</chapter>
-
-
-<!--
-   **************************************************************************
-   Analysis properties
-   **************************************************************************
--->
-
-<chapter id="analysisprops">
-<title>Analysis Properties</title>
-
-<para>
-&FindBugs; allows several aspects of the analyses it performs to be
-customized.  System properties are used to configure these options.
-This chapter describes the configurable analysis options.
-</para>
-
-<para>
-The analysis options have two main purposes.  First, they allow you
-to inform &FindBugs; about the meaning of methods in your application,
-so that it can produce more accurate results, or produce fewer
-false warnings.  Second, they allow you to configure the precision
-of the analysis performed.  Reducing analysis precision can save
-memory and analysis time, at the expense of missing some real bugs,
-or producing more false warnings.
-</para>
-
-<para>
-The analysis options are set using the <command>-property</command>
-command line option.  For example:
-<screen>
-<prompt>$ </prompt><command>findbugs -textui -property "cfg.noprune=true" <replaceable>myApp.jar</replaceable></command>
-</screen>
-</para>
-
-<para>
-The list of configurable analysis properties is shown in
-<xref linkend="analysisproptable"/>.
-</para>
-
-<table id="analysisproptable">
-<title>Configurable Analysis Properties</title>
-<tgroup cols="3" align="left">
-  <thead>
-    <row>
-      <entry>Property Name</entry>
-      <entry>Value</entry>
-      <entry>Meaning</entry>
-    </row>
-  </thead>
-  <tbody>
-<!--
-    <row>
-      <entry>cfg.noprune</entry>
-      <entry>true or false</entry>
-      <entry>If true, infeasible exception edges are not pruned from
-      the control flow graphs of analyzed methods.  This option
-      increases the speed of the analysis (by about 20%-30%),
-      but causes some detectors to produce more false warnings.</entry>
-    </row>
--->
-    <row>
-      <entry>findbugs.assertionmethods</entry>
-      <entry>Comma-separated list of fully qualified method names:
-      e.g., "com.foo.MyClass.checkAssertion"</entry>
-      <entry>This property specifies the names of methods that are used
-      to check program assertions.  Specifying these methods allows
-      the null pointer dereference bug detector to avoid reporting
-      false warnings for values which are checked by assertion
-      methods.</entry>
-    </row>
-    <row>
-      <entry>findbugs.de.comment</entry>
-      <entry>true or false</entry>
-      <entry>If true, the DroppedException detector scans source code
-        for empty catch blocks for a comment, and if one is found, does
-        not report a warning.</entry>
-    </row>
-    <row>
-      <entry>findbugs.maskedfields.locals</entry>
-      <entry>true or false</entry>
-      <entry>If true, emit low priority warnings for local variables
-      which obscure fields.  Default is false.</entry>
-    </row>
-    <row>
-      <entry>findbugs.nullderef.assumensp</entry>
-      <entry>true or false</entry>
-      <entry>not used
-      (intention: If true, the null dereference detector assumes that any
-      reference value returned from a method or passed to a method
-      in a parameter might be null.  Default is false.  Note that
-      enabling this property will very likely cause a large number
-      of false warnings to be produced.)</entry>
-    </row>
-    <row>
-      <entry>findbugs.refcomp.reportAll</entry>
-      <entry>true or false</entry>
-      <entry>If true, all suspicious reference comparisons
-        using the == and != operators are reported.&nbsp; If false,
-        only one such warning is issued per method.&nbsp; Default
-        is false.</entry>
-    </row>
-    <row>
-      <entry>findbugs.sf.comment</entry>
-      <entry>true or false</entry>
-      <entry>If true, the SwitchFallthrough detector will only report
-      warnings for cases where the source code does not have a comment
-      containing the words "fall" or "nobreak".  (An accurate source
-      path must be used for this feature to work correctly.)
-      This helps find cases where the switch fallthrough is likely
-      to be unintentional.</entry>
-    </row>
-<!-- see others at src/doc/manual/sysprops.html
-    <row>
-      <entry></entry>
-      <entry></entry>
-      <entry></entry>
-    </row>
--->
-  </tbody>
-</tgroup>
-</table>
-
-</chapter>
-
-<!--
-    **************************************************************************
-   Annotations
-   ***************************************************************************
--->
-
-<chapter id="annotations">
-<title>Annotations</title>
-
-<para>
-&FindBugs; supports several annotations to express the developer's intent
-so that FindBugs can issue warnings more appropriately. You need to use
-Java 5 to use annotations, and must place the annotations.jar and jsr305.jar
-files in the classpath while compiling your program.
-</para>
-
-<variablelist>
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.CheckForNull</command></term>
-    <listitem>
-<command>[Target]</command> Field, Method, Parameter
-    </listitem>
-    <listitem>
-      <para>
-The annotated element might be null, and uses of the element should check for null.
-When this annotation is applied to a method it applies to the method return value.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.CheckReturnValue</command></term>
-    <listitem>
-      <command>[Target]</command> Method, Constructor
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>priority:</command>The priority of the warning (HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM.
-            </para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>explanation:</command>A textual explaination of why the return value should be checked. Default value:"".
-            </para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-This annotation is used to denote a method whose return value should always be checked after invoking the method.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.DefaultAnnotation</command></term>
-    <listitem>
-      <command>[Target]</command> Type, Package
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>Annotation class objects. More than one class can be specified.
-            </para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>priority:</command>Default priority(HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM.
-            </para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-Indicates that all members of the class or package should be annotated with the default
-value of the supplied annotation classes. This would be used for behavior annotations
-such as @NonNull, @CheckForNull, or @CheckReturnValue. In particular, you can use
-@DefaultAnnotation(NonNull.class) on a class or package, and then use @Nullable only
-on those parameters, methods or fields that you want to allow to be null.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.DefaultAnnotationForFields</command></term>
-    <listitem>
-      <command>[Target]</command> Type, Package
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>Annotation class objects. More than one class can be specified.
-            </para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>priority:</command>Default priority(HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM.
-            </para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-This is same as the DefaultAnnotation except it only applys to fields.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.DefaultAnnotationForMethods</command></term>
-    <listitem>
-      <command>[Target]</command> Type, Package
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>Annotation class objects. More than one class can be specified.
-            </para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>priority:</command>Default priority(HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM.
-            </para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-This is same as the DefaultAnnotation except it only applys to methods.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.DefaultAnnotationForParameters</command></term>
-    <listitem>
-      <command>[Target]</command> Type, Package
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>Annotation class objects. More than one class can be specified.
-            </para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>priority:</command>Default priority(HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM.
-            </para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-This is same as the DefaultAnnotation except it only applys to method parameters.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.NonNull</command></term>
-    <listitem>
-      <command>[Target]</command> Field, Method, Parameter
-    </listitem>
-    <listitem>
-      <para>
-The annotated element must not be null.
-Annotated fields must not be null after construction has completed. Annotated methods must have non-null return values.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.Nullable</command></term>
-    <listitem>
-      <command>[Target]</command> Field, Method, Parameter
-    </listitem>
-    <listitem>
-      <para>
-The annotated element could be null under some circumstances. In general, this means
-developers will have to read the documentation to determine when a null value is
-acceptable and whether it is neccessary to check for a null value.  FindBugs will
-treat the annotated items as though they had no annotation.
-      </para>
-      <para>
-In pratice this annotation is useful only for overriding an overarching NonNull
-annotation.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.OverrideMustInvoke</command></term>
-    <listitem>
-      <command>[Target]</command> Method
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>Specify when the super invocation should be
-              performed (FIRST, ANYTIME, LAST). Default value:ANYTIME.
-            </para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-Used to annotate a method that, if overridden, must (or should) be invoke super
-in the overriding method. Examples of such methods include finalize() and clone().
-The argument to the method indicates when the super invocation should occur:
-at any time, at the beginning of the overriding method, or at the end of the overriding method.
-(This anotation is not implmemented in FindBugs as of September 8, 2006).
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.PossiblyNull</command></term>
-    <listitem>
-      <para>
-This annotation is deprecated. Use CheckForNull instead.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.SuppressWarnings</command></term>
-    <listitem>
-      <command>[Target]</command> Type, Field, Method, Parameter, Constructor, Package
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>The name of the warning. More than one name can be specified.
-            </para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>justification:</command>Reason why the warning should be ignored. Default value:"".
-            </para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-The set of warnings that are to be suppressed by the compiler in the annotated element.
-Duplicate names are permitted.  The second and successive occurrences of a name are ignored.
-The presence of unrecognized warning names is <emphasis>not</emphasis> an error: Compilers
-must ignore any warning names they do not recognize. They are, however, free to emit a
-warning if an annotation contains an unrecognized warning name. Compiler vendors should
-document the warning names they support in conjunction with this annotation type. They
-are encouraged to cooperate to ensure that the same names work across multiple compilers.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.UnknownNullness</command></term>
-    <listitem>
-      <command>[Target]</command> Field, Method, Parameter
-    </listitem>
-    <listitem>
-      <para>
-Used to indicate that the nullness of the target is unknown, or my vary in unknown ways in subclasses.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.UnknownNullness</command></term>
-    <listitem>
-      <command>[Target]</command> Field, Method, Parameter
-    </listitem>
-    <listitem>
-      <para>
-Used to indicate that the nullness of the target is unknown, or my vary in unknown ways in subclasses.
-      </para>
-    </listitem>
-  </varlistentry>
-</variablelist>
-
-<para>
- &FindBugs; also supports the following annotations:
-<itemizedlist>
-  <listitem>net.jcip.annotations.GuardedBy</listitem>
-  <listitem>net.jcip.annotations.Immutable</listitem>
-  <listitem>net.jcip.annotations.NotThreadSafe</listitem>
-  <listitem>net.jcip.annotations.ThreadSafe</listitem>
-</itemizedlist>
-</para>
-<para>
-You can refer the JCIP annotation <ulink url="http://jcip.net/annotations/doc/index.html">
-API documentation</ulink> at <ulink url="http://jcip.net/">Java Concurrency in Practice</ulink>.
-</para>
-</chapter>
-
-<!--
-   **************************************************************************
-   Using rejarForAnalysis
-   **************************************************************************
--->
-
-<chapter id="rejarForAnalysis">
-<title>Using rejarForAnalysis</title>
-
-<para>
-If your project consists of many jarfiles or the jarfiles are scattered
-over many directories, you may wish to use the <command>rejarForAnalysis
-</command> script to make
-FindBugs invocation easier.  The script collects many jarfiles and combines them
-into a single, large jarfile that can then be easily passed to FindBugs for
-analysis.  This can be particularly useful in combination with the 'find' command
-on unix systems; e.g. <command>find . -name '*.jar' | xargs rejarForAnalysis
-</command>.
-</para>
-
-<para>
-The <command>rejarForAnalysis</command> script
-can also be used to split a very large project up into a set of jarfiles with
-the project classfiles evenly divided between them.  This is useful when running
-FindBugs on the entire project is not practical due to time or memory consumption.
-Instead of running FindBugs on the entire project, you may use <command>
-rejarForAnalysis</command> build one large, all-inclusive jarfile
-containing all classes, invoke <command>rejarForAnalysis</command>
-again to split the project into multiple jarfiles, then run FindBugs
-on each divided jarfiles in turn, specifying the the all-inclusive jarfile in
-the <command>-auxclasspath</command>.
-</para>
-
-<para>
-These are the options accepted by the <command>rejarForAnalysis</command> script:
-</para>
-
-<variablelist>
-  <varlistentry>
-    <term><command>-maxAge</command> <replaceable>days</replaceable></term>
-    <listitem>
-       <para>
-       Maximum age in days (ignore jar files older than this).
-       </para>
-    </listitem>
-  </varlistentry>
-  <varlistentry>
-    <term><command>-inputFileList</command> <replaceable>filename</replaceable></term>
-    <listitem>
-       <para>
-       Text file containing names of jar files.
-       </para>
-    </listitem>
-  </varlistentry>
-  <varlistentry>
-    <term><command>-maxClasses</command> <replaceable>num</replaceable></term>
-    <listitem>
-       <para>
-       Maximum number of classes per analysis*.jar file.
-       </para>
-    </listitem>
-  </varlistentry>
-  <varlistentry>
-    <term><command>-prefix</command> <replaceable>class name prefix</replaceable></term>
-    <listitem>
-       <para>
-       Prefix of class names that should be analyzed (e.g., edu.umd.cs.).
-       </para>
-    </listitem>
-  </varlistentry>
-</variablelist>
-</chapter>
-
-<!--
-   **************************************************************************
-   Data mining
-   **************************************************************************
--->
-
-<chapter id="datamining">
-    <title>Data mining of bugs with &FindBugs;&trade;</title>
-
-<para>
-FindBugs incorporates an ability to perform sophisticated queries on bug
-databases and track warnings across multiple versions of code being
-studied, allowing you to do things such as seeing when a bug was first introduced, examining
-just the warnings that have been introduced since the last release, or graphing the number
-of infinite recursive loops in your code over time.</para>
-
-<para>
-These techniques all depend upon the XML format used by FindBugs for storing warnings.
-These XML files usually contain just the warnings from one particular analysis run, but
-they can also store the results from analyzing a sequence of software builds or versions.
-    </para>
-
-<para>
-Any FindBugs XML bug database contains a version name and timestamp.
-FindBugs tries to compute a timestamp from the timestamps of the files that
-are analyzed (e.g., the timestamp is intended to be the time the class files
-were generated, not analyzed). Each bug database also contains a version name.
-Both the version name and timestamp can be set manually using the
-<command>setBugDatabaseInfo</command> (<xref linkend="setBugDatabaseInfo" />) command.
-    </para>
-
-<para>A multiversion bug database assigns a sequence number to each version of
-the analyzed code. These sequence numbers are simply successive integers,
-starting at 0 (e.g., a bug database for 4 versions of the code will contain
-versions 0..3). The bug database will also record the name and timestamp for
-each version. The <command>filterBugs</command> command allows you to refer
-to a version by sequence number, name or timestamp.</para>
-
-<para>
-You can take a sequence (or pair) of single version bug databases and create
-from them a multiversion bug database, or combine a multiversion bug database
-with a sequence of later single-version bug databases.</para>
-
-<para>
-Some of these commands can be invoked as ant tasks.  See below for specifics
-on how to invoke them and what attributes and arguments they take.  All of
-the examples assume that the <literal>findbugs.lib</literal>
-<literal>refid</literal> is set correctly.  Here is one way to set it:
-</para>
-
-<programlisting>
-<![CDATA[
-   <!-- findbugs task definition -->
-   <property name="findbugs.home" value="/your/path/to/findbugs" />
-   <path id="findbugs.lib">
-      <fileset dir="${findbugs.home}/lib">
-         <include name="findbugs-ant.jar"/>
-      </fileset>
-   </path>
-]]>
-</programlisting>
-
-    <sect1 id="commands">
-        <title>Commands</title>
-
-        <para>
-All tools for FindBugs data mining are can be invoked from the command line,
-and some of the more useful tools can also be invoked from an
-ant build file.</para>
-
-<para>
-Briefly, the command-line tools are:</para>
-
-        <variablelist>
-            <varlistentry>
-                <term><command><link linkend="unionBugs">unionBugs</link></command></term>
-                <listitem>
-                    <para>
-                         combine the results from separate analysis of disjoint
-        classes
-                    </para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="computeBugHistory">computeBugHistory</link></command></term>
-                <listitem>
-                    <para>Merge bug warnings from multiple versions of
-            analyzed code into
-            a single multiversion bug database. This can either be used
-            to add more versions to an existing multiversion database,
-            or to create a multiversion database from a sequence of single version
-            bug warning databases.</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="setBugDatabaseInfo">setBugDatabaseInfo</link></command></term>
-                <listitem>
-                    <para>Set information such as the revision name or
-timestamp in an XML bug database</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="listBugDatabaseInfo">listBugDatabaseInfo</link></command></term>
-                <listitem>
-                    <para>List information such as the revision name and
-timestamp for a list of XML bug databases</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="filterBugs">filterBugs</link></command></term>
-                <listitem>
-                    <para>Select a subset of a bug database</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="mineBugHistory">mineBugHistory</link></command></term>
-                <listitem>
-                    <para>Generate a tabular listing of the number of warnings in each
-        version of a multiversion bug database</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="defectDensity">defectDensity</link></command></term>
-                <listitem>
-                    <para>List information about defect density
-                         (warnings per 1000 NCSS)
-                         for the entire project and each class and package</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="convertXmlToText">convertXmlToText</link></command></term>
-                <listitem>
-                    <para>Convert bug warnings in XML format to
-                    a textual one-line-per-bug format, or to HTML</para>
-                </listitem>
-            </varlistentry>
-        </variablelist>
-
-
-        <sect2 id="unionBugs">
-            <title>unionBugs</title>
-
-        <para>
-        If you have, for example, separately analyzing each jar file used in an application,
-        you can use this command to combine the separately generated xml bug warning files into
-        a single file containing all of the warnings.</para>
-
-            <para>Do <emphasis>not</emphasis> use this command to combine results from analyzing different versions of the same
-            file; use <command>computeBugHistory</command> instead.</para>
-
-            <para>Specify the xml files on the command line. The result is sent to standard output.</para>
-        </sect2>
-
-        <sect2 id="computeBugHistory">
-            <title>computeBugHistory</title>
-
-<para>Use this command to generate a bug database containing information from different builds or versions
-of software you are analyzing.
-History is taken from the first file provided as input; any following
-files should be single version bug databases (if they contain history, the history in those
-files will be ignored).</para>
-<para>By default, output is written to the standard output.
-</para>
-
-<para>This functionality may also can be accessed from ant.
-First create a taskdef for <command>computeBugHistory</command> in your
-build file:
-</para>
-
-<programlisting>
-<![CDATA[
-<taskdef name="computeBugHistory" classname="edu.umd.cs.findbugs.anttask.ComputeBugHistoryTask">
-    <classpath refid="findbugs.lib" />
-</taskdef>
-]]>
-</programlisting>
-
-<para>Attributes for this ant task are listed in the following table.
-To specify input files, nest them inside with a
-<literal>&lt;datafile&gt;</literal> element.  For example:
-</para>
-
-<programlisting>
-<![CDATA[
-<computeBugHistory home="${findbugs.home}" ...>
-    <datafile name="analyze1.xml"/>
-    <datafile name="analyze2.xml"/>
-</computeBugHistory>
-]]>
-</programlisting>
-
-        <table id="computeBugHistoryTable">
-            <title>Options for computeBugHistory command</title>
-            <tgroup cols="3" align="left">
-                  <thead>
-                    <row>
-                          <entry>Command-line option</entry>
-                          <entry>Ant attribute</entry>
-                          <entry>Meaning</entry>
-                    </row>
-                      </thead>
-                  <tbody>
-<row><entry>-output &lt;file&gt;</entry>           <entry>output="&lt;file&gt;"</entry>           <entry>save output in the named file (may also be an input file)</entry></row>
-<row><entry>-overrideRevisionNames[:truth]</entry> <entry>overrideRevisionNames="[true|false]"</entry><entry>override revision names for each version with names computed from the filenames</entry></row>
-<row><entry>-noPackageMoves[:truth]</entry>        <entry>noPackageMoves="[true|false]"</entry><entry>if a class has moved to another package, treat warnings in that class as seperate</entry></row>
-<row><entry>-preciseMatch[:truth]</entry>          <entry>preciseMatch="[true|false]"</entry><entry>require bug patterns to match precisely</entry></row>
-<row><entry>-precisePriorityMatch[:truth]</entry>  <entry>precisePriorityMatch="[true|false]"</entry><entry>consider two warnings as the same only if priorities match exactly</entry></row>
-<row><entry>-quiet[:truth]</entry>                 <entry>quiet="[true|false]"</entry><entry>don't generate any output to standard out unless there is an error</entry></row>
-<row><entry>-withMessages[:truth]</entry>          <entry>withMessages="[true|false]"</entry><entry>include human-readable messages describing the warnings in XML output</entry></row>
-                </tbody>
-            </tgroup>
-        </table>
-
-        </sect2>
-        <sect2 id="filterBugs">
-            <title>filterBugs</title>
-<para>This command is used to select a subset of warnings from a FindBugs XML warning file
-and write the selected subset to a new FindBugs warning file.</para>
-<para>
-This command takes a sequence of options, and either zero, one or two
-filenames of findbugs xml bug files on the command line.</para>
-<para>If no file names are provided, the command reads from standard input
-and writes to standard output. If one file name is provided,
-it reads from the file and writes to standard output.
-If two file names are provided, it reads from the first and writes the output
-to the second file name.</para>
-
-<para>This functionality may also can be accessed from ant.
-First create a taskdef for <command>filterBugs</command> in your
-build file:
-</para>
-
-<programlisting>
-<![CDATA[
-<taskdef name="filterBugs" classname="edu.umd.cs.findbugs.anttask.FilterBugsTask">
-    <classpath refid="findbugs.lib" />
-</taskdef>
-]]>
-</programlisting>
-
-<para>Attributes for this ant task are listed in the following table.
-To specify an input file either use the input attribute or nest it inside
-the ant call with a <literal>&lt;datafile&gt;</literal> element.  For example:
-</para>
-
-<programlisting>
-<![CDATA[
-<filterBugs home="${findbugs.home}" ...>
-    <datafile name="analyze.xml"/>
-</filterBugs>
-]]>
-</programlisting>
-
-        <table id="filterOptionsTable">
-            <title>Options for filterBugs command</title>
-            <tgroup cols="3" align="left">
-                  <thead>
-                    <row>
-                          <entry>Command-line option</entry>
-                          <entry>Ant attribute</entry>
-                          <entry>Meaning</entry>
-                    </row>
-                      </thead>
-                  <tbody>
-<row><entry></entry>                            <entry>input="&lt;file&gt;"</entry>             <entry>use file as input</entry></row>
-<row><entry></entry>                            <entry>output="&lt;file&gt;"</entry>            <entry>output results to file</entry></row>
-<row><entry>-not</entry>                        <entry>not="[true|false]"</entry>               <entry>reverse (all) switches for the filter</entry></row>
-<row><entry>-withSource[:truth]</entry>         <entry>withSource="[true|false]"</entry>        <entry>only warnings for switch source is available</entry></row>
-<row><entry>-exclude &lt;filter file&gt;</entry><entry>exclude="&lt;filter file&gt;"</entry>    <entry>exclude bugs matching given filter</entry></row>
-<row><entry>-include &lt;filter file&gt;</entry><entry>include="&lt;filter file&gt;"</entry>    <entry>include only bugs matching given filter</entry></row>
-<row><entry>-annotation &lt;text&gt;</entry>    <entry>annotation="&lt;text&gt;"</entry>        <entry>allow only warnings containing this text in a manual annotation</entry></row>
-<row><entry>-after &lt;when&gt;</entry>         <entry>after="&lt;when&gt;"</entry>             <entry>allow only warnings that first occurred after this version</entry></row>
-<row><entry>-before &lt;when&gt;</entry>        <entry>before="&lt;when&gt;"</entry>            <entry>allow only warnings that first occurred before this version</entry></row>
-<row><entry>-first &lt;when&gt;</entry>         <entry>first="&lt;when&gt;"</entry>             <entry>allow only warnings that first occurred in this version</entry></row>
-<row><entry>-last &lt;when&gt;</entry>          <entry>last="&lt;when&gt;"</entry>              <entry>allow only warnings that last occurred in this version</entry></row>
-<row><entry>-fixed &lt;when&gt;</entry>         <entry>fixed="&lt;when&gt;"</entry>             <entry>allow only warnings that last occurred in the previous version (clobbers <option>-last</option>)</entry></row>
-<row><entry>-present &lt;when&gt;</entry>       <entry>present="&lt;when&gt;"</entry>           <entry>allow only warnings present in this version</entry></row>
-<row><entry>-absent &lt;when&gt;</entry>        <entry>absent="&lt;when&gt;"</entry>            <entry>allow only warnings absent in this version</entry></row>
-<row><entry>-active[:truth]</entry>             <entry>active="[true|false]"</entry>            <entry>allow only warnings alive in the last sequence number</entry></row>
-<row><entry>-introducedByChange[:truth]</entry> <entry>introducedByChange="[true|false]"</entry><entry>allow only warnings introduced by a change of an existing class</entry></row>
-<row><entry>-removedByChange[:truth]</entry>    <entry>removedByChange="[true|false]"</entry>   <entry>allow only warnings removed by a change of a persisting class</entry></row>
-<row><entry>-newCode[:truth]</entry>            <entry>newCode="[true|false]"</entry>           <entry>allow only warnings introduced by the addition of a new class</entry></row>
-<row><entry>-removedCode[:truth]</entry>        <entry>removedCode="[true|false]"</entry>       <entry>allow only warnings removed by removal of a class</entry></row>
-<row><entry>-priority &lt;level&gt;</entry>     <entry>priority="&lt;level&gt;"</entry>         <entry>allow only warnings with this priority or higher</entry></row>
-<row><entry>-maxRank &lt;rank&gt;</entry>       <entry>rank="[1..20]"</entry>                   <entry>allow only warnings with this rank or lower</entry></row>
-<row><entry>-class &lt;pattern&gt;</entry>      <entry>class="&lt;class&gt;"</entry>            <entry>allow only bugs whose primary class name matches this pattern</entry></row>
-<row><entry>-bugPattern &lt;pattern&gt;</entry> <entry>bugPattern="&lt;pattern&gt;"</entry>     <entry>allow only bugs whose type matches this pattern</entry></row>
-<row><entry>-category &lt;category&gt;</entry>  <entry>category="&lt;category&gt;"</entry>      <entry>allow only warnings with a category that starts with this string</entry></row>
-<row><entry>-designation &lt;designation&gt;</entry> <entry>designation="&lt;designation&gt;"</entry> <entry>allow only warnings with this designation (e.g., -designation SHOULD_FIX)</entry></row>
-<row><entry>-withMessages[:truth] </entry>      <entry>withMessages="[true|false]"</entry>      <entry>the generated XML should contain textual messages</entry></row>
-                </tbody>
-            </tgroup>
-        </table>
-
-        </sect2>
-
-        <sect2 id="mineBugHistory">
-            <title>mineBugHistory</title>
-<para>This command generates a table containing counts of the numbers of warnings
-in each version of a multiversion bug database.</para>
-
-
-<para>This functionality may also can be accessed from ant.
-First create a taskdef for <command>mineBugHistory</command> in your
-build file:
-</para>
-
-<programlisting>
-<![CDATA[
-<taskdef name="mineBugHistory" classname="edu.umd.cs.findbugs.anttask.MineBugHistoryTask">
-    <classpath refid="findbugs.lib" />
-</taskdef>
-]]>
-</programlisting>
-
-<para>Attributes for this ant task are listed in the following table.
-To specify an input file either use the <literal>input</literal>
-attribute or nest it inside the ant call with a
-<literal>&lt;datafile&gt;</literal> element.  For example:
-</para>
-
-<programlisting>
-<![CDATA[
-<mineBugHistory home="${findbugs.home}" ...>
-    <datafile name="analyze.xml"/>
-</mineBugHistory>
-]]>
-</programlisting>
-
-        <table id="mineBugHistoryOptionsTable">
-            <title>Options for mineBugHistory command</title>
-            <tgroup cols="3" align="left">
-                  <thead>
-                    <row>
-                          <entry>Command-line option</entry>
-                          <entry>Ant attribute</entry>
-                          <entry>Meaning</entry>
-                    </row>
-                  </thead>
-                  <tbody>
-<row><entry></entry>               <entry>input="&lt;file&gt;"</entry>             <entry>use file as input</entry></row>
-<row><entry></entry>               <entry>output="&lt;file&gt;"</entry>            <entry>write output to file</entry></row>
-<row><entry>-formatDates</entry>   <entry>formatDates="[true|false]"</entry>       <entry>render dates in textual form</entry></row>
-<row><entry>-noTabs</entry>        <entry>noTabs="[true|false]"</entry>            <entry>delimit columns with groups of spaces instead of tabs (see below)</entry></row>
-<row><entry>-summary</entry>       <entry>summary="[true|false]"</entry>           <entry>output terse summary of changes over the last ten entries</entry></row>
-                </tbody>
-            </tgroup>
-        </table>
-
-        <para>
-        The <option>-noTabs</option> output can be easier to read from a shell
-        with a fixed-width font.
-        Because numeric columns are right-justified, spaces may precede the
-        first column value. This option also causes <option>-formatDates</option>
-        to render dates in terser format without embedded whitespace.
-        </para>
-
-        <para>The table is a tab-separated (barring <option>-noTabs</option>)
-        table with the following columns:</para>
-
-        <table id="mineBugHistoryColumns">
-            <title>Columns in mineBugHistory output</title>
-            <tgroup cols="2" align="left">
-                  <thead>
-                    <row>
-                          <entry>Title</entry>
-                          <entry>Meaning</entry>
-                    </row>
-                      </thead>
-                  <tbody>
-                      <row><entry>seq</entry><entry>Sequence number (successive integers, starting at 0)</entry></row>
-                      <row><entry>version</entry><entry>Version name</entry></row>
-                      <row><entry>time</entry><entry>Release timestamp</entry></row>
-                      <row><entry>classes</entry><entry>Number of classes analyzed</entry></row>
-                      <row><entry>NCSS</entry><entry>Non Commenting Source Statements</entry></row>
-                      <row><entry>added</entry><entry>Count of new warnings for a class that existed in the previous version</entry></row>
-                      <row><entry>newCode</entry><entry>Count of new warnings for a class that did not exist in the previous version</entry></row>
-                      <row><entry>fixed</entry><entry>Count of warnings removed from a class that remains in the current version</entry></row>
-                      <row><entry>removed</entry><entry>Count of warnings in the previous version for a class that is not present in the current version</entry></row>
-                      <row><entry>retained</entry><entry>Count of warnings that were in both the previous and current version</entry></row>
-                      <row><entry>dead</entry><entry>Warnings that were present in earlier versions but in neither the current version or the immediately preceeding version</entry></row>
-                      <row><entry>active</entry><entry>Total warnings present in the current version</entry></row>
-                </tbody>
-                </tgroup>
-        </table>
-        </sect2>
-
-        <sect2 id="defectDensity">
-            <title>defectDensity</title>
-<para>
-This command lists information about defect density (warnings per 1000 NCSS) for the entire project and each class and package.
-It can either be invoked with no files specified on the command line (in which case it reads from standard input)
-or with one file specified on the command line.</para>
-<para>It generates a table with the following columns, and with one
-row for the entire project, and one row for each package or class that contains at least
-4 warnings.</para>
-        <table id="defectDensityColumns">
-            <title>Columns in defectDensity output</title>
-            <tgroup cols="2" align="left">
-                  <thead>
-                    <row>
-                          <entry>Title</entry>
-                          <entry>Meaning</entry>
-                    </row>
-                      </thead>
-                  <tbody>
-                      <row><entry>kind</entry><entry>project, package or class</entry></row>
-                      <row><entry>name</entry><entry>The name of the project, package or class</entry></row>
-                      <row><entry>density</entry><entry>Number of warnings generated per 1000 lines of NCSS.</entry></row>
-                      <row><entry>bugs</entry><entry>Number of warnings</entry></row>
-                      <row><entry>NCSS</entry><entry>Calculated number of NCSS</entry></row>
-                </tbody>
-                </tgroup>
-            </table>
-        </sect2>
-
-        <sect2 id="convertXmlToText">
-            <title>convertXmlToText</title>
-
-            <para>
-                This command converts a warning collection in XML format to a text
-                format with one line per warning, or to HTML.
-            </para>
-
-<para>This functionality may also can be accessed from ant.
-First create a taskdef for <command>convertXmlToText</command> in your
-build file:
-</para>
-
-<programlisting>
-<![CDATA[
-<taskdef name="convertXmlToText" classname="edu.umd.cs.findbugs.anttask.ConvertXmlToTextTask">
-    <classpath refid="findbugs.lib" />
-</taskdef>
-]]>
-</programlisting>
-
-<para>Attributes for this ant task are listed in the following table.</para>
-
-            <table id="convertXmlToTextTable">
-            <title>Options for convertXmlToText command</title>
-            <tgroup cols="3" align="left">
-                  <thead>
-                    <row>
-                          <entry>Command-line option</entry>
-                          <entry>Ant attribute</entry>
-                          <entry>Meaning</entry>
-                    </row>
-                      </thead>
-                  <tbody>
-<row><entry></entry>                   <entry>input="&lt;filename&gt;"</entry>         <entry>use file as input</entry></row>
-<row><entry></entry>                   <entry>output="&lt;filename&gt;"</entry>        <entry>output results to file</entry></row>
-<row><entry>-longBugCodes</entry>      <entry>longBugCodes="[true|false]"</entry>      <entry>use the full bug pattern code instead of two-letter abbreviation</entry></row>
-<row><entry></entry>                   <entry>format="text"</entry>                    <entry>generate plain text output with one bug per line (command-line default)</entry></row>
-<row><entry>-html[:stylesheet]</entry> <entry>format="html:&lt;stylesheet&gt;"</entry> <entry>generate output with specified stylesheet (see below), or default.xsl if unspecified</entry></row>
-                </tbody>
-            </tgroup>
-            </table>
-
-            <para>
-            You may specify plain.xsl, default.xsl, fancy.xsl, fancy-hist.xsl,
-            or your own XSL stylesheet for the -html/format option.
-            Despite the name of this option, you may specify
-            a stylesheet that emits something other than html.
-            When applying a stylesheet other than those included
-            with FindBugs (listed above), the -html/format option should be used
-            with a path or URL to the stylesheet.
-            </para>
-        </sect2>
-
-        <sect2 id="setBugDatabaseInfo">
-            <title>setBugDatabaseInfo</title>
-
-            <para>
-                This command sets meta-information in a specified warning collection.
-                It takes the following options:
-            </para>
-
-<para>This functionality may also can be accessed from ant.
-First create a taskdef for <command>setBugDatabaseInfo</command> in your
-build file:
-</para>
-
-<programlisting>
-<![CDATA[
-<taskdef name="setBugDatabaseInfo" classname="edu.umd.cs.findbugs.anttask.SetBugDatabaseInfoTask">
-    <classpath refid="findbugs.lib" />
-</taskdef>
-]]>
-</programlisting>
-
-<para>Attributes for this ant task are listed in the following table.
-To specify an input file either use the <literal>input</literal>
-attribute or nest it inside the ant call with a
-<literal>&lt;datafile&gt;</literal> element.  For example:
-</para>
-
-<programlisting>
-<![CDATA[
-<setBugDatabaseInfo home="${findbugs.home}" ...>
-    <datafile name="analyze.xml"/>
-</setBugDatabaseInfo>
-]]>
-</programlisting>
-
-        <table id="setBugDatabaseInfoOptions">
-            <title>setBugDatabaseInfo Options</title>
-            <tgroup cols="3" align="left">
-                  <thead>
-                    <row>
-                          <entry>Command-line option</entry>
-                          <entry>Ant attribute</entry>
-                          <entry>Meaning</entry>
-                    </row>
-                  </thead>
-                  <tbody>
-                      <row><entry></entry>                              <entry>input="&lt;file&gt;"</entry>           <entry>use file as input</entry></row>
-                      <row><entry></entry>                              <entry>output="&lt;file&gt;"</entry>          <entry>write output to file</entry></row>
-                      <row><entry>-name &lt;name&gt;</entry>            <entry>name="&lt;name&gt;"</entry>            <entry>set name for (last) revision</entry></row>
-                      <row><entry>-timestamp &lt;when&gt;</entry>       <entry>timestamp="&lt;when&gt;"</entry>       <entry>set timestamp for (last) revision</entry></row>
-                      <row><entry>-source &lt;directory&gt;</entry>     <entry>source="&lt;directory&gt;"</entry>     <entry>add specified directory to the source search path</entry></row>
-                      <row><entry>-findSource &lt;directory&gt;</entry> <entry>findSource="&lt;directory&gt;"</entry> <entry>find and add all relevant source directions contained within specified directory</entry></row>
-                      <row><entry>-suppress &lt;filter file&gt;</entry> <entry>suppress="&lt;filter file&gt;"</entry> <entry>suppress warnings matched by this file (replaces previous suppressions)</entry></row>
-                      <row><entry>-withMessages</entry>                 <entry>withMessages="[true|false]"</entry>    <entry>add textual messages to XML</entry></row>
-                      <row><entry>-resetSource</entry>                  <entry>resetSource="[true|false]"</entry>     <entry>remove all source search paths</entry></row>
-                 </tbody>
-                </tgroup>
-            </table>
-        </sect2>
-
-        <sect2 id="listBugDatabaseInfo">
-            <title>listBugDatabaseInfo</title>
-
-            <para>This command takes a list of zero or more xml bug database filenames on the command line.
-If zero file names are provided, it reads from standard input and does not generate
-a table header.</para>
-
-<para>There is only one option: <option>-formatDates</option> renders dates
-    in textual form.
-    </para>
-
-<para>The output is a table one row per bug database and the following columns:</para>
-        <table id="listBugDatabaseInfoColumns">
-            <title>listBugDatabaseInfo Columns</title>
-            <tgroup cols="2" align="left">
-                  <thead>
-                    <row>
-                          <entry>Column</entry>
-                          <entry>Meaning</entry>
-                    </row>
-                  </thead>
-                  <tbody>
-                      <row><entry>version</entry><entry>version name</entry></row>
-                      <row><entry>time</entry><entry>Release timestamp</entry></row>
-                      <row><entry>classes</entry><entry>Number of classes analyzed</entry></row>
-                      <row><entry>NCSS</entry><entry>Non Commenting Source Statements analyzed</entry></row>
-                      <row><entry>total</entry><entry>Total number of warnings of all kinds</entry></row>
-                      <row><entry>high</entry><entry>Total number of high priority warnings of all kinds</entry></row>
-                      <row><entry>medium</entry><entry>Total number of medium/normal priority warnings of all kinds</entry></row>
-                      <row><entry>low</entry><entry>Total number of low priority warnings of all kinds</entry></row>
-                      <row><entry>filename</entry><entry>filename of database</entry></row>
-<!--
-                      <row><entry></entry><entry></entry></row>
-                      <row><entry></entry><entry></entry></row>
-                      <row><entry></entry><entry></entry></row>
-                      <row><entry></entry><entry></entry></row>
-                      <row><entry></entry><entry></entry></row>
-                      <row><entry></entry><entry></entry></row>
--->
-                 </tbody>
-                </tgroup>
-            </table>
-
-        </sect2>
-
-    </sect1>
-
-    <sect1 id="examples">
-        <title>Examples</title>
-<sect2 id="unixscriptsexamples">
-   <title>Mining history using proveded shell scrips</title>
-<para>In all of the following, the commands are given in a directory that contains
-directories jdk1.6.0-b12, jdk1.6.0-b13, ..., jdk1.6.0-b60.</para>
-
-<para>You can use the command:</para>
-<screen>
-computeBugHistory jdk1.6.0-b* | filterBugs -bugPattern IL_ | mineBugHistory -formatDates
-</screen>
-<para>to generate the following output:</para>
-
-<screen>
-seq	version	time	classes	NCSS	added	newCode	fixed	removed	retained	dead	active
-0	jdk1.6.0-b12	"Thu Nov 11 09:07:20 EST 2004"	13128	811569	0	4	0	0	0	0	4
-1	jdk1.6.0-b13	"Thu Nov 18 06:02:06 EST 2004"	13128	811570	0	0	0	0	4	0	4
-2	jdk1.6.0-b14	"Thu Dec 02 06:12:26 EST 2004"	13145	811786	0	0	2	0	2	0	2
-3	jdk1.6.0-b15	"Thu Dec 09 06:07:04 EST 2004"	13174	811693	0	0	1	0	1	2	1
-4	jdk1.6.0-b16	"Thu Dec 16 06:21:28 EST 2004"	13175	811715	0	0	0	0	1	3	1
-5	jdk1.6.0-b17	"Thu Dec 23 06:27:22 EST 2004"	13176	811974	0	0	0	0	1	3	1
-6	jdk1.6.0-b19	"Thu Jan 13 06:41:16 EST 2005"	13176	812011	0	0	0	0	1	3	1
-7	jdk1.6.0-b21	"Thu Jan 27 05:57:52 EST 2005"	13177	812173	0	0	0	0	1	3	1
-8	jdk1.6.0-b23	"Thu Feb 10 05:44:36 EST 2005"	13179	812188	0	0	0	0	1	3	1
-9	jdk1.6.0-b26	"Thu Mar 03 06:04:02 EST 2005"	13199	811770	0	0	0	0	1	3	1
-10	jdk1.6.0-b27	"Thu Mar 10 04:48:38 EST 2005"	13189	812440	0	0	0	0	1	3	1
-11	jdk1.6.0-b28	"Thu Mar 17 02:54:22 EST 2005"	13185	812056	0	0	0	0	1	3	1
-12	jdk1.6.0-b29	"Thu Mar 24 03:09:20 EST 2005"	13117	809468	0	0	0	0	1	3	1
-13	jdk1.6.0-b30	"Thu Mar 31 02:53:32 EST 2005"	13118	809501	0	0	0	0	1	3	1
-14	jdk1.6.0-b31	"Thu Apr 07 03:00:14 EDT 2005"	13117	809572	0	0	0	0	1	3	1
-15	jdk1.6.0-b32	"Thu Apr 14 02:56:56 EDT 2005"	13169	811096	0	0	0	0	1	3	1
-16	jdk1.6.0-b33	"Thu Apr 21 02:46:22 EDT 2005"	13187	811942	0	0	0	0	1	3	1
-17	jdk1.6.0-b34	"Thu Apr 28 02:49:00 EDT 2005"	13195	813488	0	1	0	0	1	3	2
-18	jdk1.6.0-b35	"Thu May 05 02:49:04 EDT 2005"	13457	829837	0	0	0	0	2	3	2
-19	jdk1.6.0-b36	"Thu May 12 02:59:46 EDT 2005"	13462	831278	0	0	0	0	2	3	2
-20	jdk1.6.0-b37	"Thu May 19 02:55:08 EDT 2005"	13464	831971	0	0	0	0	2	3	2
-21	jdk1.6.0-b38	"Thu May 26 03:08:16 EDT 2005"	13564	836565	0	0	0	0	2	3	2
-22	jdk1.6.0-b39	"Fri Jun 03 03:10:48 EDT 2005"	13856	849992	0	1	0	0	2	3	3
-23	jdk1.6.0-b40	"Thu Jun 09 03:30:28 EDT 2005"	15972	959619	0	2	0	0	3	3	5
-24	jdk1.6.0-b41	"Thu Jun 16 03:19:22 EDT 2005"	15972	959619	0	0	0	0	5	3	5
-25	jdk1.6.0-b42	"Fri Jun 24 03:38:54 EDT 2005"	15966	958581	0	0	0	0	5	3	5
-26	jdk1.6.0-b43	"Thu Jul 14 03:09:34 EDT 2005"	16041	960544	0	0	0	0	5	3	5
-27	jdk1.6.0-b44	"Thu Jul 21 03:05:54 EDT 2005"	16041	960547	0	0	0	0	5	3	5
-28	jdk1.6.0-b45	"Thu Jul 28 03:26:10 EDT 2005"	16037	960606	0	0	1	0	4	3	4
-29	jdk1.6.0-b46	"Thu Aug 04 03:02:48 EDT 2005"	15936	951355	0	0	0	0	4	4	4
-30	jdk1.6.0-b47	"Thu Aug 11 03:18:56 EDT 2005"	15964	952387	0	0	1	0	3	4	3
-31	jdk1.6.0-b48	"Thu Aug 18 08:10:40 EDT 2005"	15970	953421	0	0	0	0	3	5	3
-32	jdk1.6.0-b49	"Thu Aug 25 03:24:38 EDT 2005"	16048	958940	0	0	0	0	3	5	3
-33	jdk1.6.0-b50	"Thu Sep 01 01:52:40 EDT 2005"	16287	974937	1	0	0	0	3	5	4
-34	jdk1.6.0-b51	"Thu Sep 08 01:55:36 EDT 2005"	16362	979377	0	0	0	0	4	5	4
-35	jdk1.6.0-b52	"Thu Sep 15 02:04:08 EDT 2005"	16477	979399	0	0	0	0	4	5	4
-36	jdk1.6.0-b53	"Thu Sep 22 02:00:28 EDT 2005"	16019	957900	0	0	1	0	3	5	3
-37	jdk1.6.0-b54	"Thu Sep 29 01:54:34 EDT 2005"	16019	957900	0	0	0	0	3	6	3
-38	jdk1.6.0-b55	"Thu Oct 06 01:54:14 EDT 2005"	16051	959014	0	0	0	0	3	6	3
-39	jdk1.6.0-b56	"Thu Oct 13 01:54:12 EDT 2005"	16211	970835	0	0	0	0	3	6	3
-40	jdk1.6.0-b57	"Thu Oct 20 01:55:26 EDT 2005"	16279	971627	0	0	0	0	3	6	3
-41	jdk1.6.0-b58	"Thu Oct 27 01:56:30 EDT 2005"	16283	971945	0	0	0	0	3	6	3
-42	jdk1.6.0-b59	"Thu Nov 03 01:56:58 EST 2005"	16232	972193	0	0	0	0	3	6	3
-43	jdk1.6.0-b60	"Thu Nov 10 01:54:18 EST 2005"	16235	972346	0	0	0	0	3	6	3
-</screen>
-
-<para>
-We could also generate that information directly, without creating an intermediate db.xml file, using the command
-</para>
-
-<screen>
-computeBugHistory  jdk1.6.0-b*/jre/lib/rt.xml | filterBugs -bugPattern IL_ db.xml | mineBugHistory -formatDates
-</screen>
-
-<para>We can then use that information to display a graph showing the number of infinite recursive loops
-found by FindBugs in each build of Sun's JDK1.6.0. The blue area indicates the number of infinite
-recursive loops in that build, the red area above it indicates the number of infinite recursive loops that existed
-in some previous version but not in the current version (thus, the combined height of the red and blue areas
-is guaranteed to never decrease, and goes up whenever a new infinite recursive loop bug is introduced). The height
-of the red area is computed as the sum of the fixed, removed and dead values for each version.
-The reductions in builds 13 and 14 came after Sun was notified about the bugs found by FindBugs in the JDK.
-    </para>
-<mediaobject>
-<imageobject>
-<imagedata fileref="infiniteRecursiveLoops.png"  />
-</imageobject>
-</mediaobject>
-
-<para>
-Given the db.xml file that contains the results for all the jdk1.6.0 builds, the following command will show the history of high and medium priority correctness warnings:
-</para>
-
-<screen>
-filterBugs -priority M -category C db.xml | mineBugHistory -formatDates
-</screen>
-
-<para>
-generating the table:
-</para>
-
-<screen>
-seq	version	time	classes	NCSS	added	newCode	fixed	removed	retained	dead	active
-0	jdk1.6.0-b12	"Thu Nov 11 09:07:20 EST 2004"	13128	811569	0	1075	0	0	0	0	1075
-1	jdk1.6.0-b13	"Thu Nov 18 06:02:06 EST 2004"	13128	811570	0	0	0	0	1075	0	1075
-2	jdk1.6.0-b14	"Thu Dec 02 06:12:26 EST 2004"	13145	811786	3	0	6	0	1069	0	1072
-3	jdk1.6.0-b15	"Thu Dec 09 06:07:04 EST 2004"	13174	811693	2	1	3	0	1069	6	1072
-4	jdk1.6.0-b16	"Thu Dec 16 06:21:28 EST 2004"	13175	811715	0	0	1	0	1071	9	1071
-5	jdk1.6.0-b17	"Thu Dec 23 06:27:22 EST 2004"	13176	811974	0	0	1	0	1070	10	1070
-6	jdk1.6.0-b19	"Thu Jan 13 06:41:16 EST 2005"	13176	812011	0	0	0	0	1070	11	1070
-7	jdk1.6.0-b21	"Thu Jan 27 05:57:52 EST 2005"	13177	812173	0	0	1	0	1069	11	1069
-8	jdk1.6.0-b23	"Thu Feb 10 05:44:36 EST 2005"	13179	812188	0	0	0	0	1069	12	1069
-9	jdk1.6.0-b26	"Thu Mar 03 06:04:02 EST 2005"	13199	811770	0	0	2	1	1066	12	1066
-10	jdk1.6.0-b27	"Thu Mar 10 04:48:38 EST 2005"	13189	812440	1	0	1	1	1064	15	1065
-11	jdk1.6.0-b28	"Thu Mar 17 02:54:22 EST 2005"	13185	812056	0	0	0	0	1065	17	1065
-12	jdk1.6.0-b29	"Thu Mar 24 03:09:20 EST 2005"	13117	809468	3	0	8	26	1031	17	1034
-13	jdk1.6.0-b30	"Thu Mar 31 02:53:32 EST 2005"	13118	809501	0	0	0	0	1034	51	1034
-14	jdk1.6.0-b31	"Thu Apr 07 03:00:14 EDT 2005"	13117	809572	0	0	0	0	1034	51	1034
-15	jdk1.6.0-b32	"Thu Apr 14 02:56:56 EDT 2005"	13169	811096	1	1	0	1	1033	51	1035
-16	jdk1.6.0-b33	"Thu Apr 21 02:46:22 EDT 2005"	13187	811942	3	0	2	1	1032	52	1035
-17	jdk1.6.0-b34	"Thu Apr 28 02:49:00 EDT 2005"	13195	813488	0	1	0	0	1035	55	1036
-18	jdk1.6.0-b35	"Thu May 05 02:49:04 EDT 2005"	13457	829837	0	36	2	0	1034	55	1070
-19	jdk1.6.0-b36	"Thu May 12 02:59:46 EDT 2005"	13462	831278	0	0	0	0	1070	57	1070
-20	jdk1.6.0-b37	"Thu May 19 02:55:08 EDT 2005"	13464	831971	0	1	1	0	1069	57	1070
-21	jdk1.6.0-b38	"Thu May 26 03:08:16 EDT 2005"	13564	836565	1	7	2	6	1062	58	1070
-22	jdk1.6.0-b39	"Fri Jun 03 03:10:48 EDT 2005"	13856	849992	6	39	5	0	1065	66	1110
-23	jdk1.6.0-b40	"Thu Jun 09 03:30:28 EDT 2005"	15972	959619	7	147	11	0	1099	71	1253
-24	jdk1.6.0-b41	"Thu Jun 16 03:19:22 EDT 2005"	15972	959619	0	0	0	0	1253	82	1253
-25	jdk1.6.0-b42	"Fri Jun 24 03:38:54 EDT 2005"	15966	958581	3	0	1	2	1250	82	1253
-26	jdk1.6.0-b43	"Thu Jul 14 03:09:34 EDT 2005"	16041	960544	5	11	15	8	1230	85	1246
-27	jdk1.6.0-b44	"Thu Jul 21 03:05:54 EDT 2005"	16041	960547	0	0	0	0	1246	108	1246
-28	jdk1.6.0-b45	"Thu Jul 28 03:26:10 EDT 2005"	16037	960606	19	0	2	0	1244	108	1263
-29	jdk1.6.0-b46	"Thu Aug 04 03:02:48 EDT 2005"	15936	951355	13	1	1	32	1230	110	1244
-30	jdk1.6.0-b47	"Thu Aug 11 03:18:56 EDT 2005"	15964	952387	163	8	7	20	1217	143	1388
-31	jdk1.6.0-b48	"Thu Aug 18 08:10:40 EDT 2005"	15970	953421	0	0	0	0	1388	170	1388
-32	jdk1.6.0-b49	"Thu Aug 25 03:24:38 EDT 2005"	16048	958940	1	11	1	0	1387	170	1399
-33	jdk1.6.0-b50	"Thu Sep 01 01:52:40 EDT 2005"	16287	974937	19	27	16	7	1376	171	1422
-34	jdk1.6.0-b51	"Thu Sep 08 01:55:36 EDT 2005"	16362	979377	1	15	3	0	1419	194	1435
-35	jdk1.6.0-b52	"Thu Sep 15 02:04:08 EDT 2005"	16477	979399	0	0	1	1	1433	197	1433
-36	jdk1.6.0-b53	"Thu Sep 22 02:00:28 EDT 2005"	16019	957900	13	12	16	20	1397	199	1422
-37	jdk1.6.0-b54	"Thu Sep 29 01:54:34 EDT 2005"	16019	957900	0	0	0	0	1422	235	1422
-38	jdk1.6.0-b55	"Thu Oct 06 01:54:14 EDT 2005"	16051	959014	1	4	7	0	1415	235	1420
-39	jdk1.6.0-b56	"Thu Oct 13 01:54:12 EDT 2005"	16211	970835	6	8	37	0	1383	242	1397
-40	jdk1.6.0-b57	"Thu Oct 20 01:55:26 EDT 2005"	16279	971627	0	0	0	0	1397	279	1397
-41	jdk1.6.0-b58	"Thu Oct 27 01:56:30 EDT 2005"	16283	971945	0	1	1	0	1396	279	1397
-42	jdk1.6.0-b59	"Thu Nov 03 01:56:58 EST 2005"	16232	972193	6	0	5	0	1392	280	1398
-43	jdk1.6.0-b60	"Thu Nov 10 01:54:18 EST 2005"	16235	972346	0	0	0	0	1398	285	1398
-44	jdk1.6.0-b61	"Thu Nov 17 01:58:42 EST 2005"	16202	971134	2	0	4	0	1394	285	1396
-</screen>
-</sect2>
-
-<sect2 id="incrementalhistory">
-    <title>Incremental history maintenance</title>
-
-<para>
-If db.xml contains the results of running findbugs over builds b12 - b60, we can update db.xml to include the results of analyzing b61 with the commands:
-</para>
-<screen>
-computeBugHistory -output db.xml db.xml jdk1.6.0-b61/jre/lib/rt.xml
-</screen>
-</sect2>
-
-            </sect1>
-
-         <sect1 id="antexample">
-            <title>Ant example</title>
-<para>
-Here is a complete ant script example for both running findbugs and running a chain of data-mining tools afterward:
-</para>
-<screen>
-<![CDATA[
-<project name="analyze_asm_util" default="findbugs">
-   <!-- findbugs task definition -->
-   <property name="findbugs.home" value="/Users/ben/Documents/workspace/findbugs/findbugs" />
-   <property name="jvmargs" value="-server -Xss1m -Xmx800m -Duser.language=en -Duser.region=EN -Dfindbugs.home=${findbugs.home}" />
-
-    <path id="findbugs.lib">
-      <fileset dir="${findbugs.home}/lib">
-         <include name="findbugs-ant.jar"/>
-      </fileset>
-   </path>
-
-   <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask">
-      <classpath refid="findbugs.lib" />
-   </taskdef>
-
-   <taskdef name="computeBugHistory" classname="edu.umd.cs.findbugs.anttask.ComputeBugHistoryTask">
-      <classpath refid="findbugs.lib" />
-   </taskdef>
-
-   <taskdef name="setBugDatabaseInfo" classname="edu.umd.cs.findbugs.anttask.SetBugDatabaseInfoTask">
-      <classpath refid="findbugs.lib" />
-   </taskdef>
-
-   <taskdef name="mineBugHistory" classname="edu.umd.cs.findbugs.anttask.MineBugHistoryTask">
-      <classpath refid="findbugs.lib" />
-   </taskdef>
-
-   <!-- findbugs task definition -->
-   <target name="findbugs">
-      <antcall target="analyze" />
-      <antcall target="mine" />
-   </target>
-
-   <!-- analyze task -->
-   <target name="analyze">
-      <!-- run findbugs against asm-util -->
-      <findbugs home="${findbugs.home}"
-                output="xml:withMessages"
-                timeout="90000000"
-                reportLevel="experimental"
-                workHard="true"
-                effort="max"
-                adjustExperimental="true"
-                jvmargs="${jvmargs}"
-                failOnError="true"
-                outputFile="out.xml"
-                projectName="Findbugs"
-                debug="false">
-         <class location="asm-util-3.0.jar" />
-      </findbugs>
-   </target>
-
-   <target name="mine">
-
-      <!-- Set info to the latest analysis -->
-      <setBugDatabaseInfo home="${findbugs.home}"
-                            withMessages="true"
-                            name="asm-util-3.0.jar"
-                            input="out.xml"
-                            output="out-rel.xml"/>
-
-      <!-- Checking if history file already exists (out-hist.xml) -->
-      <condition property="mining.historyfile.available">
-         <available file="out-hist.xml"/>
-      </condition>
-      <condition property="mining.historyfile.notavailable">
-         <not>
-            <available file="out-hist.xml"/>
-         </not>
-      </condition>
-
-      <!-- this target is executed if the history file do not exist (first run) -->
-      <antcall target="history-init">
-        <param name="data.file" value="out-rel.xml" />
-        <param name="hist.file" value="out-hist.xml" />
-      </antcall>
-      <!-- else this one is executed -->
-      <antcall target="history">
-        <param name="data.file"         value="out-rel.xml" />
-        <param name="hist.file"         value="out-hist.xml" />
-        <param name="hist.summary.file" value="out-hist.txt" />
-      </antcall>
-   </target>
-
-   <!-- Initializing history file -->
-   <target name="history-init" if="mining.historyfile.notavailable">
-      <copy file="${data.file}" tofile="${hist.file}" />
-   </target>
-
-   <!-- Computing bug history -->
-   <target name="history" if="mining.historyfile.available">
-      <!-- Merging ${data.file} into ${hist.file} -->
-      <computeBugHistory home="${findbugs.home}"
-                           withMessages="true"
-                           output="${hist.file}">
-            <dataFile name="${hist.file}"/>
-            <dataFile name="${data.file}"/>
-      </computeBugHistory>
-
-      <!-- Compute history into ${hist.summary.file} -->
-      <mineBugHistory home="${findbugs.home}"
-                        formatDates="true"
-                      noTabs="true"
-                        input="${hist.file}"
-                        output="${hist.summary.file}"/>
-   </target>
-
-</project>
-]]>
-</screen>
-         </sect1>
-</chapter>
-
-
-<!--
-   **************************************************************************
-   License
-   **************************************************************************
--->
-
-<chapter id="license">
-<title>License</title>
-
-<para>
-The name FindBugs and the FindBugs logo is trademarked by the University
-of Maryland.
-FindBugs is free software distributed under the terms of the
-<ulink url="http://www.gnu.org/licenses/lgpl.html">Lesser GNU Public License</ulink>.
-You should have received a copy of the license in the file <filename>LICENSE.txt</filename>
-in the &FindBugs; distribution.
-</para>
-
-<para>
-You can find the latest version of FindBugs, along with its source code, from the
-<ulink url="http://findbugs.sourceforge.net">FindBugs web page</ulink>.
-</para>
-
-</chapter>
-
-
-<!--
-   **************************************************************************
-   Acknowledgments
-   **************************************************************************
--->
-<chapter id="acknowledgments">
-<title>Acknowledgments</title>
-
-<sect1>
-<title>Contributors</title>
-
-<para>&FindBugs; was originally written by Bill Pugh (<email>pugh@cs.umd.edu</email>).
-David Hovemeyer (<email>daveho@cs.umd.edu</email>) implemented some of the
-detectors, added the Swing GUI, and is a co-maintainer.</para>
-
-<para>Mike Fagan (<email>mfagan@tde.com</email>) contributed the &Ant; build script,
-the &Ant; task, and several enhancements and bug fixes to the GUI.</para>
-
-<para>Germano Leichsenring contributed Japanese translations of the bug
-summaries.</para>
-
-<para>David Li contributed the Emacs bug report format.</para>
-
-<para>Peter D. Stout contributed recursive detection of Class-Path
-attributes in analyzed Jar files, German translations of
-text used in the Swing GUI, and other fixes.</para>
-
-<para>Peter Friese wrote the &FindBugs; Eclipse plugin.</para>
-
-<para>Rohan Lloyd contributed several Mac OS X enhancements,
-bug detector improvements,
-and maintains the Fink package for &FindBugs;.</para>
-
-<para>Hiroshi Okugawa translated the &FindBugs; manual and
-more of the bug summaries into Japanese.</para>
-
-<para>Phil Crosby enhanced the Eclipse plugin to add a view
-to display the bug details.</para>
-
-<para>Dave Brosius fixed a number of bugs, added user preferences
-to the Swing GUI, improved several bug detectors, and
-contributed the string concatenation detector.</para>
-
-<para>Thomas Klaeger contributed a number of bug fixes and
-bug detector improvements.</para>
-
-<para>Andrei Loskutov made a number of improvements to the
-Eclipse plugin.</para>
-
-<para>Brian Goetz contributed a major refactoring of the
-visitor classes to improve readability and understandability.</para>
-
-<para> Pete Angstadt fixed several problems in the Swing GUI.</para>
-
-<para>Francis Lalonde provided a task resource file for the
-FindBugs Ant task.</para>
-
-<para>Garvin LeClaire contributed support for output in
-Xdocs format, for use by Maven.</para>
-
-<para>Holger Stenzhorn contributed improved German translations of items
-in the Swing GUI.</para>
-
-<para>Juha Knuutila contributed Finnish translations of items
-in the Swing GUI.</para>
-
-<para>Tanel Lebedev contributed Estonian translations of items
-in the Swing GUI.</para>
-
-<para>Hanai Shisei (ruimo) contributed full Japanese translations of
-bug messages, and text used in the Swing GUI.</para>
-
-<para>David Cotton contributed Fresh translations for bug
-messages and for the Swing GUI.</para>
-
-<para>Michael Tamm contributed support for the "errorProperty" attribute
-in the Ant task.</para>
-
-<para>Thomas Kuehne improved the German translation of the Swing GUI.</para>
-
-<para>Len Trigg improved source file support for the Emacs output mode.</para>
-
-<para>Greg Bentz provided a fix for the hashcode/equals detector.</para>
-
-<para>K. Hashimoto contributed internationalization fixes and several other
-    bug fixes.</para>
-
-<para>
-    Glenn Boysko contributed support for ignoring specified local
-    variables in the dead local store detector.
-</para>
-
-<para>
-    Jay Dunning contributed a detector to find equality comparisons
-    of floating-point values, and overhauled the analysis summary
-    report and its representation in the saved XML format.
-</para>
-
-<para>
-    Olivier Parent contributed updated French translations for bug descriptions and
-    Swing GUI.
-</para>
-
-<para>
-    Chris Nappin contributed the <filename>plain.xsl</filename>
-    stylesheet.
-</para>
-
-<para>
-    Etienne Giraudy contributed the <filename>fancy.xsl</filename> and  <filename>fancy-hist.xsl</filename>
-    stylesheets, and made improvements to the <command>-xml:withMessages</command>
-    option.
-</para>
-
-<para>
-    Takashi Okamoto fixed bugs in the project preferences dialog
-    in the Eclipse plugin, and contributed to its internationalization and localization.
-</para>
-
-<para>Thomas Einwaller fixed bugs in the project preferences dialog in the Eclipse plugin.</para>
-
-<para>Jeff Knox contributed support for the warningsProperty attribute
-in the Ant task.</para>
-
-<para>Peter Hendriks extended the Eclipse plugin preferences,
-and fixed a bug related to renaming the Eclipse plugin ID.</para>
-
-<para>Mark McKay contributed an Ant task to launch the findbugs frame.</para>
-
-<para>Dieter von Holten (dvholten) contributed
-some German improvements to findbugs_de.properties.</para>
-
-
-<para>If you have contributed to &FindBugs;, but aren't mentioned above,
-please send email to <email>findbugs@cs.umd.edu</email> (and also accept
-our humble apologies).</para>
-
-</sect1>
-
-<sect1>
-<title>Software Used</title>
-
-<para>&FindBugs; uses several open-source software packages, without which its
-development would have been much more difficult.</para>
-
-<sect2>
-<title>BCEL</title>
-<para>&FindBugs; includes software developed by the Apache Software Foundation
-(<ulink url="http://www.apache.org/">http://www.apache.org/</ulink>).
-Specifically, it uses the <ulink url="http://jakarta.apache.org/bcel/">Byte Code
-Engineering Library</ulink>.</para>
-</sect2>
-
-<sect2>
-<title>ASM</title>
-<para>&FindBugs; uses the <ulink url="http://asm.objectweb.org/">ASM</ulink>
-bytecode framework, which is distributed under the following license:</para>
-
-<blockquote>
-<para>
-Copyright (c) 2000-2005 INRIA, France Telecom
-All rights reserved.
-</para>
-
-<para>
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-</para>
-
-<orderedlist numeration="arabic">
-   <listitem><para>
-   Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-  </para></listitem>
-   <listitem><para>
-   Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-  </para></listitem>
-   <listitem><para>
-   Neither the name of the copyright holders nor the names of its
-   contributors may be used to endorse or promote products derived from
-   this software without specific prior written permission.
-  </para></listitem>
-</orderedlist>
-
-<para>
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
-</para>
-</blockquote>
-</sect2>
-
-<sect2>
-<title>DOM4J</title>
-<para>&FindBugs; uses <ulink url="http://dom4j.org">DOM4J</ulink>, which is
-distributed under the following license:</para>
-
-<blockquote>
-<para>
-Copyright 2001 (C) MetaStuff, Ltd. All Rights Reserved.
-</para>
-
-<para>
-Redistribution and use of this software and associated documentation
-("Software"), with or without modification, are permitted provided that
-the following conditions are met:
-</para>
-
-<orderedlist numeration="arabic">
-   <listitem><para>
-   Redistributions of source code must retain copyright statements and
-   notices. Redistributions must also contain a copy of this document.
-  </para></listitem>
-   <listitem><para>
-   Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-  </para></listitem>
-   <listitem><para>
-   The name "DOM4J" must not be used to endorse or promote products
-   derived from this Software without prior written permission
-   of MetaStuff, Ltd. For written permission, please contact
-   <email>dom4j-info@metastuff.com</email>.
-  </para></listitem>
-   <listitem><para>
-   Products derived from this Software may not be called "DOM4J" nor may
-   "DOM4J" appear in their names without prior written permission of
-   MetaStuff, Ltd. DOM4J is a registered trademark of MetaStuff, Ltd.
-  </para></listitem>
-   <listitem><para>
-   Due credit should be given to the DOM4J Project (<ulink url="http://dom4j.org/">http://dom4j.org/</ulink>).
-  </para></listitem>
-</orderedlist>
-
-<para>
-THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``AS IS''
-AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL METASTUFF, LTD. OR ITS
-CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-</para>
-</blockquote>
-
-</sect2>
-
-</sect1>
-
-</chapter>
-
-
-</book>
diff --git a/tools/findbugs/doc/manual.xsl b/tools/findbugs/doc/manual.xsl
deleted file mode 100644
index 557b3b7..0000000
--- a/tools/findbugs/doc/manual.xsl
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version='1.0'?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                version='1.0'
-                xmlns="http://www.w3.org/TR/xhtml1/transitional"
-                exclude-result-prefixes="#default">
-
-<!-- build.xml will substitute the real path to chunk.xsl here. -->
-<xsl:import href="/Users/pugh/tools/docbook-xsl-1.76.1/html/chunk.xsl"/>
-
-<xsl:template name="user.header.content">
-
-</xsl:template>
-
-<!-- This causes the stylesheet to put chapters in a single HTML file,
-     rather than putting individual sections into separate files. -->
-<xsl:variable name="chunk.section.depth">0</xsl:variable>
-
-<!-- Put the HTML in the "manual" directory. -->
-<xsl:variable name="base.dir">manual/</xsl:variable>
-
-<!-- Enumerate sections. -->
-<xsl:variable name="section.autolabel">1</xsl:variable>
-
-<!-- Name the HTML files based on the id of the document elements. -->
-<xsl:variable name="use.id.as.filename">1</xsl:variable>
-
-<!-- Use graphics in admonitions -->
-<xsl:variable name="admon.graphics">1</xsl:variable>
-
-<!-- Admonition graphics are in the same place as the generated HTML. -->
-<xsl:variable name="admon.graphics.path"></xsl:variable>
-
-<!-- Just put chapters and sect1s in the TOC. -->
-<xsl:variable name="toc.section.depth">1</xsl:variable>
-
-</xsl:stylesheet>
diff --git a/tools/findbugs/doc/manual/acknowledgments.html b/tools/findbugs/doc/manual/acknowledgments.html
deleted file mode 100644
index c2ac454..0000000
--- a/tools/findbugs/doc/manual/acknowledgments.html
+++ /dev/null
@@ -1,124 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;14.&nbsp;Acknowledgments</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="license.html" title="Chapter&nbsp;13.&nbsp;License"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;14.&nbsp;Acknowledgments</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="license.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;</td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;14.&nbsp;Acknowledgments"><div class="titlepage"><div><div><h2 class="title"><a name="acknowledgments"></a>Chapter&nbsp;14.&nbsp;Acknowledgments</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="acknowledgments.html#d0e3629">1. Contributors</a></span></dt><dt><span class="sect1"><a href="acknowledgments.html#d0e3752">2. Software Used</a></span></dt></dl></div><div class="sect1" title="1.&nbsp;Contributors"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3629"></a>1.&nbsp;Contributors</h2></div></div></div><p><span class="application">FindBugs</span> was originally written by Bill Pugh (<code class="email">&lt;<a class="email" href="mailto:pugh@cs.umd.edu">pugh@cs.umd.edu</a>&gt;</code>).
-David Hovemeyer (<code class="email">&lt;<a class="email" href="mailto:daveho@cs.umd.edu">daveho@cs.umd.edu</a>&gt;</code>) implemented some of the
-detectors, added the Swing GUI, and is a co-maintainer.</p><p>Mike Fagan (<code class="email">&lt;<a class="email" href="mailto:mfagan@tde.com">mfagan@tde.com</a>&gt;</code>) contributed the <span class="application">Ant</span> build script,
-the <span class="application">Ant</span> task, and several enhancements and bug fixes to the GUI.</p><p>Germano Leichsenring contributed Japanese translations of the bug
-summaries.</p><p>David Li contributed the Emacs bug report format.</p><p>Peter D. Stout contributed recursive detection of Class-Path
-attributes in analyzed Jar files, German translations of
-text used in the Swing GUI, and other fixes.</p><p>Peter Friese wrote the <span class="application">FindBugs</span> Eclipse plugin.</p><p>Rohan Lloyd contributed several Mac OS X enhancements,
-bug detector improvements,
-and maintains the Fink package for <span class="application">FindBugs</span>.</p><p>Hiroshi Okugawa translated the <span class="application">FindBugs</span> manual and
-more of the bug summaries into Japanese.</p><p>Phil Crosby enhanced the Eclipse plugin to add a view
-to display the bug details.</p><p>Dave Brosius fixed a number of bugs, added user preferences
-to the Swing GUI, improved several bug detectors, and
-contributed the string concatenation detector.</p><p>Thomas Klaeger contributed a number of bug fixes and
-bug detector improvements.</p><p>Andrei Loskutov made a number of improvements to the
-Eclipse plugin.</p><p>Brian Goetz contributed a major refactoring of the
-visitor classes to improve readability and understandability.</p><p> Pete Angstadt fixed several problems in the Swing GUI.</p><p>Francis Lalonde provided a task resource file for the
-FindBugs Ant task.</p><p>Garvin LeClaire contributed support for output in
-Xdocs format, for use by Maven.</p><p>Holger Stenzhorn contributed improved German translations of items
-in the Swing GUI.</p><p>Juha Knuutila contributed Finnish translations of items
-in the Swing GUI.</p><p>Tanel Lebedev contributed Estonian translations of items
-in the Swing GUI.</p><p>Hanai Shisei (ruimo) contributed full Japanese translations of
-bug messages, and text used in the Swing GUI.</p><p>David Cotton contributed Fresh translations for bug
-messages and for the Swing GUI.</p><p>Michael Tamm contributed support for the "errorProperty" attribute
-in the Ant task.</p><p>Thomas Kuehne improved the German translation of the Swing GUI.</p><p>Len Trigg improved source file support for the Emacs output mode.</p><p>Greg Bentz provided a fix for the hashcode/equals detector.</p><p>K. Hashimoto contributed internationalization fixes and several other
-    bug fixes.</p><p>
-    Glenn Boysko contributed support for ignoring specified local
-    variables in the dead local store detector.
-</p><p>
-    Jay Dunning contributed a detector to find equality comparisons
-    of floating-point values, and overhauled the analysis summary
-    report and its representation in the saved XML format.
-</p><p>
-    Olivier Parent contributed updated French translations for bug descriptions and
-    Swing GUI.
-</p><p>
-    Chris Nappin contributed the <code class="filename">plain.xsl</code>
-    stylesheet.
-</p><p>
-    Etienne Giraudy contributed the <code class="filename">fancy.xsl</code> and  <code class="filename">fancy-hist.xsl</code>
-    stylesheets, and made improvements to the <span class="command"><strong>-xml:withMessages</strong></span>
-    option.
-</p><p>
-    Takashi Okamoto fixed bugs in the project preferences dialog
-    in the Eclipse plugin, and contributed to its internationalization and localization.
-</p><p>Thomas Einwaller fixed bugs in the project preferences dialog in the Eclipse plugin.</p><p>Jeff Knox contributed support for the warningsProperty attribute
-in the Ant task.</p><p>Peter Hendriks extended the Eclipse plugin preferences,
-and fixed a bug related to renaming the Eclipse plugin ID.</p><p>Mark McKay contributed an Ant task to launch the findbugs frame.</p><p>Dieter von Holten (dvholten) contributed
-some German improvements to findbugs_de.properties.</p><p>If you have contributed to <span class="application">FindBugs</span>, but aren't mentioned above,
-please send email to <code class="email">&lt;<a class="email" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a>&gt;</code> (and also accept
-our humble apologies).</p></div><div class="sect1" title="2.&nbsp;Software Used"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3752"></a>2.&nbsp;Software Used</h2></div></div></div><p><span class="application">FindBugs</span> uses several open-source software packages, without which its
-development would have been much more difficult.</p><div class="sect2" title="2.1.&nbsp;BCEL"><div class="titlepage"><div><div><h3 class="title"><a name="d0e3759"></a>2.1.&nbsp;BCEL</h3></div></div></div><p><span class="application">FindBugs</span> includes software developed by the Apache Software Foundation
-(<a class="ulink" href="http://www.apache.org/" target="_top">http://www.apache.org/</a>).
-Specifically, it uses the <a class="ulink" href="http://jakarta.apache.org/bcel/" target="_top">Byte Code
-Engineering Library</a>.</p></div><div class="sect2" title="2.2.&nbsp;ASM"><div class="titlepage"><div><div><h3 class="title"><a name="d0e3772"></a>2.2.&nbsp;ASM</h3></div></div></div><p><span class="application">FindBugs</span> uses the <a class="ulink" href="http://asm.objectweb.org/" target="_top">ASM</a>
-bytecode framework, which is distributed under the following license:</p><div class="blockquote"><blockquote class="blockquote"><p>
-Copyright (c) 2000-2005 INRIA, France Telecom
-All rights reserved.
-</p><p>
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-</p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>
-   Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-  </p></li><li class="listitem"><p>
-   Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-  </p></li><li class="listitem"><p>
-   Neither the name of the copyright holders nor the names of its
-   contributors may be used to endorse or promote products derived from
-   this software without specific prior written permission.
-  </p></li></ol></div><p>
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
-</p></blockquote></div></div><div class="sect2" title="2.3.&nbsp;DOM4J"><div class="titlepage"><div><div><h3 class="title"><a name="d0e3799"></a>2.3.&nbsp;DOM4J</h3></div></div></div><p><span class="application">FindBugs</span> uses <a class="ulink" href="http://dom4j.org" target="_top">DOM4J</a>, which is
-distributed under the following license:</p><div class="blockquote"><blockquote class="blockquote"><p>
-Copyright 2001 (C) MetaStuff, Ltd. All Rights Reserved.
-</p><p>
-Redistribution and use of this software and associated documentation
-("Software"), with or without modification, are permitted provided that
-the following conditions are met:
-</p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>
-   Redistributions of source code must retain copyright statements and
-   notices. Redistributions must also contain a copy of this document.
-  </p></li><li class="listitem"><p>
-   Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-  </p></li><li class="listitem"><p>
-   The name "DOM4J" must not be used to endorse or promote products
-   derived from this Software without prior written permission
-   of MetaStuff, Ltd. For written permission, please contact
-   <code class="email">&lt;<a class="email" href="mailto:dom4j-info@metastuff.com">dom4j-info@metastuff.com</a>&gt;</code>.
-  </p></li><li class="listitem"><p>
-   Products derived from this Software may not be called "DOM4J" nor may
-   "DOM4J" appear in their names without prior written permission of
-   MetaStuff, Ltd. DOM4J is a registered trademark of MetaStuff, Ltd.
-  </p></li><li class="listitem"><p>
-   Due credit should be given to the DOM4J Project (<a class="ulink" href="http://dom4j.org/" target="_top">http://dom4j.org/</a>).
-  </p></li></ol></div><p>
-THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``AS IS''
-AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL METASTUFF, LTD. OR ITS
-CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-</p></blockquote></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="license.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;</td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;13.&nbsp;License&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/analysisprops.html b/tools/findbugs/doc/manual/analysisprops.html
deleted file mode 100644
index 83fe93c..0000000
--- a/tools/findbugs/doc/manual/analysisprops.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;9.&nbsp;Analysis Properties</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="filter.html" title="Chapter&nbsp;8.&nbsp;Filter Files"><link rel="next" href="annotations.html" title="Chapter&nbsp;10.&nbsp;Annotations"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;9.&nbsp;Analysis Properties</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="filter.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="annotations.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;9.&nbsp;Analysis Properties"><div class="titlepage"><div><div><h2 class="title"><a name="analysisprops"></a>Chapter&nbsp;9.&nbsp;Analysis Properties</h2></div></div></div><p>
-<span class="application">FindBugs</span> allows several aspects of the analyses it performs to be
-customized.  System properties are used to configure these options.
-This chapter describes the configurable analysis options.
-</p><p>
-The analysis options have two main purposes.  First, they allow you
-to inform <span class="application">FindBugs</span> about the meaning of methods in your application,
-so that it can produce more accurate results, or produce fewer
-false warnings.  Second, they allow you to configure the precision
-of the analysis performed.  Reducing analysis precision can save
-memory and analysis time, at the expense of missing some real bugs,
-or producing more false warnings.
-</p><p>
-The analysis options are set using the <span class="command"><strong>-property</strong></span>
-command line option.  For example:
-</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>findbugs -textui -property "cfg.noprune=true" <em class="replaceable"><code>myApp.jar</code></em></strong></span>
-</pre><p>
-</p><p>
-The list of configurable analysis properties is shown in
-<a class="xref" href="analysisprops.html#analysisproptable" title="Table&nbsp;9.1.&nbsp;Configurable Analysis Properties">Table&nbsp;9.1, &#8220;Configurable Analysis Properties&#8221;</a>.
-</p><div class="table"><a name="analysisproptable"></a><p class="title"><b>Table&nbsp;9.1.&nbsp;Configurable Analysis Properties</b></p><div class="table-contents"><table summary="Configurable Analysis Properties" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">Property Name</th><th align="left">Value</th><th align="left">Meaning</th></tr></thead><tbody><tr><td align="left">findbugs.assertionmethods</td><td align="left">Comma-separated list of fully qualified method names:
-      e.g., "com.foo.MyClass.checkAssertion"</td><td align="left">This property specifies the names of methods that are used
-      to check program assertions.  Specifying these methods allows
-      the null pointer dereference bug detector to avoid reporting
-      false warnings for values which are checked by assertion
-      methods.</td></tr><tr><td align="left">findbugs.de.comment</td><td align="left">true or false</td><td align="left">If true, the DroppedException detector scans source code
-        for empty catch blocks for a comment, and if one is found, does
-        not report a warning.</td></tr><tr><td align="left">findbugs.maskedfields.locals</td><td align="left">true or false</td><td align="left">If true, emit low priority warnings for local variables
-      which obscure fields.  Default is false.</td></tr><tr><td align="left">findbugs.nullderef.assumensp</td><td align="left">true or false</td><td align="left">not used
-      (intention: If true, the null dereference detector assumes that any
-      reference value returned from a method or passed to a method
-      in a parameter might be null.  Default is false.  Note that
-      enabling this property will very likely cause a large number
-      of false warnings to be produced.)</td></tr><tr><td align="left">findbugs.refcomp.reportAll</td><td align="left">true or false</td><td align="left">If true, all suspicious reference comparisons
-        using the == and != operators are reported.&nbsp; If false,
-        only one such warning is issued per method.&nbsp; Default
-        is false.</td></tr><tr><td align="left">findbugs.sf.comment</td><td align="left">true or false</td><td align="left">If true, the SwitchFallthrough detector will only report
-      warnings for cases where the source code does not have a comment
-      containing the words "fall" or "nobreak".  (An accurate source
-      path must be used for this feature to work correctly.)
-      This helps find cases where the switch fallthrough is likely
-      to be unintentional.</td></tr></tbody></table></div></div><br class="table-break"></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="filter.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="annotations.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;8.&nbsp;Filter Files&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;10.&nbsp;Annotations</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/annotations.html b/tools/findbugs/doc/manual/annotations.html
deleted file mode 100644
index a9909f9..0000000
--- a/tools/findbugs/doc/manual/annotations.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;10.&nbsp;Annotations</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="analysisprops.html" title="Chapter&nbsp;9.&nbsp;Analysis Properties"><link rel="next" href="rejarForAnalysis.html" title="Chapter&nbsp;11.&nbsp;Using rejarForAnalysis"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;10.&nbsp;Annotations</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="analysisprops.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="rejarForAnalysis.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;10.&nbsp;Annotations"><div class="titlepage"><div><div><h2 class="title"><a name="annotations"></a>Chapter&nbsp;10.&nbsp;Annotations</h2></div></div></div><p>
-<span class="application">FindBugs</span> supports several annotations to express the developer's intent
-so that FindBugs can issue warnings more appropriately. You need to use
-Java 5 to use annotations, and must place the annotations.jar and jsr305.jar
-files in the classpath while compiling your program.
-</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.CheckForNull</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
-    <p>
-The annotated element might be null, and uses of the element should check for null.
-When this annotation is applied to a method it applies to the method return value.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.CheckReturnValue</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Method, Constructor
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>priority:</strong></span>The priority of the warning (HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM.
-            </p><p>
-              <span class="command"><strong>explanation:</strong></span>A textual explaination of why the return value should be checked. Default value:"".
-            </p></dd></dl></div><p>
-This annotation is used to denote a method whose return value should always be checked after invoking the method.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.DefaultAnnotation</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Package
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>Annotation class objects. More than one class can be specified.
-            </p><p>
-              <span class="command"><strong>priority:</strong></span>Default priority(HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM.
-            </p></dd></dl></div><p>
-Indicates that all members of the class or package should be annotated with the default
-value of the supplied annotation classes. This would be used for behavior annotations
-such as @NonNull, @CheckForNull, or @CheckReturnValue. In particular, you can use
-@DefaultAnnotation(NonNull.class) on a class or package, and then use @Nullable only
-on those parameters, methods or fields that you want to allow to be null.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.DefaultAnnotationForFields</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Package
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>Annotation class objects. More than one class can be specified.
-            </p><p>
-              <span class="command"><strong>priority:</strong></span>Default priority(HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM.
-            </p></dd></dl></div><p>
-This is same as the DefaultAnnotation except it only applys to fields.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.DefaultAnnotationForMethods</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Package
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>Annotation class objects. More than one class can be specified.
-            </p><p>
-              <span class="command"><strong>priority:</strong></span>Default priority(HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM.
-            </p></dd></dl></div><p>
-This is same as the DefaultAnnotation except it only applys to methods.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.DefaultAnnotationForParameters</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Package
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>Annotation class objects. More than one class can be specified.
-            </p><p>
-              <span class="command"><strong>priority:</strong></span>Default priority(HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM.
-            </p></dd></dl></div><p>
-This is same as the DefaultAnnotation except it only applys to method parameters.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.NonNull</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
-    <p>
-The annotated element must not be null.
-Annotated fields must not be null after construction has completed. Annotated methods must have non-null return values.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.Nullable</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
-    <p>
-The annotated element could be null under some circumstances. In general, this means
-developers will have to read the documentation to determine when a null value is
-acceptable and whether it is neccessary to check for a null value.  FindBugs will
-treat the annotated items as though they had no annotation.
-      </p><p>
-In pratice this annotation is useful only for overriding an overarching NonNull
-annotation.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.OverrideMustInvoke</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Method
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>Specify when the super invocation should be
-              performed (FIRST, ANYTIME, LAST). Default value:ANYTIME.
-            </p></dd></dl></div><p>
-Used to annotate a method that, if overridden, must (or should) be invoke super
-in the overriding method. Examples of such methods include finalize() and clone().
-The argument to the method indicates when the super invocation should occur:
-at any time, at the beginning of the overriding method, or at the end of the overriding method.
-(This anotation is not implmemented in FindBugs as of September 8, 2006).
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.PossiblyNull</strong></span></span></dt><dd><p>
-This annotation is deprecated. Use CheckForNull instead.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.SuppressWarnings</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Field, Method, Parameter, Constructor, Package
-    <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p>
-              <span class="command"><strong>value:</strong></span>The name of the warning. More than one name can be specified.
-            </p><p>
-              <span class="command"><strong>justification:</strong></span>Reason why the warning should be ignored. Default value:"".
-            </p></dd></dl></div><p>
-The set of warnings that are to be suppressed by the compiler in the annotated element.
-Duplicate names are permitted.  The second and successive occurrences of a name are ignored.
-The presence of unrecognized warning names is <span class="emphasis"><em>not</em></span> an error: Compilers
-must ignore any warning names they do not recognize. They are, however, free to emit a
-warning if an annotation contains an unrecognized warning name. Compiler vendors should
-document the warning names they support in conjunction with this annotation type. They
-are encouraged to cooperate to ensure that the same names work across multiple compilers.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.UnknownNullness</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
-    <p>
-Used to indicate that the nullness of the target is unknown, or my vary in unknown ways in subclasses.
-      </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.UnknownNullness</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter
-    <p>
-Used to indicate that the nullness of the target is unknown, or my vary in unknown ways in subclasses.
-      </p></dd></dl></div><p>
- <span class="application">FindBugs</span> also supports the following annotations:
-</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem">net.jcip.annotations.GuardedBy</li><li class="listitem">net.jcip.annotations.Immutable</li><li class="listitem">net.jcip.annotations.NotThreadSafe</li><li class="listitem">net.jcip.annotations.ThreadSafe</li></ul></div><p>
-</p><p>
-You can refer the JCIP annotation <a class="ulink" href="http://jcip.net/annotations/doc/index.html" target="_top">
-API documentation</a> at <a class="ulink" href="http://jcip.net/" target="_top">Java Concurrency in Practice</a>.
-</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="analysisprops.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="rejarForAnalysis.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;9.&nbsp;Analysis Properties&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;11.&nbsp;Using rejarForAnalysis</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/anttask.html b/tools/findbugs/doc/manual/anttask.html
deleted file mode 100644
index e601e1f..0000000
--- a/tools/findbugs/doc/manual/anttask.html
+++ /dev/null
@@ -1,214 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;6.&nbsp;Using the FindBugs&#8482; Ant task</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="gui.html" title="Chapter&nbsp;5.&nbsp;Using the FindBugs GUI"><link rel="next" href="eclipse.html" title="Chapter&nbsp;7.&nbsp;Using the FindBugs&#8482; Eclipse plugin"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;6.&nbsp;Using the <span class="application">FindBugs</span>&#8482; <span class="application">Ant</span> task</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="gui.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="eclipse.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;6.&nbsp;Using the FindBugs&#8482; Ant task"><div class="titlepage"><div><div><h2 class="title"><a name="anttask"></a>Chapter&nbsp;6.&nbsp;Using the <span class="application">FindBugs</span>&#8482; <span class="application">Ant</span> task</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="anttask.html#d0e1205">1. Installing the <span class="application">Ant</span> task</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1243">2. Modifying build.xml</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1314">3. Executing the task</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1339">4. Parameters</a></span></dt></dl></div><p>
-This chapter describes how to integrate <span class="application">FindBugs</span> into a build script
-for <a class="ulink" href="http://ant.apache.org/" target="_top"><span class="application">Ant</span></a>, which is a popular Java build
-and deployment tool.  Using the <span class="application">FindBugs</span> <span class="application">Ant</span> task, your build script can
-automatically run <span class="application">FindBugs</span> on your Java code.
-</p><p>
-The <span class="application">Ant</span> task was generously contributed by Mike Fagan.
-</p><div class="sect1" title="1.&nbsp;Installing the Ant task"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1205"></a>1.&nbsp;Installing the <span class="application">Ant</span> task</h2></div></div></div><p>
-To install the <span class="application">Ant</span> task, simply copy <code class="filename"><em class="replaceable"><code>$FINDBUGS_HOME</code></em>/lib/findbugs-ant.jar</code>
-into the <code class="filename">lib</code> subdirectory of your <span class="application">Ant</span> installation.
-
-</p><div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note"><tr><td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td><th align="left">Note</th></tr><tr><td align="left" valign="top"><p>It is strongly recommended that you use the <span class="application">Ant</span> task with the version
-of <span class="application">FindBugs</span> it was included with.  We do not guarantee that the <span class="application">Ant</span> task Jar file
-will work with any version of <span class="application">FindBugs</span> other than the one it was included with.</p></td></tr></table></div><p>
-</p></div><div class="sect1" title="2.&nbsp;Modifying build.xml"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1243"></a>2.&nbsp;Modifying build.xml</h2></div></div></div><p>
-To incorporate <span class="application">FindBugs</span> into <code class="filename">build.xml</code> (the build script
-for <span class="application">Ant</span>), you first need to add a task definition.  This should appear as follows:
-
-</p><pre class="screen">
-  &lt;taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/&gt;
-</pre><p>
-
-The task definition specifies that when a <code class="literal">findbugs</code> element is
-seen in <code class="filename">build.xml</code>, it should use the indicated class to execute the task.
-</p><p>
-After you have added the task definition, you can define a target
-which uses the <code class="literal">findbugs</code> task.  Here is an example
-which could be added to the <code class="filename">build.xml</code> for the
-Apache <a class="ulink" href="http://jakarta.apache.org/bcel/" target="_top">BCEL</a> library.
-
-</p><pre class="screen">
-  &lt;property name="findbugs.home" value="/export/home/daveho/work/findbugs" /&gt;
-
-  &lt;target name="findbugs" depends="jar"&gt;
-    &lt;findbugs home="${findbugs.home}"
-              output="xml"
-              outputFile="bcel-fb.xml" &gt;
-      &lt;auxClasspath path="${basedir}/lib/Regex.jar" /&gt;
-      &lt;sourcePath path="${basedir}/src/java" /&gt;
-      &lt;class location="${basedir}/bin/bcel.jar" /&gt;
-    &lt;/findbugs&gt;
-  &lt;/target&gt;
-</pre><p>
-
-The <code class="literal">findbugs</code> element must have the <code class="literal">home</code>
-attribute set to the directory in which <span class="application">FindBugs</span> is installed; in other words,
-<em class="replaceable"><code>$FINDBUGS_HOME</code></em>.  See <a class="xref" href="installing.html" title="Chapter&nbsp;2.&nbsp;Installing FindBugs&#8482;">Chapter&nbsp;2, <i>Installing <span class="application">FindBugs</span>&#8482;</i></a>.
-</p><p>
-This target will execute <span class="application">FindBugs</span> on <code class="filename">bcel.jar</code>, which is the
-Jar file produced by BCEL's build script.  (By making it depend on the "jar"
-target, we ensure that the library is fully compiled before running <span class="application">FindBugs</span> on it.)
-The output of <span class="application">FindBugs</span> will be saved in XML format to a file called
-<code class="filename">bcel-fb.xml</code>.
-An auxiliary Jar file, <code class="filename">Regex.jar</code>, is added to the aux classpath,
-because it is referenced by the main BCEL library.  A source path is specified
-so that the saved bug data will have accurate references to the BCEL source code.
-</p></div><div class="sect1" title="3.&nbsp;Executing the task"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1314"></a>3.&nbsp;Executing the task</h2></div></div></div><p>
-Here is an example of invoking <span class="application">Ant</span> from the command line, using the <code class="literal">findbugs</code>
-target defined above.
-
-</p><pre class="screen">
-  <code class="prompt">[daveho@noir]$</code> <span class="command"><strong>ant findbugs</strong></span>
-  Buildfile: build.xml
-
-  init:
-
-  compile:
-
-  examples:
-
-  jar:
-
-  findbugs:
-   [findbugs] Running FindBugs...
-   [findbugs] Bugs were found
-   [findbugs] Output saved to bcel-fb.xml
-
-  BUILD SUCCESSFUL
-  Total time: 35 seconds
-</pre><p>
-
-In this case, because we saved the bug results in an XML file, we can
-use the <span class="application">FindBugs</span> GUI to view the results; see <a class="xref" href="running.html" title="Chapter&nbsp;4.&nbsp;Running FindBugs&#8482;">Chapter&nbsp;4, <i>Running <span class="application">FindBugs</span>&#8482;</i></a>.
-</p></div><div class="sect1" title="4.&nbsp;Parameters"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1339"></a>4.&nbsp;Parameters</h2></div></div></div><p>This section describes the parameters that may be specified when
-using the <span class="application">FindBugs</span> task.
-
-</p><div class="variablelist"><dl><dt><span class="term"><code class="literal">class</code></span></dt><dd><p>
-       A optional nested element specifying which classes to analyze.  The <code class="literal">class</code>
-       element must specify a <code class="literal">location</code> attribute which names the
-       archive file (jar, zip, etc.), directory, or class file to be analyzed.  Multiple <code class="literal">class</code>
-       elements may be specified as children of a single <code class="literal">findbugs</code> element.
-       </p><p>In addition to or instead of specifying a <code class="literal">class</code> element,
-       the  <span class="application">FindBugs</span> task can contain one or more <code class="literal">fileset</code> element(s) that
-       specify files to be analyzed.
-       For example, you might use a fileset to specify that all of the jar files in a directory
-       should be analyzed.
-       </p></dd><dt><span class="term"><code class="literal">auxClasspath</code></span></dt><dd><p>
-       An optional nested element which specifies a classpath (Jar files or directories)
-       containing classes used by the analyzed library or application, but which
-       you don't want to analyze.  It is specified the same way as
-       <span class="application">Ant</span>'s <code class="literal">classpath</code> element for the Java task.
-       </p></dd><dt><span class="term"><code class="literal">sourcePath</code></span></dt><dd><p>
-       An optional nested element which specifies a source directory path
-       containing source files used to compile the Java code being analyzed.
-       By specifying a source path, any generated XML bug output will have
-       complete source information, which allows later viewing in the
-       GUI.
-       </p></dd><dt><span class="term"><code class="literal">home</code></span></dt><dd><p>
-       A required attribute.
-       It must be set to the name of the directory where <span class="application">FindBugs</span> is installed.
-       </p></dd><dt><span class="term"><code class="literal">quietErrors</code></span></dt><dd><p>
-       An optional boolean attribute.
-       If true, reports of serious analysis errors and missing classes will
-       be suppressed in the <span class="application">FindBugs</span> output.  Default is false.
-       </p></dd><dt><span class="term"><code class="literal">reportLevel</code></span></dt><dd><p>
-       An optional attribute.  It specifies
-       the confidence/priority threshold for reporting issues.  If set to "low", confidence is not used to filter bugs.
-       If set to "medium" (the default), low confidence issues are supressed.
-       If set to "high", only high confidence bugs are reported.
-       </p></dd><dt><span class="term"><code class="literal">output</code></span></dt><dd><p>
-       Optional attribute.
-       It specifies the output format.  If set to "xml" (the default), output
-       is in XML format.
-       If set to "xml:withMessages", output is in XML format augmented with
-       human-readable messages.  (You should use this format if you plan
-        to generate a report using an XSL stylesheet.)
-       If set to "html", output is in HTML formatted (default stylesheet is default.xsl).
-        If set to "text", output is in ad-hoc text format.
-       If set to "emacs", output is in <a class="ulink" href="http://www.gnu.org/software/emacs/" target="_top">Emacs</a> error message format.
-       If set to "xdocs", output is xdoc XML for use with Apache Maven.
-       </p></dd><dt><span class="term"><code class="literal">stylesheet</code></span></dt><dd><p>
-       Optional attribute.
-      It specifies the stylesheet to use to generate html output when the output is set to html.
-      Stylesheets included in the FindBugs distribution include default.xsl, fancy.xsl, fancy-hist.xsl, plain.xsl, and summary.xsl.
-       The default value, if no stylesheet attribute is provided, is default.xsl.
-
-       </p></dd><dt><span class="term"><code class="literal">sort</code></span></dt><dd><p>
-       Optional attribute.  If the <code class="literal">output</code> attribute
-       is set to "text", then the <code class="literal">sort</code> attribute specifies
-       whether or not reported bugs are sorted by class.  Default is true.
-       </p></dd><dt><span class="term"><code class="literal">outputFile</code></span></dt><dd><p>
-       Optional attribute.  If specified, names the output file in which the
-       <span class="application">FindBugs</span> output will be saved.  By default, the output is displayed
-       directly by <span class="application">Ant</span>.
-       </p></dd><dt><span class="term"><code class="literal">debug</code></span></dt><dd><p>
-      Optional boolean attribute.  If set to true, <span class="application">FindBugs</span> prints diagnostic
-      information about which classes are being analyzed, and which bug pattern
-      detectors are being run.  Default is false.
-       </p></dd><dt><span class="term"><code class="literal">effort</code></span></dt><dd><p>
-              Set the analysis effort level.  The value specified should be
-              one of <code class="literal">min</code>, <code class="literal">default</code>,
-              or <code class="literal">max</code>.  See <a class="xref" href="running.html#commandLineOptions" title="3.&nbsp;Command-line Options">Section&nbsp;3, &#8220;Command-line Options&#8221;</a>
-              for more information about setting the analysis level.
-          </p></dd><dt><span class="term"><code class="literal">conserveSpace</code></span></dt><dd><p>Synonym for effort="min".</p></dd><dt><span class="term"><code class="literal">workHard</code></span></dt><dd><p>Synonym for effort="max".</p></dd><dt><span class="term"><code class="literal">visitors</code></span></dt><dd><p>
-       Optional attribute.  It specifies a comma-separated list of bug detectors
-       which should be run.  The bug detectors are specified by their class names,
-       without any package qualification.  By default, all detectors which are
-       not disabled by default are run.
-       </p></dd><dt><span class="term"><code class="literal">omitVisitors</code></span></dt><dd><p>
-       Optional attribute.  It is like the <code class="literal">visitors</code> attribute,
-       except it specifies detectors which will <span class="emphasis"><em>not</em></span> be run.
-       </p></dd><dt><span class="term"><code class="literal">excludeFilter</code></span></dt><dd><p>
-       Optional attribute.  It specifies the filename of a filter specifying bugs
-       to exclude from being reported.  See <a class="xref" href="filter.html" title="Chapter&nbsp;8.&nbsp;Filter Files">Chapter&nbsp;8, <i>Filter Files</i></a>.
-       </p></dd><dt><span class="term"><code class="literal">includeFilter</code></span></dt><dd><p>
-       Optional attribute.  It specifies the filename of a filter specifying
-       which bugs are reported.  See <a class="xref" href="filter.html" title="Chapter&nbsp;8.&nbsp;Filter Files">Chapter&nbsp;8, <i>Filter Files</i></a>.
-       </p></dd><dt><span class="term"><code class="literal">projectFile</code></span></dt><dd><p>
-       Optional attribute.  It specifies the name of a project file.
-       Project files are created by the <span class="application">FindBugs</span> GUI, and specify classes,
-       aux classpath entries, and source directories.  By naming a project,
-       you don't need to specify any <code class="literal">class</code> elements,
-       nor do you need to specify <code class="literal">auxClasspath</code> or
-       <code class="literal">sourcePath</code> attributes.
-       See <a class="xref" href="running.html" title="Chapter&nbsp;4.&nbsp;Running FindBugs&#8482;">Chapter&nbsp;4, <i>Running <span class="application">FindBugs</span>&#8482;</i></a> for how to create a project.
-       </p></dd><dt><span class="term"><code class="literal">jvmargs</code></span></dt><dd><p>
-       Optional attribute.  It specifies any arguments that should be passed
-       to the Java virtual machine used to run <span class="application">FindBugs</span>.  You may need to
-       use this attribute to specify flags to increase the amount of memory
-       the JVM may use if you are analyzing a very large program.
-       </p></dd><dt><span class="term"><code class="literal">systemProperty</code></span></dt><dd><p>
-      Optional nested element.  If specified, defines a system property.
-      The <code class="literal">name</code> attribute specifies the name of the
-      system property, and the <code class="literal">value</code> attribute specifies
-      the value of the system property.
-      </p></dd><dt><span class="term"><code class="literal">timeout</code></span></dt><dd><p>
-       Optional attribute.  It specifies the amount of time, in milliseconds,
-       that the Java process executing <span class="application">FindBugs</span> may run before it is
-       assumed to be hung and is terminated.  The default is 600,000
-       milliseconds, which is ten minutes.  Note that for very large
-       programs, <span class="application">FindBugs</span> may require more than ten minutes to complete its
-       analysis.
-       </p></dd><dt><span class="term"><code class="literal">failOnError</code></span></dt><dd><p>
-       Optional boolean attribute.  Whether to abort the build process if there is an
-       error running <span class="application">FindBugs</span>. Defaults to "false"
-       </p></dd><dt><span class="term"><code class="literal">errorProperty</code></span></dt><dd><p>
-       Optional attribute which specifies the name of a property that
-       will be set to "true" if an error occurs while running <span class="application">FindBugs</span>.
-       </p></dd><dt><span class="term"><code class="literal">warningsProperty</code></span></dt><dd><p>
-              Optional attribute which specifies the name of a property
-              that will be set to "true" if any warnings are reported by
-              <span class="application">FindBugs</span> on the analyzed program.
-          </p></dd><dt><span class="term"><code class="literal">userPreferencesFile</code></span></dt><dd><p>
-              Optional attribute. Set the path of the user preferences file to use, which might override some of the options abobe.
-              Specifying <code class="literal">userPreferencesFile</code> as first argument would mean some later
-              options will override them, as last argument would mean they will override some previous options).
-              This rationale behind this option is to reuse FindBugs Eclipse project settings for command
-              line execution.
-            </p></dd></dl></div><p>
-
-
-</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="gui.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="eclipse.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;5.&nbsp;Using the <span class="application">FindBugs</span> GUI&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;7.&nbsp;Using the <span class="application">FindBugs</span>&#8482; Eclipse plugin</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/building.html b/tools/findbugs/doc/manual/building.html
deleted file mode 100644
index ed3fcb2..0000000
--- a/tools/findbugs/doc/manual/building.html
+++ /dev/null
@@ -1,123 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;3.&nbsp;Building FindBugs&#8482; from Source</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="installing.html" title="Chapter&nbsp;2.&nbsp;Installing FindBugs&#8482;"><link rel="next" href="running.html" title="Chapter&nbsp;4.&nbsp;Running FindBugs&#8482;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;3.&nbsp;Building <span class="application">FindBugs</span>&#8482; from Source</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="installing.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="running.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;3.&nbsp;Building FindBugs&#8482; from Source"><div class="titlepage"><div><div><h2 class="title"><a name="building"></a>Chapter&nbsp;3.&nbsp;Building <span class="application">FindBugs</span>&#8482; from Source</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="building.html#d0e173">1. Prerequisites</a></span></dt><dt><span class="sect1"><a href="building.html#d0e262">2. Extracting the Source Distribution</a></span></dt><dt><span class="sect1"><a href="building.html#d0e275">3. Modifying <code class="filename">local.properties</code></a></span></dt><dt><span class="sect1"><a href="building.html#d0e333">4. Running <span class="application">Ant</span></a></span></dt><dt><span class="sect1"><a href="building.html#d0e427">5. Running <span class="application">FindBugs</span>&#8482; from a source directory</a></span></dt></dl></div><p>
-This chapter describes how to build <span class="application">FindBugs</span> from source code.  Unless you are
-interesting in modifying <span class="application">FindBugs</span>, you will probably want to skip to the
-<a class="link" href="running.html" title="Chapter&nbsp;4.&nbsp;Running FindBugs&#8482;">next chapter</a>.
-</p><div class="sect1" title="1.&nbsp;Prerequisites"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e173"></a>1.&nbsp;Prerequisites</h2></div></div></div><p>
-To compile <span class="application">FindBugs</span> from source, you will need the following:
-</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
-      The <a class="ulink" href="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3-source.zip?download" target="_top"><span class="application">FindBugs</span> source distribution</a>
-    </p></li><li class="listitem"><p>
-      <a class="ulink" href="http://java.sun.com/j2se/" target="_top">JDK 1.5.0 or later</a>
-    </p></li><li class="listitem"><p>
-      <a class="ulink" href="http://ant.apache.org/" target="_top">Apache <span class="application">Ant</span></a>, version 1.6.3 or later
-    </p></li></ul></div><p>
-</p><div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Warning"><tr><td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td><th align="left">Warning</th></tr><tr><td align="left" valign="top"><p>
-        The version of <span class="application">Ant</span> included as <code class="filename">/usr/bin/ant</code> on
-        Redhat Linux systems will <span class="emphasis"><em>not</em></span> work for compiling
-        <span class="application">FindBugs</span>.  We recommend you install a binary distribution of <span class="application">Ant</span>
-        downloaded from the <a class="ulink" href="http://ant.apache.org/" target="_top"><span class="application">Ant</span> website</a>.
-        Make sure that when you run <span class="application">Ant</span> your <em class="replaceable"><code>JAVA_HOME</code></em>
-        environment variable points to the directory in which you installed
-        JDK 1.5 (or later).
-    </p></td></tr></table></div><p>
-If you want to be able to generate formatted versions of the <span class="application">FindBugs</span> documentation,
-you will also need the following software:
-</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
-    The <a class="ulink" href="http://docbook.sourceforge.net/projects/xsl/index.html" target="_top">DocBook XSL Stylesheets</a>.
-    These are required to convert the <span class="application">FindBugs</span> manual into HTML format.
-    </p></li><li class="listitem"><p>
-      The <a class="ulink" href="http://saxon.sourceforge.net/" target="_top"><span class="application">Saxon</span> XSLT Processor</a>.
-      (Also required for converting the <span class="application">FindBugs</span> manual to HTML.)
-    </p></li></ul></div><p>
-</p></div><div class="sect1" title="2.&nbsp;Extracting the Source Distribution"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e262"></a>2.&nbsp;Extracting the Source Distribution</h2></div></div></div><p>
-After you download the source distribution, you'll need to extract it into
-a working directory.  A typical command to do this is:
-
-</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>unzip findbugs-2.0.3-source.zip</strong></span>
-</pre><p>
-
-</p></div><div class="sect1" title="3.&nbsp;Modifying local.properties"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e275"></a>3.&nbsp;Modifying <code class="filename">local.properties</code></h2></div></div></div><p>
-If you intend to build the FindBugs documentation,
-you will need to modify the <code class="filename">local.properties</code> file
-used by the <a class="ulink" href="http://ant.apache.org/" target="_top"><span class="application">Ant</span></a>
-<code class="filename">build.xml</code> file to build <span class="application">FindBugs</span>.
-If you do not want to build the FindBugs documentation, then you
-can ignore this file.
-</p><p>
-The <code class="filename">local.properties</code> overrides definitions
-in the <code class="filename">build.properties</code> file.
-The <code class="filename">build.properties</code> file looks something like this:
-</p><pre class="programlisting">
-
-# User Configuration:
-# This section must be modified to reflect your system.
-
-local.software.home     =/export/home/daveho/linux
-
-# Set this to the directory containing the DocBook Modular XSL Stylesheets
-#  from http://docbook.sourceforge.net/projects/xsl/
-
-xsl.stylesheet.home     =${local.software.home}/docbook/docbook-xsl-1.71.1
-
-# Set this to the directory where Saxon (http://saxon.sourceforge.net/)
-# is installed.
-
-saxon.home              =${local.software.home}/java/saxon-6.5.5
-
-</pre><p>
-</p><p>
-The <code class="varname">xsl.stylesheet.home</code> property specifies the full
-path to the directory where you have installed the
-<a class="ulink" href="http://docbook.sourceforge.net/projects/xsl/" target="_top">DocBook Modular XSL
-Stylesheets</a>.  You only need to specify this property if you will be
-generating the <span class="application">FindBugs</span> documentation.
-</p><p>
-The <code class="varname">saxon.home</code> property is the full path to the
-directory where you installed the <a class="ulink" href="http://saxon.sourceforge.net/" target="_top"><span class="application">Saxon</span> XSLT Processor</a>.
-You only need to specify this property if you will be
-generating the <span class="application">FindBugs</span> documentation.
-</p></div><div class="sect1" title="4.&nbsp;Running Ant"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e333"></a>4.&nbsp;Running <span class="application">Ant</span></h2></div></div></div><p>
-Once you have extracted the source distribution,
-made sure that <span class="application">Ant</span> is installed,
-modified <code class="filename">build.properties</code> (optional),
-and configured the tools (such as <span class="application">Saxon</span>),
-you are ready to build <span class="application">FindBugs</span>.  Invoking <span class="application">Ant</span> is a simple matter
-of running the command
-</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>ant <em class="replaceable"><code>target</code></em></strong></span>
-</pre><p>
-where <em class="replaceable"><code>target</code></em> is one of the following:
-</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>build</strong></span></span></dt><dd><p>
-         This target compiles the code for <span class="application">FindBugs</span>. It is the default target.
-       </p></dd><dt><span class="term"><span class="command"><strong>docs</strong></span></span></dt><dd><p>
-       This target formats the documentation.  (It also compiles some of
-       the source code as a side-effect.)
-       </p></dd><dt><span class="term"><span class="command"><strong>runjunit</strong></span></span></dt><dd><p>
-            This target compiles and runs the internal JUnit tests included
-            in <span class="application">FindBugs</span>.  It will print an error message if any unit
-            tests fail.
-        </p></dd><dt><span class="term"><span class="command"><strong>bindist</strong></span></span></dt><dd><p>
-            Builds a binary distribution of <span class="application">FindBugs</span>.
-            The target creates both <code class="filename">.zip</code> and
-            <code class="filename">.tar.gz</code> archives.
-        </p></dd></dl></div><p>
-</p><p>
-After running an <span class="application">Ant</span> command, you should see output similar to
-the following (after some other messages regarding the tasks that
-<span class="application">Ant</span> is running):
-</p><pre class="screen">
-<code class="computeroutput">
-BUILD SUCCESSFUL
-Total time: 17 seconds
-</code>
-</pre><p>
-</p></div><div class="sect1" title="5.&nbsp;Running FindBugs&#8482; from a source directory"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e427"></a>5.&nbsp;Running <span class="application">FindBugs</span>&#8482; from a source directory</h2></div></div></div><p>
-The <span class="application">Ant</span> build script for <span class="application">FindBugs</span> is written such that after
-building the <span class="command"><strong>build</strong></span> target, the working directory
-is set up just like a binary distribution.  So, the information about
-running <span class="application">FindBugs</span> in <a class="xref" href="running.html" title="Chapter&nbsp;4.&nbsp;Running FindBugs&#8482;">Chapter&nbsp;4, <i>Running <span class="application">FindBugs</span>&#8482;</i></a>
-applies to source distributions, too.
-</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="installing.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="running.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;2.&nbsp;Installing <span class="application">FindBugs</span>&#8482;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;4.&nbsp;Running <span class="application">FindBugs</span>&#8482;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/datamining.html b/tools/findbugs/doc/manual/datamining.html
deleted file mode 100644
index 134801a..0000000
--- a/tools/findbugs/doc/manual/datamining.html
+++ /dev/null
@@ -1,421 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;12.&nbsp;Data mining of bugs with FindBugs&#8482;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="rejarForAnalysis.html" title="Chapter&nbsp;11.&nbsp;Using rejarForAnalysis"><link rel="next" href="license.html" title="Chapter&nbsp;13.&nbsp;License"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;12.&nbsp;Data mining of bugs with <span class="application">FindBugs</span>&#8482;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="rejarForAnalysis.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="license.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;12.&nbsp;Data mining of bugs with FindBugs&#8482;"><div class="titlepage"><div><div><h2 class="title"><a name="datamining"></a>Chapter&nbsp;12.&nbsp;Data mining of bugs with <span class="application">FindBugs</span>&#8482;</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="datamining.html#commands">1. Commands</a></span></dt><dt><span class="sect1"><a href="datamining.html#examples">2. Examples</a></span></dt><dt><span class="sect1"><a href="datamining.html#antexample">3. Ant example</a></span></dt></dl></div><p>
-FindBugs incorporates an ability to perform sophisticated queries on bug
-databases and track warnings across multiple versions of code being
-studied, allowing you to do things such as seeing when a bug was first introduced, examining
-just the warnings that have been introduced since the last release, or graphing the number
-of infinite recursive loops in your code over time.</p><p>
-These techniques all depend upon the XML format used by FindBugs for storing warnings.
-These XML files usually contain just the warnings from one particular analysis run, but
-they can also store the results from analyzing a sequence of software builds or versions.
-    </p><p>
-Any FindBugs XML bug database contains a version name and timestamp.
-FindBugs tries to compute a timestamp from the timestamps of the files that
-are analyzed (e.g., the timestamp is intended to be the time the class files
-were generated, not analyzed). Each bug database also contains a version name.
-Both the version name and timestamp can be set manually using the
-<span class="command"><strong>setBugDatabaseInfo</strong></span> (<a class="xref" href="datamining.html#setBugDatabaseInfo" title="1.7.&nbsp;setBugDatabaseInfo">Section&nbsp;1.7, &#8220;setBugDatabaseInfo&#8221;</a>) command.
-    </p><p>A multiversion bug database assigns a sequence number to each version of
-the analyzed code. These sequence numbers are simply successive integers,
-starting at 0 (e.g., a bug database for 4 versions of the code will contain
-versions 0..3). The bug database will also record the name and timestamp for
-each version. The <span class="command"><strong>filterBugs</strong></span> command allows you to refer
-to a version by sequence number, name or timestamp.</p><p>
-You can take a sequence (or pair) of single version bug databases and create
-from them a multiversion bug database, or combine a multiversion bug database
-with a sequence of later single-version bug databases.</p><p>
-Some of these commands can be invoked as ant tasks.  See below for specifics
-on how to invoke them and what attributes and arguments they take.  All of
-the examples assume that the <code class="literal">findbugs.lib</code>
-<code class="literal">refid</code> is set correctly.  Here is one way to set it:
-</p><pre class="programlisting">
-
-   &lt;!-- findbugs task definition --&gt;
-   &lt;property name="findbugs.home" value="/your/path/to/findbugs" /&gt;
-   &lt;path id="findbugs.lib"&gt;
-      &lt;fileset dir="${findbugs.home}/lib"&gt;
-         &lt;include name="findbugs-ant.jar"/&gt;
-      &lt;/fileset&gt;
-   &lt;/path&gt;
-
-</pre><div class="sect1" title="1.&nbsp;Commands"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="commands"></a>1.&nbsp;Commands</h2></div></div></div><p>
-All tools for FindBugs data mining are can be invoked from the command line,
-and some of the more useful tools can also be invoked from an
-ant build file.</p><p>
-Briefly, the command-line tools are:</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#unionBugs" title="1.1.&nbsp;unionBugs">unionBugs</a></strong></span></span></dt><dd><p>
-                         combine the results from separate analysis of disjoint
-        classes
-                    </p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#computeBugHistory" title="1.2.&nbsp;computeBugHistory">computeBugHistory</a></strong></span></span></dt><dd><p>Merge bug warnings from multiple versions of
-            analyzed code into
-            a single multiversion bug database. This can either be used
-            to add more versions to an existing multiversion database,
-            or to create a multiversion database from a sequence of single version
-            bug warning databases.</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#setBugDatabaseInfo" title="1.7.&nbsp;setBugDatabaseInfo">setBugDatabaseInfo</a></strong></span></span></dt><dd><p>Set information such as the revision name or
-timestamp in an XML bug database</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#listBugDatabaseInfo" title="1.8.&nbsp;listBugDatabaseInfo">listBugDatabaseInfo</a></strong></span></span></dt><dd><p>List information such as the revision name and
-timestamp for a list of XML bug databases</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#filterBugs" title="1.3.&nbsp;filterBugs">filterBugs</a></strong></span></span></dt><dd><p>Select a subset of a bug database</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#mineBugHistory" title="1.4.&nbsp;mineBugHistory">mineBugHistory</a></strong></span></span></dt><dd><p>Generate a tabular listing of the number of warnings in each
-        version of a multiversion bug database</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#defectDensity" title="1.5.&nbsp;defectDensity">defectDensity</a></strong></span></span></dt><dd><p>List information about defect density
-                         (warnings per 1000 NCSS)
-                         for the entire project and each class and package</p></dd><dt><span class="term"><span class="command"><strong><a class="link" href="datamining.html#convertXmlToText" title="1.6.&nbsp;convertXmlToText">convertXmlToText</a></strong></span></span></dt><dd><p>Convert bug warnings in XML format to
-                    a textual one-line-per-bug format, or to HTML</p></dd></dl></div><div class="sect2" title="1.1.&nbsp;unionBugs"><div class="titlepage"><div><div><h3 class="title"><a name="unionBugs"></a>1.1.&nbsp;unionBugs</h3></div></div></div><p>
-        If you have, for example, separately analyzing each jar file used in an application,
-        you can use this command to combine the separately generated xml bug warning files into
-        a single file containing all of the warnings.</p><p>Do <span class="emphasis"><em>not</em></span> use this command to combine results from analyzing different versions of the same
-            file; use <span class="command"><strong>computeBugHistory</strong></span> instead.</p><p>Specify the xml files on the command line. The result is sent to standard output.</p></div><div class="sect2" title="1.2.&nbsp;computeBugHistory"><div class="titlepage"><div><div><h3 class="title"><a name="computeBugHistory"></a>1.2.&nbsp;computeBugHistory</h3></div></div></div><p>Use this command to generate a bug database containing information from different builds or versions
-of software you are analyzing.
-History is taken from the first file provided as input; any following
-files should be single version bug databases (if they contain history, the history in those
-files will be ignored).</p><p>By default, output is written to the standard output.
-</p><p>This functionality may also can be accessed from ant.
-First create a taskdef for <span class="command"><strong>computeBugHistory</strong></span> in your
-build file:
-</p><pre class="programlisting">
-
-&lt;taskdef name="computeBugHistory" classname="edu.umd.cs.findbugs.anttask.ComputeBugHistoryTask"&gt;
-    &lt;classpath refid="findbugs.lib" /&gt;
-&lt;/taskdef&gt;
-
-</pre><p>Attributes for this ant task are listed in the following table.
-To specify input files, nest them inside with a
-<code class="literal">&lt;datafile&gt;</code> element.  For example:
-</p><pre class="programlisting">
-
-&lt;computeBugHistory home="${findbugs.home}" ...&gt;
-    &lt;datafile name="analyze1.xml"/&gt;
-    &lt;datafile name="analyze2.xml"/&gt;
-&lt;/computeBugHistory&gt;
-
-</pre><div class="table"><a name="computeBugHistoryTable"></a><p class="title"><b>Table&nbsp;12.1.&nbsp;Options for computeBugHistory command</b></p><div class="table-contents"><table summary="Options for computeBugHistory command" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">Command-line option</th><th align="left">Ant attribute</th><th align="left">Meaning</th></tr></thead><tbody><tr><td align="left">-output &lt;file&gt;</td><td align="left">output="&lt;file&gt;"</td><td align="left">save output in the named file (may also be an input file)</td></tr><tr><td align="left">-overrideRevisionNames[:truth]</td><td align="left">overrideRevisionNames="[true|false]"</td><td align="left">override revision names for each version with names computed from the filenames</td></tr><tr><td align="left">-noPackageMoves[:truth]</td><td align="left">noPackageMoves="[true|false]"</td><td align="left">if a class has moved to another package, treat warnings in that class as seperate</td></tr><tr><td align="left">-preciseMatch[:truth]</td><td align="left">preciseMatch="[true|false]"</td><td align="left">require bug patterns to match precisely</td></tr><tr><td align="left">-precisePriorityMatch[:truth]</td><td align="left">precisePriorityMatch="[true|false]"</td><td align="left">consider two warnings as the same only if priorities match exactly</td></tr><tr><td align="left">-quiet[:truth]</td><td align="left">quiet="[true|false]"</td><td align="left">don't generate any output to standard out unless there is an error</td></tr><tr><td align="left">-withMessages[:truth]</td><td align="left">withMessages="[true|false]"</td><td align="left">include human-readable messages describing the warnings in XML output</td></tr></tbody></table></div></div><br class="table-break"></div><div class="sect2" title="1.3.&nbsp;filterBugs"><div class="titlepage"><div><div><h3 class="title"><a name="filterBugs"></a>1.3.&nbsp;filterBugs</h3></div></div></div><p>This command is used to select a subset of warnings from a FindBugs XML warning file
-and write the selected subset to a new FindBugs warning file.</p><p>
-This command takes a sequence of options, and either zero, one or two
-filenames of findbugs xml bug files on the command line.</p><p>If no file names are provided, the command reads from standard input
-and writes to standard output. If one file name is provided,
-it reads from the file and writes to standard output.
-If two file names are provided, it reads from the first and writes the output
-to the second file name.</p><p>This functionality may also can be accessed from ant.
-First create a taskdef for <span class="command"><strong>filterBugs</strong></span> in your
-build file:
-</p><pre class="programlisting">
-
-&lt;taskdef name="filterBugs" classname="edu.umd.cs.findbugs.anttask.FilterBugsTask"&gt;
-    &lt;classpath refid="findbugs.lib" /&gt;
-&lt;/taskdef&gt;
-
-</pre><p>Attributes for this ant task are listed in the following table.
-To specify an input file either use the input attribute or nest it inside
-the ant call with a <code class="literal">&lt;datafile&gt;</code> element.  For example:
-</p><pre class="programlisting">
-
-&lt;filterBugs home="${findbugs.home}" ...&gt;
-    &lt;datafile name="analyze.xml"/&gt;
-&lt;/filterBugs&gt;
-
-</pre><div class="table"><a name="filterOptionsTable"></a><p class="title"><b>Table&nbsp;12.2.&nbsp;Options for filterBugs command</b></p><div class="table-contents"><table summary="Options for filterBugs command" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">Command-line option</th><th align="left">Ant attribute</th><th align="left">Meaning</th></tr></thead><tbody><tr><td align="left">&nbsp;</td><td align="left">input="&lt;file&gt;"</td><td align="left">use file as input</td></tr><tr><td align="left">&nbsp;</td><td align="left">output="&lt;file&gt;"</td><td align="left">output results to file</td></tr><tr><td align="left">-not</td><td align="left">not="[true|false]"</td><td align="left">reverse (all) switches for the filter</td></tr><tr><td align="left">-withSource[:truth]</td><td align="left">withSource="[true|false]"</td><td align="left">only warnings for switch source is available</td></tr><tr><td align="left">-exclude &lt;filter file&gt;</td><td align="left">exclude="&lt;filter file&gt;"</td><td align="left">exclude bugs matching given filter</td></tr><tr><td align="left">-include &lt;filter file&gt;</td><td align="left">include="&lt;filter file&gt;"</td><td align="left">include only bugs matching given filter</td></tr><tr><td align="left">-annotation &lt;text&gt;</td><td align="left">annotation="&lt;text&gt;"</td><td align="left">allow only warnings containing this text in a manual annotation</td></tr><tr><td align="left">-after &lt;when&gt;</td><td align="left">after="&lt;when&gt;"</td><td align="left">allow only warnings that first occurred after this version</td></tr><tr><td align="left">-before &lt;when&gt;</td><td align="left">before="&lt;when&gt;"</td><td align="left">allow only warnings that first occurred before this version</td></tr><tr><td align="left">-first &lt;when&gt;</td><td align="left">first="&lt;when&gt;"</td><td align="left">allow only warnings that first occurred in this version</td></tr><tr><td align="left">-last &lt;when&gt;</td><td align="left">last="&lt;when&gt;"</td><td align="left">allow only warnings that last occurred in this version</td></tr><tr><td align="left">-fixed &lt;when&gt;</td><td align="left">fixed="&lt;when&gt;"</td><td align="left">allow only warnings that last occurred in the previous version (clobbers <code class="option">-last</code>)</td></tr><tr><td align="left">-present &lt;when&gt;</td><td align="left">present="&lt;when&gt;"</td><td align="left">allow only warnings present in this version</td></tr><tr><td align="left">-absent &lt;when&gt;</td><td align="left">absent="&lt;when&gt;"</td><td align="left">allow only warnings absent in this version</td></tr><tr><td align="left">-active[:truth]</td><td align="left">active="[true|false]"</td><td align="left">allow only warnings alive in the last sequence number</td></tr><tr><td align="left">-introducedByChange[:truth]</td><td align="left">introducedByChange="[true|false]"</td><td align="left">allow only warnings introduced by a change of an existing class</td></tr><tr><td align="left">-removedByChange[:truth]</td><td align="left">removedByChange="[true|false]"</td><td align="left">allow only warnings removed by a change of a persisting class</td></tr><tr><td align="left">-newCode[:truth]</td><td align="left">newCode="[true|false]"</td><td align="left">allow only warnings introduced by the addition of a new class</td></tr><tr><td align="left">-removedCode[:truth]</td><td align="left">removedCode="[true|false]"</td><td align="left">allow only warnings removed by removal of a class</td></tr><tr><td align="left">-priority &lt;level&gt;</td><td align="left">priority="&lt;level&gt;"</td><td align="left">allow only warnings with this priority or higher</td></tr><tr><td align="left">-maxRank &lt;rank&gt;</td><td align="left">rank="[1..20]"</td><td align="left">allow only warnings with this rank or lower</td></tr><tr><td align="left">-class &lt;pattern&gt;</td><td align="left">class="&lt;class&gt;"</td><td align="left">allow only bugs whose primary class name matches this pattern</td></tr><tr><td align="left">-bugPattern &lt;pattern&gt;</td><td align="left">bugPattern="&lt;pattern&gt;"</td><td align="left">allow only bugs whose type matches this pattern</td></tr><tr><td align="left">-category &lt;category&gt;</td><td align="left">category="&lt;category&gt;"</td><td align="left">allow only warnings with a category that starts with this string</td></tr><tr><td align="left">-designation &lt;designation&gt;</td><td align="left">designation="&lt;designation&gt;"</td><td align="left">allow only warnings with this designation (e.g., -designation SHOULD_FIX)</td></tr><tr><td align="left">-withMessages[:truth] </td><td align="left">withMessages="[true|false]"</td><td align="left">the generated XML should contain textual messages</td></tr></tbody></table></div></div><br class="table-break"></div><div class="sect2" title="1.4.&nbsp;mineBugHistory"><div class="titlepage"><div><div><h3 class="title"><a name="mineBugHistory"></a>1.4.&nbsp;mineBugHistory</h3></div></div></div><p>This command generates a table containing counts of the numbers of warnings
-in each version of a multiversion bug database.</p><p>This functionality may also can be accessed from ant.
-First create a taskdef for <span class="command"><strong>mineBugHistory</strong></span> in your
-build file:
-</p><pre class="programlisting">
-
-&lt;taskdef name="mineBugHistory" classname="edu.umd.cs.findbugs.anttask.MineBugHistoryTask"&gt;
-    &lt;classpath refid="findbugs.lib" /&gt;
-&lt;/taskdef&gt;
-
-</pre><p>Attributes for this ant task are listed in the following table.
-To specify an input file either use the <code class="literal">input</code>
-attribute or nest it inside the ant call with a
-<code class="literal">&lt;datafile&gt;</code> element.  For example:
-</p><pre class="programlisting">
-
-&lt;mineBugHistory home="${findbugs.home}" ...&gt;
-    &lt;datafile name="analyze.xml"/&gt;
-&lt;/mineBugHistory&gt;
-
-</pre><div class="table"><a name="mineBugHistoryOptionsTable"></a><p class="title"><b>Table&nbsp;12.3.&nbsp;Options for mineBugHistory command</b></p><div class="table-contents"><table summary="Options for mineBugHistory command" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">Command-line option</th><th align="left">Ant attribute</th><th align="left">Meaning</th></tr></thead><tbody><tr><td align="left">&nbsp;</td><td align="left">input="&lt;file&gt;"</td><td align="left">use file as input</td></tr><tr><td align="left">&nbsp;</td><td align="left">output="&lt;file&gt;"</td><td align="left">write output to file</td></tr><tr><td align="left">-formatDates</td><td align="left">formatDates="[true|false]"</td><td align="left">render dates in textual form</td></tr><tr><td align="left">-noTabs</td><td align="left">noTabs="[true|false]"</td><td align="left">delimit columns with groups of spaces instead of tabs (see below)</td></tr><tr><td align="left">-summary</td><td align="left">summary="[true|false]"</td><td align="left">output terse summary of changes over the last ten entries</td></tr></tbody></table></div></div><br class="table-break"><p>
-        The <code class="option">-noTabs</code> output can be easier to read from a shell
-        with a fixed-width font.
-        Because numeric columns are right-justified, spaces may precede the
-        first column value. This option also causes <code class="option">-formatDates</code>
-        to render dates in terser format without embedded whitespace.
-        </p><p>The table is a tab-separated (barring <code class="option">-noTabs</code>)
-        table with the following columns:</p><div class="table"><a name="mineBugHistoryColumns"></a><p class="title"><b>Table&nbsp;12.4.&nbsp;Columns in mineBugHistory output</b></p><div class="table-contents"><table summary="Columns in mineBugHistory output" border="1"><colgroup><col><col></colgroup><thead><tr><th align="left">Title</th><th align="left">Meaning</th></tr></thead><tbody><tr><td align="left">seq</td><td align="left">Sequence number (successive integers, starting at 0)</td></tr><tr><td align="left">version</td><td align="left">Version name</td></tr><tr><td align="left">time</td><td align="left">Release timestamp</td></tr><tr><td align="left">classes</td><td align="left">Number of classes analyzed</td></tr><tr><td align="left">NCSS</td><td align="left">Non Commenting Source Statements</td></tr><tr><td align="left">added</td><td align="left">Count of new warnings for a class that existed in the previous version</td></tr><tr><td align="left">newCode</td><td align="left">Count of new warnings for a class that did not exist in the previous version</td></tr><tr><td align="left">fixed</td><td align="left">Count of warnings removed from a class that remains in the current version</td></tr><tr><td align="left">removed</td><td align="left">Count of warnings in the previous version for a class that is not present in the current version</td></tr><tr><td align="left">retained</td><td align="left">Count of warnings that were in both the previous and current version</td></tr><tr><td align="left">dead</td><td align="left">Warnings that were present in earlier versions but in neither the current version or the immediately preceeding version</td></tr><tr><td align="left">active</td><td align="left">Total warnings present in the current version</td></tr></tbody></table></div></div><br class="table-break"></div><div class="sect2" title="1.5.&nbsp;defectDensity"><div class="titlepage"><div><div><h3 class="title"><a name="defectDensity"></a>1.5.&nbsp;defectDensity</h3></div></div></div><p>
-This command lists information about defect density (warnings per 1000 NCSS) for the entire project and each class and package.
-It can either be invoked with no files specified on the command line (in which case it reads from standard input)
-or with one file specified on the command line.</p><p>It generates a table with the following columns, and with one
-row for the entire project, and one row for each package or class that contains at least
-4 warnings.</p><div class="table"><a name="defectDensityColumns"></a><p class="title"><b>Table&nbsp;12.5.&nbsp;Columns in defectDensity output</b></p><div class="table-contents"><table summary="Columns in defectDensity output" border="1"><colgroup><col><col></colgroup><thead><tr><th align="left">Title</th><th align="left">Meaning</th></tr></thead><tbody><tr><td align="left">kind</td><td align="left">project, package or class</td></tr><tr><td align="left">name</td><td align="left">The name of the project, package or class</td></tr><tr><td align="left">density</td><td align="left">Number of warnings generated per 1000 lines of NCSS.</td></tr><tr><td align="left">bugs</td><td align="left">Number of warnings</td></tr><tr><td align="left">NCSS</td><td align="left">Calculated number of NCSS</td></tr></tbody></table></div></div><br class="table-break"></div><div class="sect2" title="1.6.&nbsp;convertXmlToText"><div class="titlepage"><div><div><h3 class="title"><a name="convertXmlToText"></a>1.6.&nbsp;convertXmlToText</h3></div></div></div><p>
-                This command converts a warning collection in XML format to a text
-                format with one line per warning, or to HTML.
-            </p><p>This functionality may also can be accessed from ant.
-First create a taskdef for <span class="command"><strong>convertXmlToText</strong></span> in your
-build file:
-</p><pre class="programlisting">
-
-&lt;taskdef name="convertXmlToText" classname="edu.umd.cs.findbugs.anttask.ConvertXmlToTextTask"&gt;
-    &lt;classpath refid="findbugs.lib" /&gt;
-&lt;/taskdef&gt;
-
-</pre><p>Attributes for this ant task are listed in the following table.</p><div class="table"><a name="convertXmlToTextTable"></a><p class="title"><b>Table&nbsp;12.6.&nbsp;Options for convertXmlToText command</b></p><div class="table-contents"><table summary="Options for convertXmlToText command" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">Command-line option</th><th align="left">Ant attribute</th><th align="left">Meaning</th></tr></thead><tbody><tr><td align="left">&nbsp;</td><td align="left">input="&lt;filename&gt;"</td><td align="left">use file as input</td></tr><tr><td align="left">&nbsp;</td><td align="left">output="&lt;filename&gt;"</td><td align="left">output results to file</td></tr><tr><td align="left">-longBugCodes</td><td align="left">longBugCodes="[true|false]"</td><td align="left">use the full bug pattern code instead of two-letter abbreviation</td></tr><tr><td align="left">&nbsp;</td><td align="left">format="text"</td><td align="left">generate plain text output with one bug per line (command-line default)</td></tr><tr><td align="left">-html[:stylesheet]</td><td align="left">format="html:&lt;stylesheet&gt;"</td><td align="left">generate output with specified stylesheet (see below), or default.xsl if unspecified</td></tr></tbody></table></div></div><br class="table-break"><p>
-            You may specify plain.xsl, default.xsl, fancy.xsl, fancy-hist.xsl,
-            or your own XSL stylesheet for the -html/format option.
-            Despite the name of this option, you may specify
-            a stylesheet that emits something other than html.
-            When applying a stylesheet other than those included
-            with FindBugs (listed above), the -html/format option should be used
-            with a path or URL to the stylesheet.
-            </p></div><div class="sect2" title="1.7.&nbsp;setBugDatabaseInfo"><div class="titlepage"><div><div><h3 class="title"><a name="setBugDatabaseInfo"></a>1.7.&nbsp;setBugDatabaseInfo</h3></div></div></div><p>
-                This command sets meta-information in a specified warning collection.
-                It takes the following options:
-            </p><p>This functionality may also can be accessed from ant.
-First create a taskdef for <span class="command"><strong>setBugDatabaseInfo</strong></span> in your
-build file:
-</p><pre class="programlisting">
-
-&lt;taskdef name="setBugDatabaseInfo" classname="edu.umd.cs.findbugs.anttask.SetBugDatabaseInfoTask"&gt;
-    &lt;classpath refid="findbugs.lib" /&gt;
-&lt;/taskdef&gt;
-
-</pre><p>Attributes for this ant task are listed in the following table.
-To specify an input file either use the <code class="literal">input</code>
-attribute or nest it inside the ant call with a
-<code class="literal">&lt;datafile&gt;</code> element.  For example:
-</p><pre class="programlisting">
-
-&lt;setBugDatabaseInfo home="${findbugs.home}" ...&gt;
-    &lt;datafile name="analyze.xml"/&gt;
-&lt;/setBugDatabaseInfo&gt;
-
-</pre><div class="table"><a name="setBugDatabaseInfoOptions"></a><p class="title"><b>Table&nbsp;12.7.&nbsp;setBugDatabaseInfo Options</b></p><div class="table-contents"><table summary="setBugDatabaseInfo Options" border="1"><colgroup><col><col><col></colgroup><thead><tr><th align="left">Command-line option</th><th align="left">Ant attribute</th><th align="left">Meaning</th></tr></thead><tbody><tr><td align="left">&nbsp;</td><td align="left">input="&lt;file&gt;"</td><td align="left">use file as input</td></tr><tr><td align="left">&nbsp;</td><td align="left">output="&lt;file&gt;"</td><td align="left">write output to file</td></tr><tr><td align="left">-name &lt;name&gt;</td><td align="left">name="&lt;name&gt;"</td><td align="left">set name for (last) revision</td></tr><tr><td align="left">-timestamp &lt;when&gt;</td><td align="left">timestamp="&lt;when&gt;"</td><td align="left">set timestamp for (last) revision</td></tr><tr><td align="left">-source &lt;directory&gt;</td><td align="left">source="&lt;directory&gt;"</td><td align="left">add specified directory to the source search path</td></tr><tr><td align="left">-findSource &lt;directory&gt;</td><td align="left">findSource="&lt;directory&gt;"</td><td align="left">find and add all relevant source directions contained within specified directory</td></tr><tr><td align="left">-suppress &lt;filter file&gt;</td><td align="left">suppress="&lt;filter file&gt;"</td><td align="left">suppress warnings matched by this file (replaces previous suppressions)</td></tr><tr><td align="left">-withMessages</td><td align="left">withMessages="[true|false]"</td><td align="left">add textual messages to XML</td></tr><tr><td align="left">-resetSource</td><td align="left">resetSource="[true|false]"</td><td align="left">remove all source search paths</td></tr></tbody></table></div></div><br class="table-break"></div><div class="sect2" title="1.8.&nbsp;listBugDatabaseInfo"><div class="titlepage"><div><div><h3 class="title"><a name="listBugDatabaseInfo"></a>1.8.&nbsp;listBugDatabaseInfo</h3></div></div></div><p>This command takes a list of zero or more xml bug database filenames on the command line.
-If zero file names are provided, it reads from standard input and does not generate
-a table header.</p><p>There is only one option: <code class="option">-formatDates</code> renders dates
-    in textual form.
-    </p><p>The output is a table one row per bug database and the following columns:</p><div class="table"><a name="listBugDatabaseInfoColumns"></a><p class="title"><b>Table&nbsp;12.8.&nbsp;listBugDatabaseInfo Columns</b></p><div class="table-contents"><table summary="listBugDatabaseInfo Columns" border="1"><colgroup><col><col></colgroup><thead><tr><th align="left">Column</th><th align="left">Meaning</th></tr></thead><tbody><tr><td align="left">version</td><td align="left">version name</td></tr><tr><td align="left">time</td><td align="left">Release timestamp</td></tr><tr><td align="left">classes</td><td align="left">Number of classes analyzed</td></tr><tr><td align="left">NCSS</td><td align="left">Non Commenting Source Statements analyzed</td></tr><tr><td align="left">total</td><td align="left">Total number of warnings of all kinds</td></tr><tr><td align="left">high</td><td align="left">Total number of high priority warnings of all kinds</td></tr><tr><td align="left">medium</td><td align="left">Total number of medium/normal priority warnings of all kinds</td></tr><tr><td align="left">low</td><td align="left">Total number of low priority warnings of all kinds</td></tr><tr><td align="left">filename</td><td align="left">filename of database</td></tr></tbody></table></div></div><br class="table-break"></div></div><div class="sect1" title="2.&nbsp;Examples"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="examples"></a>2.&nbsp;Examples</h2></div></div></div><div class="sect2" title="2.1.&nbsp;Mining history using proveded shell scrips"><div class="titlepage"><div><div><h3 class="title"><a name="unixscriptsexamples"></a>2.1.&nbsp;Mining history using proveded shell scrips</h3></div></div></div><p>In all of the following, the commands are given in a directory that contains
-directories jdk1.6.0-b12, jdk1.6.0-b13, ..., jdk1.6.0-b60.</p><p>You can use the command:</p><pre class="screen">
-computeBugHistory jdk1.6.0-b* | filterBugs -bugPattern IL_ | mineBugHistory -formatDates
-</pre><p>to generate the following output:</p><pre class="screen">
-seq	version	time	classes	NCSS	added	newCode	fixed	removed	retained	dead	active
-0	jdk1.6.0-b12	"Thu Nov 11 09:07:20 EST 2004"	13128	811569	0	4	0	0	0	0	4
-1	jdk1.6.0-b13	"Thu Nov 18 06:02:06 EST 2004"	13128	811570	0	0	0	0	4	0	4
-2	jdk1.6.0-b14	"Thu Dec 02 06:12:26 EST 2004"	13145	811786	0	0	2	0	2	0	2
-3	jdk1.6.0-b15	"Thu Dec 09 06:07:04 EST 2004"	13174	811693	0	0	1	0	1	2	1
-4	jdk1.6.0-b16	"Thu Dec 16 06:21:28 EST 2004"	13175	811715	0	0	0	0	1	3	1
-5	jdk1.6.0-b17	"Thu Dec 23 06:27:22 EST 2004"	13176	811974	0	0	0	0	1	3	1
-6	jdk1.6.0-b19	"Thu Jan 13 06:41:16 EST 2005"	13176	812011	0	0	0	0	1	3	1
-7	jdk1.6.0-b21	"Thu Jan 27 05:57:52 EST 2005"	13177	812173	0	0	0	0	1	3	1
-8	jdk1.6.0-b23	"Thu Feb 10 05:44:36 EST 2005"	13179	812188	0	0	0	0	1	3	1
-9	jdk1.6.0-b26	"Thu Mar 03 06:04:02 EST 2005"	13199	811770	0	0	0	0	1	3	1
-10	jdk1.6.0-b27	"Thu Mar 10 04:48:38 EST 2005"	13189	812440	0	0	0	0	1	3	1
-11	jdk1.6.0-b28	"Thu Mar 17 02:54:22 EST 2005"	13185	812056	0	0	0	0	1	3	1
-12	jdk1.6.0-b29	"Thu Mar 24 03:09:20 EST 2005"	13117	809468	0	0	0	0	1	3	1
-13	jdk1.6.0-b30	"Thu Mar 31 02:53:32 EST 2005"	13118	809501	0	0	0	0	1	3	1
-14	jdk1.6.0-b31	"Thu Apr 07 03:00:14 EDT 2005"	13117	809572	0	0	0	0	1	3	1
-15	jdk1.6.0-b32	"Thu Apr 14 02:56:56 EDT 2005"	13169	811096	0	0	0	0	1	3	1
-16	jdk1.6.0-b33	"Thu Apr 21 02:46:22 EDT 2005"	13187	811942	0	0	0	0	1	3	1
-17	jdk1.6.0-b34	"Thu Apr 28 02:49:00 EDT 2005"	13195	813488	0	1	0	0	1	3	2
-18	jdk1.6.0-b35	"Thu May 05 02:49:04 EDT 2005"	13457	829837	0	0	0	0	2	3	2
-19	jdk1.6.0-b36	"Thu May 12 02:59:46 EDT 2005"	13462	831278	0	0	0	0	2	3	2
-20	jdk1.6.0-b37	"Thu May 19 02:55:08 EDT 2005"	13464	831971	0	0	0	0	2	3	2
-21	jdk1.6.0-b38	"Thu May 26 03:08:16 EDT 2005"	13564	836565	0	0	0	0	2	3	2
-22	jdk1.6.0-b39	"Fri Jun 03 03:10:48 EDT 2005"	13856	849992	0	1	0	0	2	3	3
-23	jdk1.6.0-b40	"Thu Jun 09 03:30:28 EDT 2005"	15972	959619	0	2	0	0	3	3	5
-24	jdk1.6.0-b41	"Thu Jun 16 03:19:22 EDT 2005"	15972	959619	0	0	0	0	5	3	5
-25	jdk1.6.0-b42	"Fri Jun 24 03:38:54 EDT 2005"	15966	958581	0	0	0	0	5	3	5
-26	jdk1.6.0-b43	"Thu Jul 14 03:09:34 EDT 2005"	16041	960544	0	0	0	0	5	3	5
-27	jdk1.6.0-b44	"Thu Jul 21 03:05:54 EDT 2005"	16041	960547	0	0	0	0	5	3	5
-28	jdk1.6.0-b45	"Thu Jul 28 03:26:10 EDT 2005"	16037	960606	0	0	1	0	4	3	4
-29	jdk1.6.0-b46	"Thu Aug 04 03:02:48 EDT 2005"	15936	951355	0	0	0	0	4	4	4
-30	jdk1.6.0-b47	"Thu Aug 11 03:18:56 EDT 2005"	15964	952387	0	0	1	0	3	4	3
-31	jdk1.6.0-b48	"Thu Aug 18 08:10:40 EDT 2005"	15970	953421	0	0	0	0	3	5	3
-32	jdk1.6.0-b49	"Thu Aug 25 03:24:38 EDT 2005"	16048	958940	0	0	0	0	3	5	3
-33	jdk1.6.0-b50	"Thu Sep 01 01:52:40 EDT 2005"	16287	974937	1	0	0	0	3	5	4
-34	jdk1.6.0-b51	"Thu Sep 08 01:55:36 EDT 2005"	16362	979377	0	0	0	0	4	5	4
-35	jdk1.6.0-b52	"Thu Sep 15 02:04:08 EDT 2005"	16477	979399	0	0	0	0	4	5	4
-36	jdk1.6.0-b53	"Thu Sep 22 02:00:28 EDT 2005"	16019	957900	0	0	1	0	3	5	3
-37	jdk1.6.0-b54	"Thu Sep 29 01:54:34 EDT 2005"	16019	957900	0	0	0	0	3	6	3
-38	jdk1.6.0-b55	"Thu Oct 06 01:54:14 EDT 2005"	16051	959014	0	0	0	0	3	6	3
-39	jdk1.6.0-b56	"Thu Oct 13 01:54:12 EDT 2005"	16211	970835	0	0	0	0	3	6	3
-40	jdk1.6.0-b57	"Thu Oct 20 01:55:26 EDT 2005"	16279	971627	0	0	0	0	3	6	3
-41	jdk1.6.0-b58	"Thu Oct 27 01:56:30 EDT 2005"	16283	971945	0	0	0	0	3	6	3
-42	jdk1.6.0-b59	"Thu Nov 03 01:56:58 EST 2005"	16232	972193	0	0	0	0	3	6	3
-43	jdk1.6.0-b60	"Thu Nov 10 01:54:18 EST 2005"	16235	972346	0	0	0	0	3	6	3
-</pre><p>
-We could also generate that information directly, without creating an intermediate db.xml file, using the command
-</p><pre class="screen">
-computeBugHistory  jdk1.6.0-b*/jre/lib/rt.xml | filterBugs -bugPattern IL_ db.xml | mineBugHistory -formatDates
-</pre><p>We can then use that information to display a graph showing the number of infinite recursive loops
-found by FindBugs in each build of Sun's JDK1.6.0. The blue area indicates the number of infinite
-recursive loops in that build, the red area above it indicates the number of infinite recursive loops that existed
-in some previous version but not in the current version (thus, the combined height of the red and blue areas
-is guaranteed to never decrease, and goes up whenever a new infinite recursive loop bug is introduced). The height
-of the red area is computed as the sum of the fixed, removed and dead values for each version.
-The reductions in builds 13 and 14 came after Sun was notified about the bugs found by FindBugs in the JDK.
-    </p><div class="mediaobject"><img src="infiniteRecursiveLoops.png"></div><p>
-Given the db.xml file that contains the results for all the jdk1.6.0 builds, the following command will show the history of high and medium priority correctness warnings:
-</p><pre class="screen">
-filterBugs -priority M -category C db.xml | mineBugHistory -formatDates
-</pre><p>
-generating the table:
-</p><pre class="screen">
-seq	version	time	classes	NCSS	added	newCode	fixed	removed	retained	dead	active
-0	jdk1.6.0-b12	"Thu Nov 11 09:07:20 EST 2004"	13128	811569	0	1075	0	0	0	0	1075
-1	jdk1.6.0-b13	"Thu Nov 18 06:02:06 EST 2004"	13128	811570	0	0	0	0	1075	0	1075
-2	jdk1.6.0-b14	"Thu Dec 02 06:12:26 EST 2004"	13145	811786	3	0	6	0	1069	0	1072
-3	jdk1.6.0-b15	"Thu Dec 09 06:07:04 EST 2004"	13174	811693	2	1	3	0	1069	6	1072
-4	jdk1.6.0-b16	"Thu Dec 16 06:21:28 EST 2004"	13175	811715	0	0	1	0	1071	9	1071
-5	jdk1.6.0-b17	"Thu Dec 23 06:27:22 EST 2004"	13176	811974	0	0	1	0	1070	10	1070
-6	jdk1.6.0-b19	"Thu Jan 13 06:41:16 EST 2005"	13176	812011	0	0	0	0	1070	11	1070
-7	jdk1.6.0-b21	"Thu Jan 27 05:57:52 EST 2005"	13177	812173	0	0	1	0	1069	11	1069
-8	jdk1.6.0-b23	"Thu Feb 10 05:44:36 EST 2005"	13179	812188	0	0	0	0	1069	12	1069
-9	jdk1.6.0-b26	"Thu Mar 03 06:04:02 EST 2005"	13199	811770	0	0	2	1	1066	12	1066
-10	jdk1.6.0-b27	"Thu Mar 10 04:48:38 EST 2005"	13189	812440	1	0	1	1	1064	15	1065
-11	jdk1.6.0-b28	"Thu Mar 17 02:54:22 EST 2005"	13185	812056	0	0	0	0	1065	17	1065
-12	jdk1.6.0-b29	"Thu Mar 24 03:09:20 EST 2005"	13117	809468	3	0	8	26	1031	17	1034
-13	jdk1.6.0-b30	"Thu Mar 31 02:53:32 EST 2005"	13118	809501	0	0	0	0	1034	51	1034
-14	jdk1.6.0-b31	"Thu Apr 07 03:00:14 EDT 2005"	13117	809572	0	0	0	0	1034	51	1034
-15	jdk1.6.0-b32	"Thu Apr 14 02:56:56 EDT 2005"	13169	811096	1	1	0	1	1033	51	1035
-16	jdk1.6.0-b33	"Thu Apr 21 02:46:22 EDT 2005"	13187	811942	3	0	2	1	1032	52	1035
-17	jdk1.6.0-b34	"Thu Apr 28 02:49:00 EDT 2005"	13195	813488	0	1	0	0	1035	55	1036
-18	jdk1.6.0-b35	"Thu May 05 02:49:04 EDT 2005"	13457	829837	0	36	2	0	1034	55	1070
-19	jdk1.6.0-b36	"Thu May 12 02:59:46 EDT 2005"	13462	831278	0	0	0	0	1070	57	1070
-20	jdk1.6.0-b37	"Thu May 19 02:55:08 EDT 2005"	13464	831971	0	1	1	0	1069	57	1070
-21	jdk1.6.0-b38	"Thu May 26 03:08:16 EDT 2005"	13564	836565	1	7	2	6	1062	58	1070
-22	jdk1.6.0-b39	"Fri Jun 03 03:10:48 EDT 2005"	13856	849992	6	39	5	0	1065	66	1110
-23	jdk1.6.0-b40	"Thu Jun 09 03:30:28 EDT 2005"	15972	959619	7	147	11	0	1099	71	1253
-24	jdk1.6.0-b41	"Thu Jun 16 03:19:22 EDT 2005"	15972	959619	0	0	0	0	1253	82	1253
-25	jdk1.6.0-b42	"Fri Jun 24 03:38:54 EDT 2005"	15966	958581	3	0	1	2	1250	82	1253
-26	jdk1.6.0-b43	"Thu Jul 14 03:09:34 EDT 2005"	16041	960544	5	11	15	8	1230	85	1246
-27	jdk1.6.0-b44	"Thu Jul 21 03:05:54 EDT 2005"	16041	960547	0	0	0	0	1246	108	1246
-28	jdk1.6.0-b45	"Thu Jul 28 03:26:10 EDT 2005"	16037	960606	19	0	2	0	1244	108	1263
-29	jdk1.6.0-b46	"Thu Aug 04 03:02:48 EDT 2005"	15936	951355	13	1	1	32	1230	110	1244
-30	jdk1.6.0-b47	"Thu Aug 11 03:18:56 EDT 2005"	15964	952387	163	8	7	20	1217	143	1388
-31	jdk1.6.0-b48	"Thu Aug 18 08:10:40 EDT 2005"	15970	953421	0	0	0	0	1388	170	1388
-32	jdk1.6.0-b49	"Thu Aug 25 03:24:38 EDT 2005"	16048	958940	1	11	1	0	1387	170	1399
-33	jdk1.6.0-b50	"Thu Sep 01 01:52:40 EDT 2005"	16287	974937	19	27	16	7	1376	171	1422
-34	jdk1.6.0-b51	"Thu Sep 08 01:55:36 EDT 2005"	16362	979377	1	15	3	0	1419	194	1435
-35	jdk1.6.0-b52	"Thu Sep 15 02:04:08 EDT 2005"	16477	979399	0	0	1	1	1433	197	1433
-36	jdk1.6.0-b53	"Thu Sep 22 02:00:28 EDT 2005"	16019	957900	13	12	16	20	1397	199	1422
-37	jdk1.6.0-b54	"Thu Sep 29 01:54:34 EDT 2005"	16019	957900	0	0	0	0	1422	235	1422
-38	jdk1.6.0-b55	"Thu Oct 06 01:54:14 EDT 2005"	16051	959014	1	4	7	0	1415	235	1420
-39	jdk1.6.0-b56	"Thu Oct 13 01:54:12 EDT 2005"	16211	970835	6	8	37	0	1383	242	1397
-40	jdk1.6.0-b57	"Thu Oct 20 01:55:26 EDT 2005"	16279	971627	0	0	0	0	1397	279	1397
-41	jdk1.6.0-b58	"Thu Oct 27 01:56:30 EDT 2005"	16283	971945	0	1	1	0	1396	279	1397
-42	jdk1.6.0-b59	"Thu Nov 03 01:56:58 EST 2005"	16232	972193	6	0	5	0	1392	280	1398
-43	jdk1.6.0-b60	"Thu Nov 10 01:54:18 EST 2005"	16235	972346	0	0	0	0	1398	285	1398
-44	jdk1.6.0-b61	"Thu Nov 17 01:58:42 EST 2005"	16202	971134	2	0	4	0	1394	285	1396
-</pre></div><div class="sect2" title="2.2.&nbsp;Incremental history maintenance"><div class="titlepage"><div><div><h3 class="title"><a name="incrementalhistory"></a>2.2.&nbsp;Incremental history maintenance</h3></div></div></div><p>
-If db.xml contains the results of running findbugs over builds b12 - b60, we can update db.xml to include the results of analyzing b61 with the commands:
-</p><pre class="screen">
-computeBugHistory -output db.xml db.xml jdk1.6.0-b61/jre/lib/rt.xml
-</pre></div></div><div class="sect1" title="3.&nbsp;Ant example"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="antexample"></a>3.&nbsp;Ant example</h2></div></div></div><p>
-Here is a complete ant script example for both running findbugs and running a chain of data-mining tools afterward:
-</p><pre class="screen">
-
-&lt;project name="analyze_asm_util" default="findbugs"&gt;
-   &lt;!-- findbugs task definition --&gt;
-   &lt;property name="findbugs.home" value="/Users/ben/Documents/workspace/findbugs/findbugs" /&gt;
-   &lt;property name="jvmargs" value="-server -Xss1m -Xmx800m -Duser.language=en -Duser.region=EN -Dfindbugs.home=${findbugs.home}" /&gt;
-
-    &lt;path id="findbugs.lib"&gt;
-      &lt;fileset dir="${findbugs.home}/lib"&gt;
-         &lt;include name="findbugs-ant.jar"/&gt;
-      &lt;/fileset&gt;
-   &lt;/path&gt;
-
-   &lt;taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"&gt;
-      &lt;classpath refid="findbugs.lib" /&gt;
-   &lt;/taskdef&gt;
-
-   &lt;taskdef name="computeBugHistory" classname="edu.umd.cs.findbugs.anttask.ComputeBugHistoryTask"&gt;
-      &lt;classpath refid="findbugs.lib" /&gt;
-   &lt;/taskdef&gt;
-
-   &lt;taskdef name="setBugDatabaseInfo" classname="edu.umd.cs.findbugs.anttask.SetBugDatabaseInfoTask"&gt;
-      &lt;classpath refid="findbugs.lib" /&gt;
-   &lt;/taskdef&gt;
-
-   &lt;taskdef name="mineBugHistory" classname="edu.umd.cs.findbugs.anttask.MineBugHistoryTask"&gt;
-      &lt;classpath refid="findbugs.lib" /&gt;
-   &lt;/taskdef&gt;
-
-   &lt;!-- findbugs task definition --&gt;
-   &lt;target name="findbugs"&gt;
-      &lt;antcall target="analyze" /&gt;
-      &lt;antcall target="mine" /&gt;
-   &lt;/target&gt;
-
-   &lt;!-- analyze task --&gt;
-   &lt;target name="analyze"&gt;
-      &lt;!-- run findbugs against asm-util --&gt;
-      &lt;findbugs home="${findbugs.home}"
-                output="xml:withMessages"
-                timeout="90000000"
-                reportLevel="experimental"
-                workHard="true"
-                effort="max"
-                adjustExperimental="true"
-                jvmargs="${jvmargs}"
-                failOnError="true"
-                outputFile="out.xml"
-                projectName="Findbugs"
-                debug="false"&gt;
-         &lt;class location="asm-util-3.0.jar" /&gt;
-      &lt;/findbugs&gt;
-   &lt;/target&gt;
-
-   &lt;target name="mine"&gt;
-
-      &lt;!-- Set info to the latest analysis --&gt;
-      &lt;setBugDatabaseInfo home="${findbugs.home}"
-                            withMessages="true"
-                            name="asm-util-3.0.jar"
-                            input="out.xml"
-                            output="out-rel.xml"/&gt;
-
-      &lt;!-- Checking if history file already exists (out-hist.xml) --&gt;
-      &lt;condition property="mining.historyfile.available"&gt;
-         &lt;available file="out-hist.xml"/&gt;
-      &lt;/condition&gt;
-      &lt;condition property="mining.historyfile.notavailable"&gt;
-         &lt;not&gt;
-            &lt;available file="out-hist.xml"/&gt;
-         &lt;/not&gt;
-      &lt;/condition&gt;
-
-      &lt;!-- this target is executed if the history file do not exist (first run) --&gt;
-      &lt;antcall target="history-init"&gt;
-        &lt;param name="data.file" value="out-rel.xml" /&gt;
-        &lt;param name="hist.file" value="out-hist.xml" /&gt;
-      &lt;/antcall&gt;
-      &lt;!-- else this one is executed --&gt;
-      &lt;antcall target="history"&gt;
-        &lt;param name="data.file"         value="out-rel.xml" /&gt;
-        &lt;param name="hist.file"         value="out-hist.xml" /&gt;
-        &lt;param name="hist.summary.file" value="out-hist.txt" /&gt;
-      &lt;/antcall&gt;
-   &lt;/target&gt;
-
-   &lt;!-- Initializing history file --&gt;
-   &lt;target name="history-init" if="mining.historyfile.notavailable"&gt;
-      &lt;copy file="${data.file}" tofile="${hist.file}" /&gt;
-   &lt;/target&gt;
-
-   &lt;!-- Computing bug history --&gt;
-   &lt;target name="history" if="mining.historyfile.available"&gt;
-      &lt;!-- Merging ${data.file} into ${hist.file} --&gt;
-      &lt;computeBugHistory home="${findbugs.home}"
-                           withMessages="true"
-                           output="${hist.file}"&gt;
-            &lt;dataFile name="${hist.file}"/&gt;
-            &lt;dataFile name="${data.file}"/&gt;
-      &lt;/computeBugHistory&gt;
-
-      &lt;!-- Compute history into ${hist.summary.file} --&gt;
-      &lt;mineBugHistory home="${findbugs.home}"
-                        formatDates="true"
-                      noTabs="true"
-                        input="${hist.file}"
-                        output="${hist.summary.file}"/&gt;
-   &lt;/target&gt;
-
-&lt;/project&gt;
-
-</pre></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="rejarForAnalysis.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="license.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;11.&nbsp;Using rejarForAnalysis&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;13.&nbsp;License</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/eclipse.html b/tools/findbugs/doc/manual/eclipse.html
deleted file mode 100644
index 52ac8e9..0000000
--- a/tools/findbugs/doc/manual/eclipse.html
+++ /dev/null
@@ -1,112 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;7.&nbsp;Using the FindBugs&#8482; Eclipse plugin</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="anttask.html" title="Chapter&nbsp;6.&nbsp;Using the FindBugs&#8482; Ant task"><link rel="next" href="filter.html" title="Chapter&nbsp;8.&nbsp;Filter Files"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;7.&nbsp;Using the <span class="application">FindBugs</span>&#8482; Eclipse plugin</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="anttask.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="filter.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;7.&nbsp;Using the FindBugs&#8482; Eclipse plugin"><div class="titlepage"><div><div><h2 class="title"><a name="eclipse"></a>Chapter&nbsp;7.&nbsp;Using the <span class="application">FindBugs</span>&#8482; Eclipse plugin</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="eclipse.html#d0e1662">1. Requirements</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1670">2. Installation</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1717">3. Using the Plugin</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1748">4. Extending the Eclipse Plugin (since 2.0.0)</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1802">5. Troubleshooting</a></span></dt></dl></div><p>
-The FindBugs Eclipse plugin allows <span class="application">FindBugs</span> to be used within
-the <a class="ulink" href="http://www.eclipse.org/" target="_top">Eclipse</a> IDE.
-The FindBugs Eclipse plugin was generously contributed by Peter Friese.
-Phil Crosby and Andrei Loskutov contributed major improvements
-to the plugin.
-</p><div class="sect1" title="1.&nbsp;Requirements"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1662"></a>1.&nbsp;Requirements</h2></div></div></div><p>
-To use the <span class="application">FindBugs</span> Plugin for Eclipse, you need Eclipse 3.3 or later,
-and JRE/JDK 1.5 or later.
-</p></div><div class="sect1" title="2.&nbsp;Installation"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1670"></a>2.&nbsp;Installation</h2></div></div></div><p>
-  We provide update sites that allow you to automatically install FindBugs into Eclipse and also query and install updates.
-  There are three different update sites</p><div class="variablelist" title="FindBugs Eclipse update sites"><p class="title"><b>FindBugs Eclipse update sites</b></p><dl><dt><span class="term"><a class="ulink" href="http://findbugs.cs.umd.edu/eclipse/" target="_top">http://findbugs.cs.umd.edu/eclipse/</a></span></dt><dd><p>
-       Only provides official releases of FindBugs.
-      </p></dd><dt><span class="term"><a class="ulink" href="http://findbugs.cs.umd.edu/eclipse-candidate/" target="_top">http://findbugs.cs.umd.edu/eclipse-candidate/</a></span></dt><dd><p>
-          Provides official releases and release candidates of FindBugs.
-        </p></dd><dt><span class="term"><a class="ulink" href="http://findbugs.cs.umd.edu/eclipse-daily/" target="_top">http://findbugs.cs.umd.edu/eclipse-daily/</a></span></dt><dd><p>
-         Provides the daily build of FindBugs. No testing other than that it compiles.
-        </p></dd></dl></div><p>You can also manually
-download the plugin from the following link:
-<a class="ulink" href="http://prdownloads.sourceforge.net/findbugs/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122.zip?download" target="_top">http://prdownloads.sourceforge.net/findbugs/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122.zip?download</a>.
-Extract it in Eclipse's "plugins" subdirectory.
-(So &lt;eclipse_install_dir&gt;/plugins/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122/findbugs.png
-should be the path to the <span class="application">FindBugs</span> logo.)
-
-</p><p>
-Once the plugin is extracted, start Eclipse and choose
-<span class="guimenu">Help</span> &#8594; <span class="guimenuitem">About Eclipse Platform</span> &#8594; <span class="guimenuitem">Plug-in Details</span>.
-You should find a plugin called "FindBugs Plug-in" provided by "FindBugs Project".
-</p></div><div class="sect1" title="3.&nbsp;Using the Plugin"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1717"></a>3.&nbsp;Using the Plugin</h2></div></div></div><p>
-To get started, right click on a Java project in Package Explorer,
-and select the option labeled "Find Bugs".
-<span class="application">FindBugs</span> will run, and problem markers (displayed in source
-windows, and also in the Eclipse Problems view) will point to
-locations in your code which have been identified as potential instances
-of bug patterns.
-</p><p>
-You can also run <span class="application">FindBugs</span> on existing java archives (jar, ear, zip, war etc). Simply
-create an empty Java project and attach archives to the project classpath. Having that, you
-can now right click the archive node in Package Explorer and select the option labeled
-"Find Bugs". If you additionally configure the source code locations for the binaries,
-<span class="application">FindBugs</span> will also link the generated warnings to the right source files.
-</p><p>
-You may customize how <span class="application">FindBugs</span> runs by opening the Properties
-dialog for a Java project, and choosing the "Findbugs" property page.
-Options you may choose include:
-</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
-    Enable or disable the "Run FindBugs Automatically" checkbox.
-    When enabled, FindBugs will run every time you modify a Java class
-    within the project.
-    </p></li><li class="listitem"><p>
-    Choose minimum warning priority and enabled bug categories.
-    These options will choose which warnings are shown.
-    For example, if you select the "Medium" warning priority,
-    only Medium and High priority warnings will be shown.
-    Similarly, if you uncheck the "Style" checkbox, no warnings
-    in the Style category will be displayed.
-    </p></li><li class="listitem"><p>
-    Select detectors.  The table allows you to select which detectors
-    you want to enable for your project.
-    </p></li></ul></div></div><div class="sect1" title="4.&nbsp;Extending the Eclipse Plugin (since 2.0.0)"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1748"></a>4.&nbsp;Extending the Eclipse Plugin (since 2.0.0)</h2></div></div></div><p>
-Eclipse plugin supports contribution of custom <span class="application">FindBugs</span> detectors (see also
-<a class="ulink" href="http://code.google.com/p/findbugs/source/browse/trunk/findbugs/src/doc/AddingDetectors.txt" target="_top">AddingDetectors.txt</a>
-for more information). There are two ways to contribute custom plugins to the Eclipse:
-</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
-    Existing standard <span class="application">FindBugs</span> detector packages can be configured via
-    <span class="guimenu">Window</span> &#8594; <span class="guimenuitem">Preferences</span> &#8594; <span class="guimenuitem">Java</span> &#8594; <span class="guimenuitem"><span class="application">FindBugs</span></span> &#8594; <span class="guimenuitem">Misc. Settings</span> &#8594; <span class="guimenuitem">Custom Detectors</span>.
-    Simply specify there locations of any additional plugin libraries.
-    </p><p>
-    The benefit of this solution is that already existing detector packages can be
-    used "as is", and that you can quickly verify the quality of third party detectors.
-    The drawback is that you have to apply this settings in each
-    new Eclipse workspace, and this settings can't be shared between team members.
-    </p></li><li class="listitem"><p>
-    It is possible to contribute custom detectors via standard Eclipse extensions mechanism.
-    </p><p>
-    Please check the documentation of the
-    <a class="ulink" href="http://code.google.com/p/findbugs/source/browse/trunk/eclipsePlugin/schema/detectorPlugins.exsd" target="_top">
-    findBugsEclipsePlugin/schema/detectorPlugins.exsd</a>
-    extension point how to update the plugin.xml. Existing <span class="application">FindBugs</span> detector plugins can
-    be easily "extended" to be full featured <span class="application">FindBugs</span> AND Eclipse detector plugins.
-    Usually you only need to add META-INF/MANIFEST.MF and plugin.xml to the jar and
-    update your build scripts to not to override the MANIFEST.MF during the build.
-    </p><p>
-    The benefit of this solution is that for given (shared) Eclipse installation
-    each team member has exactly same detectors set, and there is no need to configure
-    anything anymore. The (really small) precondition
-    is that you have to convert your existing detectors package to the valid
-    Eclipse plugin. You can do this even for third-party detector packages.
-    Another major differentiator is the ability to extend the default FindBugs
-    classpath at runtime with required third party libraries (see
-    <a class="ulink" href="http://code.google.com/p/findbugs/source/browse/trunk/findbugs/src/doc/AddingDetectors.txt" target="_top">AddingDetectors.txt</a>
-    for more information).
-    </p></li></ul></div></div><div class="sect1" title="5.&nbsp;Troubleshooting"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1802"></a>5.&nbsp;Troubleshooting</h2></div></div></div><p>
-This section lists common problems with the plugin and (if known) how to resolve them.
-</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
-    If you see OutOfMemory error dialogs after starting <span class="application">FindBugs</span> analysis in Eclipse,
-    please increase JVM available memory: change eclipse.ini and add the lines below
-    to the end of the file:
-    </p><pre class="programlisting">
-    -vmargs
-    -Xmx1000m
-    </pre><p>
-    Important: the configuration arguments starting with the line "-vmargs" must
-    be last lines in the eclipse.ini file, and only one argument per line is allowed!
-    </p></li><li class="listitem"><p>
-    If you do not see any <span class="application">FindBugs</span> problem markers (in your source
-    windows or in the Problems View), you may need to change your
-    Problems View filter settings.  See
-    <a class="ulink" href="http://findbugs.sourceforge.net/FAQ.html#q7" target="_top">http://findbugs.sourceforge.net/FAQ.html#q7</a> for more information.
-    </p></li></ul></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="anttask.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="filter.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;6.&nbsp;Using the <span class="application">FindBugs</span>&#8482; <span class="application">Ant</span> task&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;8.&nbsp;Filter Files</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/example-code.png b/tools/findbugs/doc/manual/example-code.png
deleted file mode 100644
index fe01f31..0000000
--- a/tools/findbugs/doc/manual/example-code.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/manual/example-details.png b/tools/findbugs/doc/manual/example-details.png
deleted file mode 100644
index 1addf93..0000000
--- a/tools/findbugs/doc/manual/example-details.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/manual/example.png b/tools/findbugs/doc/manual/example.png
deleted file mode 100644
index 289b897..0000000
--- a/tools/findbugs/doc/manual/example.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/manual/filter.html b/tools/findbugs/doc/manual/filter.html
deleted file mode 100644
index 98b264f..0000000
--- a/tools/findbugs/doc/manual/filter.html
+++ /dev/null
@@ -1,363 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;8.&nbsp;Filter Files</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="eclipse.html" title="Chapter&nbsp;7.&nbsp;Using the FindBugs&#8482; Eclipse plugin"><link rel="next" href="analysisprops.html" title="Chapter&nbsp;9.&nbsp;Analysis Properties"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;8.&nbsp;Filter Files</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="eclipse.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="analysisprops.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;8.&nbsp;Filter Files"><div class="titlepage"><div><div><h2 class="title"><a name="filter"></a>Chapter&nbsp;8.&nbsp;Filter Files</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="filter.html#d0e1838">1. Introduction to Filter Files</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e1888">2. Types of Match clauses</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2136">3. Java element name matching</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2161">4. Caveats</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2191">5. Examples</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2249">6. Complete Example</a></span></dt></dl></div><p>
-Filter files may be used to include or exclude bug reports for particular classes
-and methods.  This chapter explains how to use filter files.
-
-</p><div class="note" title="Planned Features" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note: Planned Features"><tr><td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td><th align="left">Planned Features</th></tr><tr><td align="left" valign="top"><p>
-  Filters are currently only supported by the Command Line interface.
-  Eventually, filter support will be added to the GUI.
-</p></td></tr></table></div><p>
-</p><div class="sect1" title="1.&nbsp;Introduction to Filter Files"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1838"></a>1.&nbsp;Introduction to Filter Files</h2></div></div></div><p>
-Conceptually, a filter matches bug instances against a set of criteria.
-By defining a filter, you can select bug instances for special treatment;
-for example, to exclude or include them in a report.
-</p><p>
-A filter file is an <a class="ulink" href="http://www.w3.org/XML/" target="_top">XML</a> document with a top-level <code class="literal">FindBugsFilter</code> element
-which has some number of <code class="literal">Match</code> elements as children.  Each <code class="literal">Match</code>
-element represents a predicate which is applied to generated bug instances.
-Usually, a filter will be used to exclude bug instances.  For example:
-
-</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>findbugs -textui -exclude <em class="replaceable"><code>myExcludeFilter.xml</code></em> <em class="replaceable"><code>myApp.jar</code></em></strong></span>
-</pre><p>
-
-However, a filter could also be used to select bug instances to specifically
-report:
-
-</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>findbugs -textui -include <em class="replaceable"><code>myIncludeFilter.xml</code></em> <em class="replaceable"><code>myApp.jar</code></em></strong></span>
-</pre><p>
-</p><p>
-<code class="literal">Match</code> elements contain children, which are conjuncts of the predicate.
-In other words, each of the children must be true for the predicate to be true.
-</p></div><div class="sect1" title="2.&nbsp;Types of Match clauses"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1888"></a>2.&nbsp;Types of Match clauses</h2></div></div></div><div class="variablelist"><dl><dt><span class="term"><code class="literal">&lt;Bug&gt;</code></span></dt><dd><p>
-            This element specifies a particular bug pattern or patterns to match.
-            The <code class="literal">pattern</code> attribute is a comma-separated list of
-            bug pattern types.  You can find the bug pattern types for particular
-            warnings by looking at the output produced by the <span class="command"><strong>-xml</strong></span>
-            output option (the <code class="literal">type</code> attribute of <code class="literal">BugInstance</code>
-            elements), or from the <a class="ulink" href="../bugDescriptions.html" target="_top">bug
-            descriptions document</a>.
-   </p><p>
-               For more coarse-grained matching, use <code class="literal">code</code> attribute. It takes
-               a comma-separated list of bug abbreviations. For most-coarse grained matching use
-               <code class="literal">category</code> attriute, that takes a comma separated list of bug category names:
-               <code class="literal">CORRECTNESS</code>, <code class="literal">MT_CORRECTNESS</code>,
-               <code class="literal">BAD_PRACTICICE</code>, <code class="literal">PERFORMANCE</code>, <code class="literal">STYLE</code>.
-   </p><p>
-               If more than one of the attributes mentioned above are specified on the same
-               <code class="literal">&lt;Bug&gt;</code> element, all bug patterns that match either one of specified
-               pattern names, or abreviations, or categories will be matched.
-   </p><p>
-               As a backwards compatibility measure, <code class="literal">&lt;BugPattern&gt;</code> and
-               <code class="literal">&lt;BugCode&gt;</code> elements may be used instead of
-               <code class="literal">&lt;Bug&gt;</code> element. Each of these uses a
-               <code class="literal">name</code> attribute for specifying accepted values list. Support for these
-               elements may be removed in a future release.
-   </p></dd><dt><span class="term"><code class="literal">&lt;Confidence&gt;</code></span></dt><dd><p>
-            This element matches warnings with a particular bug confidence.
-            The <code class="literal">value</code> attribute should be an integer value:
-            1 to match high-confidence warnings, 2 to match normal-confidence warnings,
-            or 3 to match low-confidence warnings. &lt;Confidence&gt; replaced
-            &lt;Priority&gt; in 2.0.0 release.
-        </p></dd><dt><span class="term"><code class="literal">&lt;Priority&gt;</code></span></dt><dd><p>
-            Same as <code class="literal">&lt;Confidence&gt;</code>, exists for backward compatibility.
-        </p></dd><dt><span class="term"><code class="literal">&lt;Rank&gt;</code></span></dt><dd><p>
-            This element matches warnings with a particular bug rank.
-            The <code class="literal">value</code> attribute should be an integer value
-            between 1 and 20, where 1 to 4 are scariest, 5 to 9 scary, 10 to 14 troubling,
-            and 15 to 20 of concern bugs.
-        </p></dd><dt><span class="term"><code class="literal">&lt;Package&gt;</code></span></dt><dd><p>
-            This element matches warnings associated with classes within the package specified
-            using <code class="literal">name</code> attribute. Nested packages are not included (along the
-            lines of Java import statement). However matching multiple packages can be achieved
-            easily using regex name match.
-        </p></dd><dt><span class="term"><code class="literal">&lt;Class&gt;</code></span></dt><dd><p>
-            This element matches warnings associated with a particular class. The
-            <code class="literal">name</code> attribute is used to specify the exact or regex match pattern
-            for the class name.
-        </p><p>
-            As a backward compatibility measure, instead of element of this type, you can use
-             <code class="literal">class</code> attribute on a <code class="literal">Match</code> element to specify
-             exact an class name or <code class="literal">classregex</code> attribute to specify a regular
-             expression to match the class name against.
-        </p><p>
-            If the <code class="literal">Match</code> element contains neither a <code class="literal">Class</code> element,
-            nor a <code class="literal">class</code> / <code class="literal">classregex</code> attribute, the predicate will apply
-            to all classes. Such predicate is likely to match more bug instances than you want, unless it is
-            refined further down with apropriate method or field predicates.
-        </p></dd><dt><span class="term"><code class="literal">&lt;Method&gt;</code></span></dt><dd><p>This element specifies a method.  The <code class="literal">name</code> is used to specify
-   the exact or regex match pattern for the method name.
-   The <code class="literal">params</code> attribute is a comma-separated list
-   of the types of the method's parameters.  The <code class="literal">returns</code> attribute is
-   the method's return type.  In <code class="literal">params</code> and <code class="literal">returns</code>, class names
-   must be fully qualified. (E.g., "java.lang.String" instead of just
-   "String".) If one of the latter attributes is specified the other is required for creating a method signature.
-   Note that you can provide either <code class="literal">name</code> attribute or <code class="literal">params</code>
-   and <code class="literal">returns</code> attributes or all three of them. This way you can provide various kinds of
-   name and signature based matches.
-   </p></dd><dt><span class="term"><code class="literal">&lt;Field&gt;</code></span></dt><dd><p>This element specifies a field. The <code class="literal">name</code> attribute is is used to specify
-   the exact or regex match pattern for the field name. You can also filter fields according to their signature -
-   use <code class="literal">type</code> attribute to specify fully qualified type of the field. You can specify eiter or both
-   of these attributes in order to perform name / signature based matches.
-   </p></dd><dt><span class="term"><code class="literal">&lt;Local&gt;</code></span></dt><dd><p>This element specifies a local variable. The <code class="literal">name</code> attribute is is used to specify
-   the exact or regex match pattern for the local variable name. Local variables are variables defined within a method.
-   </p></dd><dt><span class="term"><code class="literal">&lt;Or&gt;</code></span></dt><dd><p>
-   This element combines <code class="literal">Match</code> clauses as disjuncts.  I.e., you can put two
-   <code class="literal">Method</code> elements in an <code class="literal">Or</code> clause in order to match either method.
-   </p></dd><dt><span class="term"><code class="literal">&lt;And&gt;</code></span></dt><dd><p>
-   This element combines <code class="literal">Match</code> clauses which both must evaluate to true.  I.e., you can put
-   <code class="literal">Bug</code> and <code class="literal">Priority</code> elements in an <code class="literal">And</code> clause in order
-   to match specific bugs with given priority only.
-   </p></dd><dt><span class="term"><code class="literal">&lt;Not&gt;</code></span></dt><dd><p>
-   This element inverts the included child <code class="literal">Match</code>. I.e., you can put a
-   <code class="literal">Bug</code> element in a <code class="literal">Not</code> clause in order to match any bug
-   excluding the given one.
-   </p></dd></dl></div></div><div class="sect1" title="3.&nbsp;Java element name matching"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2136"></a>3.&nbsp;Java element name matching</h2></div></div></div><p>
-If the <code class="literal">name</code> attribute of <code class="literal">Class</code>, <code class="literal">Method</code> or
-<code class="literal">Field</code> starts with the ~ character the rest of attribute content is interpreted as
-a Java regular expression that is matched against the names of the Java element in question.
-</p><p>
-Note that the pattern is matched against whole element name and therefore .* clauses need to be used
-at pattern beginning and/or end to perform substring matching.
-</p><p>
-See <a class="ulink" href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html" target="_top"><code class="literal">java.util.regex.Pattern</code></a>
-documentation for pattern syntax.
-</p></div><div class="sect1" title="4.&nbsp;Caveats"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2161"></a>4.&nbsp;Caveats</h2></div></div></div><p>
-<code class="literal">Match</code> clauses can only match information that is actually contained in the
-bug instances.  Every bug instance has a class, so in general, excluding
-bugs by class will work.
-</p><p>
-Some bug instances have two (or more) classes.  For example, the DE (dropped exception)
-bugs report both the class containing the method where the dropped exception
-happens, and the class which represents the type of the dropped exception.
-Only the <span class="emphasis"><em>first</em></span> (primary) class is matched against <code class="literal">Match</code> clauses.
-So, for example, if you want to suppress IC (initialization circularity)
-reports for classes "com.foobar.A" and "com.foobar.B", you would use
-two <code class="literal">Match</code> clauses:
-
-</p><pre class="programlisting">
-   &lt;Match&gt;
-      &lt;Class name="com.foobar.A" /&gt;
-      &lt;Bug code="IC" /&gt;
-   &lt;/Match&gt;
-
-   &lt;Match&gt;
-      &lt;Class name="com.foobar.B" /&gt;
-      &lt;Bug code="IC" /&gt;
-   &lt;/Match&gt;
-</pre><p>
-
-By explicitly matching both classes, you ensure that the IC bug instance will be
-matched regardless of which class involved in the circularity happens to be
-listed first in the bug instance.  (Of course, this approach might accidentally
-supress circularities involving "com.foobar.A" or "com.foobar.B" and a third
-class.)
-</p><p>
-Many kinds of bugs report what method they occur in.  For those bug instances,
-you can put <code class="literal">Method</code> clauses in the <code class="literal">Match</code> element and they should work
-as expected.
-</p></div><div class="sect1" title="5.&nbsp;Examples"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2191"></a>5.&nbsp;Examples</h2></div></div></div><p>
-  1. Match all bug reports for a class.
-
-</p><pre class="programlisting">
-
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.MyClass" /&gt;
-     &lt;/Match&gt;
-
-</pre><p>
-
-</p><p>
-  2. Match certain tests from a class by specifying their abbreviations.
-</p><pre class="programlisting">
-
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.MyClass"/ &gt;
-       &lt;Bug code="DE,UrF,SIC" /&gt;
-     &lt;/Match&gt;
-
-</pre><p>
-</p><p>
-  3. Match certain tests from all classes by specifying their abbreviations.
-
-</p><pre class="programlisting">
-
-     &lt;Match&gt;
-       &lt;Bug code="DE,UrF,SIC" /&gt;
-     &lt;/Match&gt;
-
-</pre><p>
-</p><p>
-  4. Match certain tests from all classes by specifying their category.
-
-</p><pre class="programlisting">
-
-     &lt;Match&gt;
-       &lt;Bug category="PERFORMANCE" /&gt;
-     &lt;/Match&gt;
-
-</pre><p>
-</p><p>
-  5. Match bug types from specified methods of a class by their abbreviations.
-
-</p><pre class="programlisting">
-
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.MyClass" /&gt;
-       &lt;Or&gt;
-         &lt;Method name="frob" params="int,java.lang.String" returns="void" /&gt;
-         &lt;Method name="blat" params="" returns="boolean" /&gt;
-       &lt;/Or&gt;
-       &lt;Bug code="DC" /&gt;
-     &lt;/Match&gt;
-
-</pre><p>
-</p><p>
-    6. Match a particular bug pattern in a particular method.
-
-</p><pre class="programlisting">
-
-    &lt;!-- A method with an open stream false positive. --&gt;
-    &lt;Match&gt;
-      &lt;Class name="com.foobar.MyClass" /&gt;
-      &lt;Method name="writeDataToFile" /&gt;
-      &lt;Bug pattern="OS_OPEN_STREAM" /&gt;
-    &lt;/Match&gt;
-
-</pre><p>
-</p><p>
-    7. Match a particular bug pattern with a given priority in a particular method.
-
-</p><pre class="programlisting">
-
-    &lt;!-- A method with a dead local store false positive (medium priority). --&gt;
-    &lt;Match&gt;
-      &lt;Class name="com.foobar.MyClass" /&gt;
-      &lt;Method name="someMethod" /&gt;
-      &lt;Bug pattern="DLS_DEAD_LOCAL_STORE" /&gt;
-      &lt;Priority value="2" /&gt;
-    &lt;/Match&gt;
-
-</pre><p>
-</p><p>
-    8. Match minor bugs introduced by AspectJ compiler (you are probably not interested in these unless
-    you are an AspectJ developer).
-
-</p><pre class="programlisting">
-
-    &lt;Match&gt;
-      &lt;Class name="~.*\$AjcClosure\d+" /&gt;
-      &lt;Bug pattern="DLS_DEAD_LOCAL_STORE" /&gt;
-      &lt;Method name="run" /&gt;
-    &lt;/Match&gt;
-    &lt;Match&gt;
-      &lt;Bug pattern="UUF_UNUSED_FIELD" /&gt;
-      &lt;Field name="~ajc\$.*" /&gt;
-    &lt;/Match&gt;
-
-</pre><p>
-</p><p>
-    9. Match bugs in specific parts of the code base
-
-</p><pre class="programlisting">
-
-    &lt;!-- match unused fields warnings in Messages classes in all packages --&gt;
-    &lt;Match&gt;
-      &lt;Class name="~.*\.Messages" /&gt;
-      &lt;Bug code="UUF" /&gt;
-    &lt;/Match&gt;
-    &lt;!-- match mutable statics warnings in all internal packages --&gt;
-    &lt;Match&gt;
-      &lt;Package name="~.*\.internal" /&gt;
-      &lt;Bug code="MS" /&gt;
-    &lt;/Match&gt;
-    &lt;!-- match anonymoous inner classes warnings in ui package hierarchy --&gt;
-    &lt;Match&gt;
-      &lt;Package name="~com\.foobar\.fooproject\.ui.*" /&gt;
-      &lt;Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON" /&gt;
-    &lt;/Match&gt;
-
-</pre><p>
-</p><p>
-    10. Match bugs on fields or methods with specific signatures
-</p><pre class="programlisting">
-
-    &lt;!-- match System.exit(...) usage warnings in void main(String[]) methods in all classes --&gt;
-    &lt;Match&gt;
-      &lt;Method returns="void" name="main" params="java.lang.String[]" /&gt;
-      &lt;Bug pattern="DM_EXIT" /&gt;
-    &lt;/Match&gt;
-    &lt;!-- match UuF warnings on fields of type com.foobar.DebugInfo on all classes --&gt;
-    &lt;Match&gt;
-      &lt;Field type="com.foobar.DebugInfo" /&gt;
-      &lt;Bug code="UuF" /&gt;
-    &lt;/Match&gt;
-
-</pre><p>
-</p><p>
-    11. Match bugs using the Not filter operator
-</p><pre class="programlisting">
-
-&lt;!-- ignore all bugs in test classes, except for those bugs specifically relating to JUnit tests --&gt;
-&lt;!-- i.e. filter bug if ( classIsJUnitTest &amp;&amp; ! bugIsRelatedToJUnit ) --&gt;
-&lt;Match&gt;
-  &lt;!-- the Match filter is equivalent to a logical 'And' --&gt;
-
-  &lt;Class name="~.*\.*Test" /&gt;
-  &lt;!-- test classes are suffixed by 'Test' --&gt;
-
-  &lt;Not&gt;
-      &lt;Bug code="IJU" /&gt; &lt;!-- 'IJU' is the code for bugs related to JUnit test code --&gt;
-  &lt;/Not&gt;
-&lt;/Match&gt;
-
-</pre><p>
-</p></div><div class="sect1" title="6.&nbsp;Complete Example"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2249"></a>6.&nbsp;Complete Example</h2></div></div></div><pre class="programlisting">
-
-&lt;FindBugsFilter&gt;
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.ClassNotToBeAnalyzed" /&gt;
-     &lt;/Match&gt;
-
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.ClassWithSomeBugsMatched" /&gt;
-       &lt;Bug code="DE,UrF,SIC" /&gt;
-     &lt;/Match&gt;
-
-     &lt;!-- Match all XYZ violations. --&gt;
-     &lt;Match&gt;
-       &lt;Bug code="XYZ" /&gt;
-     &lt;/Match&gt;
-
-     &lt;!-- Match all doublecheck violations in these methods of "AnotherClass". --&gt;
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.AnotherClass" /&gt;
-       &lt;Or&gt;
-         &lt;Method name="nonOverloadedMethod" /&gt;
-         &lt;Method name="frob" params="int,java.lang.String" returns="void" /&gt;
-         &lt;Method name="blat" params="" returns="boolean" /&gt;
-       &lt;/Or&gt;
-       &lt;Bug code="DC" /&gt;
-     &lt;/Match&gt;
-
-     &lt;!-- A method with a dead local store false positive (medium priority). --&gt;
-     &lt;Match&gt;
-       &lt;Class name="com.foobar.MyClass" /&gt;
-       &lt;Method name="someMethod" /&gt;
-       &lt;Bug pattern="DLS_DEAD_LOCAL_STORE" /&gt;
-       &lt;Priority value="2" /&gt;
-     &lt;/Match&gt;
-
-     &lt;!-- All bugs in test classes, except for JUnit-specific bugs --&gt;
-     &lt;Match&gt;
-      &lt;Class name="~.*\.*Test" /&gt;
-      &lt;Not&gt;
-          &lt;Bug code="IJU" /&gt;
-      &lt;/Not&gt;
-     &lt;/Match&gt;
-
-&lt;/FindBugsFilter&gt;
-
-</pre></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="eclipse.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="analysisprops.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;7.&nbsp;Using the <span class="application">FindBugs</span>&#8482; Eclipse plugin&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;9.&nbsp;Analysis Properties</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/gui.html b/tools/findbugs/doc/manual/gui.html
deleted file mode 100644
index 122b074..0000000
--- a/tools/findbugs/doc/manual/gui.html
+++ /dev/null
@@ -1,68 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;5.&nbsp;Using the FindBugs GUI</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="running.html" title="Chapter&nbsp;4.&nbsp;Running FindBugs&#8482;"><link rel="next" href="anttask.html" title="Chapter&nbsp;6.&nbsp;Using the FindBugs&#8482; Ant task"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;5.&nbsp;Using the <span class="application">FindBugs</span> GUI</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="running.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="anttask.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;5.&nbsp;Using the FindBugs GUI"><div class="titlepage"><div><div><h2 class="title"><a name="gui"></a>Chapter&nbsp;5.&nbsp;Using the <span class="application">FindBugs</span> GUI</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="gui.html#d0e1092">1. Creating a Project</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1134">2. Running the Analysis</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1139">3. Browsing Results</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1154">4. Saving and Opening</a></span></dt></dl></div><p>
-        This chapter describes how to use the <span class="application">FindBugs</span> graphical user interface (GUI).
-    </p><div class="sect1" title="1.&nbsp;Creating a Project"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1092"></a>1.&nbsp;Creating a Project</h2></div></div></div><p>
-After you have started <span class="application">FindBugs</span> using the <span class="command"><strong>findbugs</strong></span> command,
-choose the <span class="guimenu">File</span> &#8594; <span class="guimenuitem">New Project</span>
-menu item.  You will see a dialog which looks like this:
-</p><div class="mediaobject"><img src="project-dialog.png"></div><p>
-</p><p>
-Use the "Add" button next to "Classpath to analyze" to select a Java archive
-file (zip, jar, ear, or war file) or directory containing java classes to analyze for bugs.  You may add multiple
-archives/directories.
-</p><p>
-You can also add the source directories which contain
-the source code for the Java archives you are analyzing.  This will enable
-<span class="application">FindBugs</span> to highlight the source code which contains a possible error.
-The source directories you add should be the roots of the Java
-package hierarchy.  For example, if your application is contained in the
-<code class="varname">org.foobar.myapp</code> package, you should add the
-parent directory of the <code class="filename">org</code> directory
-to the source directory list for the project.
-</p><p>
-Another optional step is to add additional Jar files or directories as
-"Auxiliary classpath locations" entries.  You should do this if the archives and directories you are analyzing
-have references to other classes which are not included in the analyzed
-archives/directories and are not in the standard runtime classpath.  Some of the bug
-pattern detectors in <span class="application">FindBugs</span> make use of class hierarchy information,
-so you will get more accurate results if the entire class hierarchy is
-available which <span class="application">FindBugs</span> performs its analysis.
-</p></div><div class="sect1" title="2.&nbsp;Running the Analysis"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1134"></a>2.&nbsp;Running the Analysis</h2></div></div></div><p>
-Once you have added all of the archives, directories, and source directories,
-click the "Analyze" button to analyze the classes contained in the
-Jar files.  Note that for a very large program on an older computer,
-this may take quite a while (tens of minutes).  A recent computer with
-ample memory will typically be able to analyze a large program in only a
-few minutes.
-</p></div><div class="sect1" title="3.&nbsp;Browsing Results"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1139"></a>3.&nbsp;Browsing Results</h2></div></div></div><p>
-When the analysis completes, you will see a screen like the following:
-</p><div class="mediaobject"><img src="example-details.png"></div><p>
-</p><p>
-The upper left-hand pane of the window shows the bug tree; this is a hierarchical
-representation of all of the potential bugs detected in the analyzed
-Jar files.
-</p><p>
-When you select a particular bug instance in the top pane, you will
-see a description of the bug in the "Details" tab of the bottom pane.
-In addition, the source code pane on the upper-right will show the
-program source code where the potential bug occurs, if source is available.
-In the above example, the bug is a stream object that is not closed.  The
-source code window highlights the line where the stream object is created.
-</p><p>
-You may add a textual annotations to bug instances.  To do so, type them
-into the text box just below the hierarchical view.  You can type any
-information which you would like to record.  When you load and save bug
-results files, the annotations are preserved.
-</p></div><div class="sect1" title="4.&nbsp;Saving and Opening"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e1154"></a>4.&nbsp;Saving and Opening</h2></div></div></div><p>
-You may use the <span class="guimenu">File</span> &#8594; <span class="guimenuitem">Save as...</span>
-menu option to save your work.  To save your work, including the jar
-file lists you specified and all bug results, choose
-"FindBugs analysis results (.xml)" from the drop-down list in the
-"Save as..." dialog.  There are also options for saving just the jar
-file lists ("FindBugs project file (.fbp)") or just the results
-("FindBugs analysis file (.fba)").
-A saved file may be loaded with the
-<span class="guimenu">File</span> &#8594; <span class="guimenuitem">Open...</span>
-menu option.
-</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="running.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="anttask.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;4.&nbsp;Running <span class="application">FindBugs</span>&#8482;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;6.&nbsp;Using the <span class="application">FindBugs</span>&#8482; <span class="application">Ant</span> task</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/important.png b/tools/findbugs/doc/manual/important.png
deleted file mode 100644
index 12c90f6..0000000
--- a/tools/findbugs/doc/manual/important.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/manual/index.html b/tools/findbugs/doc/manual/index.html
deleted file mode 100644
index 42924a6..0000000
--- a/tools/findbugs/doc/manual/index.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>FindBugs&#8482; Manual</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="next" href="introduction.html" title="Chapter&nbsp;1.&nbsp;Introduction"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center"><span class="application">FindBugs</span>&#8482; Manual</th></tr><tr><td width="20%" align="left">&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="introduction.html">Next</a></td></tr></table><hr></div><div lang="en" class="book" title="FindBugs&#8482; Manual"><div class="titlepage"><div><div><h1 class="title"><a name="findbugs-manual"></a><span class="application">FindBugs</span>&#8482; Manual</h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">David</span> <span class="othername">H.</span> <span class="surname">Hovemeyer</span></h3></div><div class="author"><h3 class="author"><span class="firstname">William</span> <span class="othername">W.</span> <span class="surname">Pugh</span></h3></div></div></div><div><p class="copyright">Copyright &copy; 2003 - 2012 University of Maryland</p></div><div><div class="legalnotice" title="Legal Notice"><a name="d0e27"></a><p>
-This manual is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike License.
-To view a copy of this license, visit
-<a class="ulink" href="http://creativecommons.org/licenses/by-nc-sa/1.0/" target="_top">http://creativecommons.org/licenses/by-nc-sa/1.0/</a>
-or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
-</p><p>
-The name FindBugs and the FindBugs logo are trademarked by the University of Maryland.
-</p></div></div><div><p class="pubdate">17:16:15 EST, 22 November, 2013</p></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="introduction.html">1. Introduction</a></span></dt><dd><dl><dt><span class="sect1"><a href="introduction.html#d0e67">1. Requirements</a></span></dt></dl></dd><dt><span class="chapter"><a href="installing.html">2. Installing <span class="application">FindBugs</span>&#8482;</a></span></dt><dd><dl><dt><span class="sect1"><a href="installing.html#d0e98">1. Extracting the Distribution</a></span></dt></dl></dd><dt><span class="chapter"><a href="building.html">3. Building <span class="application">FindBugs</span>&#8482; from Source</a></span></dt><dd><dl><dt><span class="sect1"><a href="building.html#d0e173">1. Prerequisites</a></span></dt><dt><span class="sect1"><a href="building.html#d0e262">2. Extracting the Source Distribution</a></span></dt><dt><span class="sect1"><a href="building.html#d0e275">3. Modifying <code class="filename">local.properties</code></a></span></dt><dt><span class="sect1"><a href="building.html#d0e333">4. Running <span class="application">Ant</span></a></span></dt><dt><span class="sect1"><a href="building.html#d0e427">5. Running <span class="application">FindBugs</span>&#8482; from a source directory</a></span></dt></dl></dd><dt><span class="chapter"><a href="running.html">4. Running <span class="application">FindBugs</span>&#8482;</a></span></dt><dd><dl><dt><span class="sect1"><a href="running.html#d0e465">1. Quick Start</a></span></dt><dt><span class="sect1"><a href="running.html#d0e503">2. Executing <span class="application">FindBugs</span></a></span></dt><dt><span class="sect1"><a href="running.html#commandLineOptions">3. Command-line Options</a></span></dt></dl></dd><dt><span class="chapter"><a href="gui.html">5. Using the <span class="application">FindBugs</span> GUI</a></span></dt><dd><dl><dt><span class="sect1"><a href="gui.html#d0e1092">1. Creating a Project</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1134">2. Running the Analysis</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1139">3. Browsing Results</a></span></dt><dt><span class="sect1"><a href="gui.html#d0e1154">4. Saving and Opening</a></span></dt></dl></dd><dt><span class="chapter"><a href="anttask.html">6. Using the <span class="application">FindBugs</span>&#8482; <span class="application">Ant</span> task</a></span></dt><dd><dl><dt><span class="sect1"><a href="anttask.html#d0e1205">1. Installing the <span class="application">Ant</span> task</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1243">2. Modifying build.xml</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1314">3. Executing the task</a></span></dt><dt><span class="sect1"><a href="anttask.html#d0e1339">4. Parameters</a></span></dt></dl></dd><dt><span class="chapter"><a href="eclipse.html">7. Using the <span class="application">FindBugs</span>&#8482; Eclipse plugin</a></span></dt><dd><dl><dt><span class="sect1"><a href="eclipse.html#d0e1662">1. Requirements</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1670">2. Installation</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1717">3. Using the Plugin</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1748">4. Extending the Eclipse Plugin (since 2.0.0)</a></span></dt><dt><span class="sect1"><a href="eclipse.html#d0e1802">5. Troubleshooting</a></span></dt></dl></dd><dt><span class="chapter"><a href="filter.html">8. Filter Files</a></span></dt><dd><dl><dt><span class="sect1"><a href="filter.html#d0e1838">1. Introduction to Filter Files</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e1888">2. Types of Match clauses</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2136">3. Java element name matching</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2161">4. Caveats</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2191">5. Examples</a></span></dt><dt><span class="sect1"><a href="filter.html#d0e2249">6. Complete Example</a></span></dt></dl></dd><dt><span class="chapter"><a href="analysisprops.html">9. Analysis Properties</a></span></dt><dt><span class="chapter"><a href="annotations.html">10. Annotations</a></span></dt><dt><span class="chapter"><a href="rejarForAnalysis.html">11. Using rejarForAnalysis</a></span></dt><dt><span class="chapter"><a href="datamining.html">12. Data mining of bugs with <span class="application">FindBugs</span>&#8482;</a></span></dt><dd><dl><dt><span class="sect1"><a href="datamining.html#commands">1. Commands</a></span></dt><dt><span class="sect1"><a href="datamining.html#examples">2. Examples</a></span></dt><dt><span class="sect1"><a href="datamining.html#antexample">3. Ant example</a></span></dt></dl></dd><dt><span class="chapter"><a href="license.html">13. License</a></span></dt><dt><span class="chapter"><a href="acknowledgments.html">14. Acknowledgments</a></span></dt><dd><dl><dt><span class="sect1"><a href="acknowledgments.html#d0e3629">1. Contributors</a></span></dt><dt><span class="sect1"><a href="acknowledgments.html#d0e3752">2. Software Used</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><b>List of Tables</b></p><dl><dt>9.1. <a href="analysisprops.html#analysisproptable">Configurable Analysis Properties</a></dt><dt>12.1. <a href="datamining.html#computeBugHistoryTable">Options for computeBugHistory command</a></dt><dt>12.2. <a href="datamining.html#filterOptionsTable">Options for filterBugs command</a></dt><dt>12.3. <a href="datamining.html#mineBugHistoryOptionsTable">Options for mineBugHistory command</a></dt><dt>12.4. <a href="datamining.html#mineBugHistoryColumns">Columns in mineBugHistory output</a></dt><dt>12.5. <a href="datamining.html#defectDensityColumns">Columns in defectDensity output</a></dt><dt>12.6. <a href="datamining.html#convertXmlToTextTable">Options for convertXmlToText command</a></dt><dt>12.7. <a href="datamining.html#setBugDatabaseInfoOptions">setBugDatabaseInfo Options</a></dt><dt>12.8. <a href="datamining.html#listBugDatabaseInfoColumns">listBugDatabaseInfo Columns</a></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="introduction.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;1.&nbsp;Introduction</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/infiniteRecursiveLoops.png b/tools/findbugs/doc/manual/infiniteRecursiveLoops.png
deleted file mode 100644
index 5430df2..0000000
--- a/tools/findbugs/doc/manual/infiniteRecursiveLoops.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/manual/installing.html b/tools/findbugs/doc/manual/installing.html
deleted file mode 100644
index b14a6eb..0000000
--- a/tools/findbugs/doc/manual/installing.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;2.&nbsp;Installing FindBugs&#8482;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="introduction.html" title="Chapter&nbsp;1.&nbsp;Introduction"><link rel="next" href="building.html" title="Chapter&nbsp;3.&nbsp;Building FindBugs&#8482; from Source"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;2.&nbsp;Installing <span class="application">FindBugs</span>&#8482;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="introduction.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="building.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;2.&nbsp;Installing FindBugs&#8482;"><div class="titlepage"><div><div><h2 class="title"><a name="installing"></a>Chapter&nbsp;2.&nbsp;Installing <span class="application">FindBugs</span>&#8482;</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="installing.html#d0e98">1. Extracting the Distribution</a></span></dt></dl></div><p>
-This chapter explains how to install <span class="application">FindBugs</span>.
-</p><div class="sect1" title="1.&nbsp;Extracting the Distribution"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e98"></a>1.&nbsp;Extracting the Distribution</h2></div></div></div><p>
-The easiest way to install <span class="application">FindBugs</span> is to download a binary distribution.
-Binary distributions are available in
-<a class="ulink" href="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3.tar.gz?download" target="_top">gzipped tar format</a> and
-<a class="ulink" href="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3.zip?download" target="_top">zip format</a>.
-Once you have downloaded a binary distribution, extract it into a directory of your choice.
-</p><p>
-Extracting a gzipped tar format distribution:
-</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>gunzip -c findbugs-2.0.3.tar.gz | tar xvf -</strong></span>
-</pre><p>
-</p><p>
-Extracting a zip format distribution:
-</p><pre class="screen">
-<code class="prompt">C:\Software&gt;</code><span class="command"><strong>unzip findbugs-2.0.3.zip</strong></span>
-</pre><p>
-</p><p>
-Usually, extracting a binary distribution will create a directory ending in
-<code class="filename">findbugs-2.0.3</code>. For example, if you extracted
-the binary distribution from the <code class="filename">C:\Software</code>
-directory, then the <span class="application">FindBugs</span> software will be extracted into the directory
-<code class="filename">C:\Software\findbugs-2.0.3</code>.
-This directory is the <span class="application">FindBugs</span> home directory.  We'll refer to it as
-<em class="replaceable"><code>$FINDBUGS_HOME</code></em> (or <em class="replaceable"><code>%FINDBUGS_HOME%</code></em> for Windows) throughout this manual.
-</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="introduction.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="building.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;1.&nbsp;Introduction&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;3.&nbsp;Building <span class="application">FindBugs</span>&#8482; from Source</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/introduction.html b/tools/findbugs/doc/manual/introduction.html
deleted file mode 100644
index a65b499..0000000
--- a/tools/findbugs/doc/manual/introduction.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;1.&nbsp;Introduction</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="index.html" title="FindBugs&#8482; Manual"><link rel="next" href="installing.html" title="Chapter&nbsp;2.&nbsp;Installing FindBugs&#8482;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;1.&nbsp;Introduction</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="installing.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;1.&nbsp;Introduction"><div class="titlepage"><div><div><h2 class="title"><a name="introduction"></a>Chapter&nbsp;1.&nbsp;Introduction</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="introduction.html#d0e67">1. Requirements</a></span></dt></dl></div><p> <span class="application">FindBugs</span>&#8482; is a program to find bugs in Java programs.  It looks for instances
-of "bug patterns" --- code instances that are likely to be errors.</p><p> This document describes version 2.0.3 of <span class="application">FindBugs</span>.We
-are very interested in getting your feedback on <span class="application">FindBugs</span>. Please visit
-the <a class="ulink" href="http://findbugs.sourceforge.net" target="_top"><span class="application">FindBugs</span> web page</a> for
-the latest information on <span class="application">FindBugs</span>, contact information, and support resources such
-as information about the <span class="application">FindBugs</span> mailing lists.</p><div class="sect1" title="1.&nbsp;Requirements"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e67"></a>1.&nbsp;Requirements</h2></div></div></div><p> To use <span class="application">FindBugs</span>, you need a runtime environment compatible with
-<a class="ulink" href="http://java.sun.com/j2se" target="_top">Java 2 Standard Edition</a>, version 1.5 or later.
-<span class="application">FindBugs</span> is platform independent, and is known to run on GNU/Linux, Windows, and
-MacOS X platforms.</p><p>You should have at least 512 MB of memory to use <span class="application">FindBugs</span>.
-To analyze very large projects, more memory may be needed.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="index.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="installing.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"><span class="application">FindBugs</span>&#8482; Manual&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;2.&nbsp;Installing <span class="application">FindBugs</span>&#8482;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/license.html b/tools/findbugs/doc/manual/license.html
deleted file mode 100644
index bfe9cb1..0000000
--- a/tools/findbugs/doc/manual/license.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;13.&nbsp;License</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="datamining.html" title="Chapter&nbsp;12.&nbsp;Data mining of bugs with FindBugs&#8482;"><link rel="next" href="acknowledgments.html" title="Chapter&nbsp;14.&nbsp;Acknowledgments"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;13.&nbsp;License</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="datamining.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="acknowledgments.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;13.&nbsp;License"><div class="titlepage"><div><div><h2 class="title"><a name="license"></a>Chapter&nbsp;13.&nbsp;License</h2></div></div></div><p>
-The name FindBugs and the FindBugs logo is trademarked by the University
-of Maryland.
-FindBugs is free software distributed under the terms of the
-<a class="ulink" href="http://www.gnu.org/licenses/lgpl.html" target="_top">Lesser GNU Public License</a>.
-You should have received a copy of the license in the file <code class="filename">LICENSE.txt</code>
-in the <span class="application">FindBugs</span> distribution.
-</p><p>
-You can find the latest version of FindBugs, along with its source code, from the
-<a class="ulink" href="http://findbugs.sourceforge.net" target="_top">FindBugs web page</a>.
-</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="datamining.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="acknowledgments.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;12.&nbsp;Data mining of bugs with <span class="application">FindBugs</span>&#8482;&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;14.&nbsp;Acknowledgments</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/note.png b/tools/findbugs/doc/manual/note.png
deleted file mode 100644
index d0c3c64..0000000
--- a/tools/findbugs/doc/manual/note.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/manual/project-dialog.png b/tools/findbugs/doc/manual/project-dialog.png
deleted file mode 100644
index 7a39783..0000000
--- a/tools/findbugs/doc/manual/project-dialog.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/manual/rejarForAnalysis.html b/tools/findbugs/doc/manual/rejarForAnalysis.html
deleted file mode 100644
index e28241a..0000000
--- a/tools/findbugs/doc/manual/rejarForAnalysis.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;11.&nbsp;Using rejarForAnalysis</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="annotations.html" title="Chapter&nbsp;10.&nbsp;Annotations"><link rel="next" href="datamining.html" title="Chapter&nbsp;12.&nbsp;Data mining of bugs with FindBugs&#8482;"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;11.&nbsp;Using rejarForAnalysis</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="annotations.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="datamining.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;11.&nbsp;Using rejarForAnalysis"><div class="titlepage"><div><div><h2 class="title"><a name="rejarForAnalysis"></a>Chapter&nbsp;11.&nbsp;Using rejarForAnalysis</h2></div></div></div><p>
-If your project consists of many jarfiles or the jarfiles are scattered
-over many directories, you may wish to use the <span class="command"><strong>rejarForAnalysis
-</strong></span> script to make
-FindBugs invocation easier.  The script collects many jarfiles and combines them
-into a single, large jarfile that can then be easily passed to FindBugs for
-analysis.  This can be particularly useful in combination with the 'find' command
-on unix systems; e.g. <span class="command"><strong>find . -name '*.jar' | xargs rejarForAnalysis
-</strong></span>.
-</p><p>
-The <span class="command"><strong>rejarForAnalysis</strong></span> script
-can also be used to split a very large project up into a set of jarfiles with
-the project classfiles evenly divided between them.  This is useful when running
-FindBugs on the entire project is not practical due to time or memory consumption.
-Instead of running FindBugs on the entire project, you may use <span class="command"><strong>
-rejarForAnalysis</strong></span> build one large, all-inclusive jarfile
-containing all classes, invoke <span class="command"><strong>rejarForAnalysis</strong></span>
-again to split the project into multiple jarfiles, then run FindBugs
-on each divided jarfiles in turn, specifying the the all-inclusive jarfile in
-the <span class="command"><strong>-auxclasspath</strong></span>.
-</p><p>
-These are the options accepted by the <span class="command"><strong>rejarForAnalysis</strong></span> script:
-</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-maxAge</strong></span> <em class="replaceable"><code>days</code></em></span></dt><dd><p>
-       Maximum age in days (ignore jar files older than this).
-       </p></dd><dt><span class="term"><span class="command"><strong>-inputFileList</strong></span> <em class="replaceable"><code>filename</code></em></span></dt><dd><p>
-       Text file containing names of jar files.
-       </p></dd><dt><span class="term"><span class="command"><strong>-maxClasses</strong></span> <em class="replaceable"><code>num</code></em></span></dt><dd><p>
-       Maximum number of classes per analysis*.jar file.
-       </p></dd><dt><span class="term"><span class="command"><strong>-prefix</strong></span> <em class="replaceable"><code>class name prefix</code></em></span></dt><dd><p>
-       Prefix of class names that should be analyzed (e.g., edu.umd.cs.).
-       </p></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="annotations.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="datamining.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;10.&nbsp;Annotations&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;12.&nbsp;Data mining of bugs with <span class="application">FindBugs</span>&#8482;</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/running.html b/tools/findbugs/doc/manual/running.html
deleted file mode 100644
index cf83c85..0000000
--- a/tools/findbugs/doc/manual/running.html
+++ /dev/null
@@ -1,209 +0,0 @@
-<html><head>
-      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;4.&nbsp;Running FindBugs&#8482;</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="FindBugs&#8482; Manual"><link rel="up" href="index.html" title="FindBugs&#8482; Manual"><link rel="prev" href="building.html" title="Chapter&nbsp;3.&nbsp;Building FindBugs&#8482; from Source"><link rel="next" href="gui.html" title="Chapter&nbsp;5.&nbsp;Using the FindBugs GUI"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;4.&nbsp;Running <span class="application">FindBugs</span>&#8482;</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="building.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="gui.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter&nbsp;4.&nbsp;Running FindBugs&#8482;"><div class="titlepage"><div><div><h2 class="title"><a name="running"></a>Chapter&nbsp;4.&nbsp;Running <span class="application">FindBugs</span>&#8482;</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="running.html#d0e465">1. Quick Start</a></span></dt><dt><span class="sect1"><a href="running.html#d0e503">2. Executing <span class="application">FindBugs</span></a></span></dt><dt><span class="sect1"><a href="running.html#commandLineOptions">3. Command-line Options</a></span></dt></dl></div><p>
-<span class="application">FindBugs</span> has two user interfaces: a graphical user interface (GUI) and a
-command line user interface.  This chapter describes
-how to run each of these user interfaces.
-</p><div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Warning"><tr><td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td><th align="left">Warning</th></tr><tr><td align="left" valign="top"><p>
-            This chapter is in the process of being re-written.
-            The rewrite is not complete yet.
-        </p></td></tr></table></div><div class="sect1" title="1.&nbsp;Quick Start"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e465"></a>1.&nbsp;Quick Start</h2></div></div></div><p>
-        If you are running <span class="application">FindBugs</span> on a  Windows system,
-        double-click on the file <code class="filename"><em class="replaceable"><code>%FINDBUGS_HOME%</code></em>\lib\findbugs.jar</code> to start the <span class="application">FindBugs</span> GUI.
-    </p><p>
-        On a Unix, Linux, or Mac OS X system, run the <code class="filename"><em class="replaceable"><code>$FINDBUGS_HOME</code></em>/bin/findbugs</code>
-        script, or run the command </p><pre class="screen">
-<span class="command"><strong>java -jar <em class="replaceable"><code>$FINDBUGS_HOME</code></em>/lib/findbugs.jar</strong></span></pre><p>
-    to run the <span class="application">FindBugs</span> GUI.
-    </p><p>
-    Refer to <a class="xref" href="gui.html" title="Chapter&nbsp;5.&nbsp;Using the FindBugs GUI">Chapter&nbsp;5, <i>Using the <span class="application">FindBugs</span> GUI</i></a> for information on how to use the GUI.
-    </p></div><div class="sect1" title="2.&nbsp;Executing FindBugs"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e503"></a>2.&nbsp;Executing <span class="application">FindBugs</span></h2></div></div></div><p>
-        This section describes how to invoke the <span class="application">FindBugs</span> program.
-        There are two ways to invoke <span class="application">FindBugs</span>: directly, or using a
-        wrapper script.
-    </p><div class="sect2" title="2.1.&nbsp;Direct invocation of FindBugs"><div class="titlepage"><div><div><h3 class="title"><a name="directInvocation"></a>2.1.&nbsp;Direct invocation of <span class="application">FindBugs</span></h3></div></div></div><p>
-            The preferred method of running <span class="application">FindBugs</span> is to directly execute
-            <code class="filename"><em class="replaceable"><code>$FINDBUGS_HOME</code></em>/lib/findbugs.jar</code> using the <span class="command"><strong>-jar</strong></span>
-            command line switch of the JVM (<span class="command"><strong>java</strong></span>) executable.
-            (Versions of <span class="application">FindBugs</span> prior to 1.3.5 required a wrapper script
-            to invoke <span class="application">FindBugs</span>.)
-        </p><p>
-            The general syntax of invoking <span class="application">FindBugs</span> directly is the following:
-</p><pre class="screen">
-    <span class="command"><strong>java <em class="replaceable"><code>[JVM arguments]</code></em> -jar <em class="replaceable"><code>$FINDBUGS_HOME</code></em>/lib/findbugs.jar <em class="replaceable"><code>options...</code></em></strong></span>
-</pre><p>
-        </p><div class="sect3" title="2.1.1.&nbsp;Choosing the User Interface"><div class="titlepage"><div><div><h4 class="title"><a name="chooseUI"></a>2.1.1.&nbsp;Choosing the User Interface</h4></div></div></div><p>
-            The first command line option chooses the <span class="application">FindBugs</span> user interface to execute.
-            Possible values are:
-        </p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
-                <span class="command"><strong>-gui</strong></span>: runs the graphical user interface (GUI)
-                </p></li><li class="listitem"><p>
-                    <span class="command"><strong>-textui</strong></span>: runs the command line user interface
-                </p></li><li class="listitem"><p>
-                    <span class="command"><strong>-version</strong></span>: displays the <span class="application">FindBugs</span> version number
-                </p></li><li class="listitem"><p>
-                    <span class="command"><strong>-help</strong></span>: displays help information for the
-                    <span class="application">FindBugs</span> command line user interface
-                </p></li><li class="listitem"><p>
-                    <span class="command"><strong>-gui1</strong></span>: executes the original (obsolete)
-                    <span class="application">FindBugs</span> graphical user interface
-                </p></li></ul></div></div><div class="sect3" title="2.1.2.&nbsp;Java Virtual Machine (JVM) arguments"><div class="titlepage"><div><div><h4 class="title"><a name="jvmArgs"></a>2.1.2.&nbsp;Java Virtual Machine (JVM) arguments</h4></div></div></div><p>
-                Several Java Virtual Machine arguments are useful when invoking
-                <span class="application">FindBugs</span>.
-            </p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-Xmx<em class="replaceable"><code>NN</code></em>m</strong></span></span></dt><dd><p>
-                            Set the maximum Java heap size to <em class="replaceable"><code>NN</code></em>
-                            megabytes.  <span class="application">FindBugs</span> generally requires a large amount of
-                            memory.  For a very large project, using 1500 megabytes
-                            is not unusual.
-                        </p></dd><dt><span class="term"><span class="command"><strong>-D<em class="replaceable"><code>name</code></em>=<em class="replaceable"><code>value</code></em></strong></span></span></dt><dd><p>
-                            Set a Java system property.  For example, you might use the
-                            argument <span class="command"><strong>-Duser.language=ja</strong></span> to display
-                            GUI messages in Japanese.
-                        </p></dd></dl></div></div></div><div class="sect2" title="2.2.&nbsp;Invocation of FindBugs using a wrapper script"><div class="titlepage"><div><div><h3 class="title"><a name="wrapperScript"></a>2.2.&nbsp;Invocation of <span class="application">FindBugs</span> using a wrapper script</h3></div></div></div><p>
-            Another way to run <span class="application">FindBugs</span> is to use a wrapper script.
-        </p><p>
-On Unix-like systems, use the following command to invoke the wrapper script:
-</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong><em class="replaceable"><code>$FINDBUGS_HOME</code></em>/bin/findbugs <em class="replaceable"><code>options...</code></em></strong></span>
-</pre><p>
-</p><p>
-On Windows systems, the command to invoke the wrapper script is
-</p><pre class="screen">
-<code class="prompt">C:\My Directory&gt;</code><span class="command"><strong><em class="replaceable"><code>%FINDBUGS_HOME%</code></em>\bin\findbugs.bat <em class="replaceable"><code>options...</code></em></strong></span>
-</pre><p>
-</p><p>
-On both Unix-like and Windows systems, you can simply add the <code class="filename"><em class="replaceable"><code>$FINDBUGS_HOME</code></em>/bin</code>
-directory to your <code class="filename">PATH</code> environment variable and then invoke
-FindBugs using the <span class="command"><strong>findbugs</strong></span> command.
-</p><div class="sect3" title="2.2.1.&nbsp;Wrapper script command line options"><div class="titlepage"><div><div><h4 class="title"><a name="wrapperOptions"></a>2.2.1.&nbsp;Wrapper script command line options</h4></div></div></div><p>The <span class="application">FindBugs</span> wrapper scripts support the following command-line options.
-        Note that these command line options are <span class="emphasis"><em>not</em></span> handled by
-        the <span class="application">FindBugs</span> program per se; rather, they are handled by the wrapper
-        script.
-        </p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-jvmArgs <em class="replaceable"><code>args</code></em></strong></span></span></dt><dd><p>
-         Specifies arguments to pass to the JVM.  For example, you might want
-         to set a JVM property:
-</p><pre class="screen">
-<code class="prompt">$ </code><span class="command"><strong>findbugs -textui -jvmArgs "-Duser.language=ja" <em class="replaceable"><code>myApp.jar</code></em></strong></span>
-</pre><p>
-       </p></dd><dt><span class="term"><span class="command"><strong>-javahome <em class="replaceable"><code>directory</code></em></strong></span></span></dt><dd><p>
-        Specifies the directory containing the JRE (Java Runtime Environment) to
-        use to execute <span class="application">FindBugs</span>.
-      </p></dd><dt><span class="term"><span class="command"><strong>-maxHeap <em class="replaceable"><code>size</code></em></strong></span></span></dt><dd><p>
-      Specifies the maximum Java heap size in megabytes. The default is 256.
-      More memory may be required to analyze very large programs or libraries.
-      </p></dd><dt><span class="term"><span class="command"><strong>-debug</strong></span></span></dt><dd><p>
-      Prints a trace of detectors run and classes analyzed to standard output.
-      Useful for troubleshooting unexpected analysis failures.
-      </p></dd><dt><span class="term"><span class="command"><strong>-property</strong></span> <em class="replaceable"><code>name=value</code></em></span></dt><dd><p>
-      This option sets a system property.&nbsp; <span class="application">FindBugs</span> uses system properties
-      to configure analysis options.  See <a class="xref" href="analysisprops.html" title="Chapter&nbsp;9.&nbsp;Analysis Properties">Chapter&nbsp;9, <i>Analysis Properties</i></a>.
-      You can use this option multiple times in order to set multiple properties.
-      Note: In most versions of Windows, the <em class="replaceable"><code>name=value</code></em>
-      string must be in quotes.
-      </p></dd></dl></div></div></div></div><div class="sect1" title="3.&nbsp;Command-line Options"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="commandLineOptions"></a>3.&nbsp;Command-line Options</h2></div></div></div><p>
-    This section describes the command line options supported by <span class="application">FindBugs</span>.
-    These command line options may be used when invoking <span class="application">FindBugs</span> directly,
-    or when using a wrapper script.
-</p><div class="sect2" title="3.1.&nbsp;Common command-line options"><div class="titlepage"><div><div><h3 class="title"><a name="d0e796"></a>3.1.&nbsp;Common command-line options</h3></div></div></div><p>
-These options may be used with both the GUI and command-line interfaces.
-</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-effort:min</strong></span></span></dt><dd><p>
-      This option disables analyses that increase precision but also
-      increase memory consumption.  You may want to try this option if
-      you find that <span class="application">FindBugs</span> runs out of memory, or takes an unusually
-      long time to complete its analysis.
-      </p></dd><dt><span class="term"><span class="command"><strong>-effort:max</strong></span></span></dt><dd><p>
-        Enable analyses which increase precision and find more bugs, but which
-        may require more memory and take more time to complete.
-      </p></dd><dt><span class="term"><span class="command"><strong>-project</strong></span> <em class="replaceable"><code>project</code></em></span></dt><dd><p>
-    Specify a project to be analyzed.  The project file you specify should
-    be one that was created using the GUI interface.  It will typically end
-    in the extension <code class="filename">.fb</code> or <code class="filename">.fbp</code>.
-    </p></dd></dl></div></div><div class="sect2" title="3.2.&nbsp;GUI Options"><div class="titlepage"><div><div><h3 class="title"><a name="d0e836"></a>3.2.&nbsp;GUI Options</h3></div></div></div><p>
-These options are only accepted by the Graphical User Interface.
-
-</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-look:</strong></span><em class="replaceable"><code>plastic|gtk|native</code></em></span></dt><dd><p>
-        Set Swing look and feel.
-       </p></dd></dl></div><p>
-</p></div><div class="sect2" title="3.3.&nbsp;Text UI Options"><div class="titlepage"><div><div><h3 class="title"><a name="d0e852"></a>3.3.&nbsp;Text UI Options</h3></div></div></div><p>
-These options are only accepted by the Text User Interface.
-</p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>-sortByClass</strong></span></span></dt><dd><p>
-       Sort reported bug instances by class name.
-       </p></dd><dt><span class="term"><span class="command"><strong>-include</strong></span> <em class="replaceable"><code>filterFile.xml</code></em></span></dt><dd><p>
-       Only report bug instances that match the filter specified by <em class="replaceable"><code>filterFile.xml</code></em>.
-       See <a class="xref" href="filter.html" title="Chapter&nbsp;8.&nbsp;Filter Files">Chapter&nbsp;8, <i>Filter Files</i></a>.
-       </p></dd><dt><span class="term"><span class="command"><strong>-exclude</strong></span> <em class="replaceable"><code>filterFile.xml</code></em></span></dt><dd><p>
-       Report all bug instances except those matching the filter specified by <em class="replaceable"><code>filterFile.xml</code></em>.
-       See <a class="xref" href="filter.html" title="Chapter&nbsp;8.&nbsp;Filter Files">Chapter&nbsp;8, <i>Filter Files</i></a>.
-       </p></dd><dt><span class="term"><span class="command"><strong>-onlyAnalyze</strong></span> <em class="replaceable"><code>com.foobar.MyClass,com.foobar.mypkg.*</code></em></span></dt><dd><p>
-      Restrict analysis to find bugs to given comma-separated list of
-      classes and packages.
-      Unlike filtering, this option avoids running analysis on
-      classes and packages that are not explicitly matched:
-      for large projects, this may greatly reduce the amount of time
-      needed to run the analysis.  (However, some detectors may produce
-      inaccurate results if they aren't run on the entire application.)
-      Classes should be specified using their full classnames (including
-      package), and packages should be specified in the same way
-      they would in a Java <code class="literal">import</code> statement to
-      import all classes in the package (i.e., add <code class="literal">.*</code>
-      to the full name of the package).
-      Replace <code class="literal">.*</code> with <code class="literal">.-</code> to also
-      analyze all subpackages.
-      </p></dd><dt><span class="term"><span class="command"><strong>-low</strong></span></span></dt><dd><p>
-    Report all bugs.
-    </p></dd><dt><span class="term"><span class="command"><strong>-medium</strong></span></span></dt><dd><p>
-    Report medium and high priority bugs.  This is the default setting.
-    </p></dd><dt><span class="term"><span class="command"><strong>-high</strong></span></span></dt><dd><p>
-    Report only high priority bugs.
-    </p></dd><dt><span class="term"><span class="command"><strong>-relaxed</strong></span></span></dt><dd><p>
-            Relaxed reporting mode.  For many detectors, this option
-            suppresses the heuristics used to avoid reporting false positives.
-        </p></dd><dt><span class="term"><span class="command"><strong>-xml</strong></span></span></dt><dd><p>
-    Produce the bug reports as XML.  The XML data produced may be
-    viewed in the GUI at a later time.  You may also specify this
-    option as <span class="command"><strong>-xml:withMessages</strong></span>; when this variant
-    of the option is used, the XML output will contain human-readable
-    messages describing the warnings contained in the file.
-    XML files generated this way are easy to transform into reports.
-    </p></dd><dt><span class="term"><span class="command"><strong>-html</strong></span></span></dt><dd><p>
-    Generate HTML output.  By default, <span class="application">FindBugs</span> will use the <code class="filename">default.xsl</code>
-    <a class="ulink" href="http://www.w3.org/TR/xslt" target="_top">XSLT</a>
-    stylesheet to generate the HTML: you can find this file in <code class="filename">findbugs.jar</code>,
-    or in the <span class="application">FindBugs</span> source or binary distributions.  Variants of this option include
-    <span class="command"><strong>-html:plain.xsl</strong></span>, <span class="command"><strong>-html:fancy.xsl</strong></span> and <span class="command"><strong>-html:fancy-hist.xsl</strong></span>.
-    The <code class="filename">plain.xsl</code> stylesheet does not use Javascript or DOM,
-    and may work better with older web browsers, or for printing.  The <code class="filename">fancy.xsl</code>
-    stylesheet uses DOM and Javascript for navigation and CSS for
-    visual presentation. The <span class="command"><strong>fancy-hist.xsl</strong></span> an evolution of <span class="command"><strong>fancy.xsl</strong></span> stylesheet.
-    It makes an extensive use of DOM and Javascript for dynamically filtering the lists of bugs.
-    </p><p>
-      If you want to specify your own
-    XSLT stylesheet to perform the transformation to HTML, specify the option as
-    <span class="command"><strong>-html:<em class="replaceable"><code>myStylesheet.xsl</code></em></strong></span>,
-    where <em class="replaceable"><code>myStylesheet.xsl</code></em> is the filename of the
-    stylesheet you want to use.
-    </p></dd><dt><span class="term"><span class="command"><strong>-emacs</strong></span></span></dt><dd><p>
-    Produce the bug reports in Emacs format.
-    </p></dd><dt><span class="term"><span class="command"><strong>-xdocs</strong></span></span></dt><dd><p>
-    Produce the bug reports in xdoc XML format for use with Apache Maven.
-    </p></dd><dt><span class="term"><span class="command"><strong>-output</strong></span> <em class="replaceable"><code>filename</code></em></span></dt><dd><p>
-       Produce the output in the specified file.
-       </p></dd><dt><span class="term"><span class="command"><strong>-outputFile</strong></span> <em class="replaceable"><code>filename</code></em></span></dt><dd><p>
-       This argument is deprecated.  Use <span class="command"><strong>-output</strong></span> instead.
-       </p></dd><dt><span class="term"><span class="command"><strong>-nested</strong></span><em class="replaceable"><code>[:true|false]</code></em></span></dt><dd><p>
-    This option enables or disables scanning of nested jar and zip files found in
-    the list of files and directories to be analyzed.
-    By default, scanning of nested jar/zip files is enabled.
-    To disable it, add <span class="command"><strong>-nested:false</strong></span> to the command line
-    arguments.
-    </p></dd><dt><span class="term"><span class="command"><strong>-auxclasspath</strong></span> <em class="replaceable"><code>classpath</code></em></span></dt><dd><p>
-    Set the auxiliary classpath for analysis.  This classpath should include all
-    jar files and directories containing classes that are part of the program
-    being analyzed but you do not want to have analyzed for bugs.
-    </p></dd><dt><span class="term"><span class="command"><strong>-userPrefs</strong></span> <em class="replaceable"><code>edu.umd.cs.findbugs.core.prefs</code></em></span></dt><dd><p>
-    Set the path of the user preferences file to use, which might override some of the options abobe.
-    Specifying <code class="literal">userPrefs</code> as first argument would mean some later
-    options will override them, as last argument would mean they will override some previous options).
-    This rationale behind this option is to reuse FindBugs Eclipse project settings for command
-    line execution.
-    </p></dd></dl></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="building.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="gui.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;3.&nbsp;Building <span class="application">FindBugs</span>&#8482; from Source&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;5.&nbsp;Using the <span class="application">FindBugs</span> GUI</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/tools/findbugs/doc/manual/warning.png b/tools/findbugs/doc/manual/warning.png
deleted file mode 100644
index 1c33db8..0000000
--- a/tools/findbugs/doc/manual/warning.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/manual_ja.xml b/tools/findbugs/doc/manual_ja.xml
deleted file mode 100644
index 966b6b4..0000000
--- a/tools/findbugs/doc/manual_ja.xml
+++ /dev/null
@@ -1,2806 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://findbugs.googlecode.com/svn/trunk/findbugs/etc/docbook/docbookx.dtd"
-[
-<!ENTITY FindBugs "<application>FindBugs</application>">
-<!ENTITY Ant "<application>Ant</application>">
-<!ENTITY Saxon "<application>Saxon</application>">
-<!ENTITY FBHome "<replaceable>$FINDBUGS_HOME</replaceable>">
-<!ENTITY FBHomeWin "<replaceable>&#x25;FINDBUGS_HOME&#x25;</replaceable>">
-<!ENTITY nbsp "&#160;">
-]>
-<book lang="ja" id="findbugs-manual">
-
-<bookinfo>
-<title>&FindBugs;&trade; マニュアル</title>
-
-<authorgroup>
-  <author>
-    <firstname>David</firstname>
-    <othername>H.</othername>
-    <surname>Hovemeyer</surname>
-  </author>
-    <author>
-        <firstname>William</firstname>
-        <othername>W.</othername>
-        <surname>Pugh</surname>
-    </author>
-</authorgroup>
-
-<copyright>
-  <year>2003</year>
-  <year>2004</year>
-  <year>2005</year>
-  <year>2006</year>
-  <year>2008</year>
-  <holder>University of Maryland</holder>
-</copyright>
-
-<legalnotice>
-<para>このマニュアルは、クリエイティブ・コモンズ表示-非営利-継承に基づく使用許諾がなされています。使用許諾書をご覧になる場合は、 <ulink url="http://creativecommons.org/licenses/by-nc-sa/1.0/deed.ja">http://creativecommons.org/licenses/by-nc-sa/1.0/</ulink> にアクセスするか、クリエイティブ・コモンズ(559 Nathan Abbott Way, Stanford, California 94305, USA)に書簡を送付してください。</para>
-<para>名称「FindBugs」および FindBugs のロゴは、メリーランド大学の登録商標です。</para>
-</legalnotice>
-
-<edition>2.0.3</edition>
-
-<pubdate>17:16:15 EST, 22 November, 2013</pubdate>
-
-</bookinfo>
-
-<!--
-   **************************************************************************
-   Introduction
-   **************************************************************************
--->
-
-<chapter id="introduction">
-<title>はじめに</title>
-
-<para>&FindBugs;&trade; は、Java プログラムの中のバグを見つけるプログラムです。このプログラムは、「バグ パターン」の実例を探します。「バグ パターン」とは、エラーとなる可能性の高いコードの事例です。</para>
-
-<para>この文書は、&FindBugs; バージョン 2.0.3 について説明してます。私たちは、 &FindBugs; に対するフィードバックを心待ちにしています。どうぞ、 <ulink url="http://findbugs.sourceforge.net">&FindBugs; Web ページ</ulink> にアクセスしてください。&FindBugs; についての最新情報、連絡先および &FindBugs; メーリングリストなどのサポート情報を入手することができます。</para>
-
-<sect1>
-<title>必要条件</title>
-<para>&FindBugs; を使用するには、 <ulink url="http://java.sun.com/j2se">Java 2 Standard Edition</ulink>, バージョン 1.5 以降のバージョンと互換性のあるランタイム環境が必要です。&FindBugs; は、プラットフォーム非依存であり、 GNU/Linux 、 Windows 、 MacOS X プラットフォーム上で動作することが知られています。</para>
-
-<para>&FindBugs; を使用するためには、少なくとも 512 MB のメモリが必要です。巨大なプロジェクトを解析するためには、それより多くのメモリが必要とされることがあります。</para>
-</sect1>
-
-</chapter>
-
-<!--
-   **************************************************************************
-   Installing FindBugs
-   **************************************************************************
--->
-
-<chapter id="installing">
-<title>&FindBugs;&trade; のインストール</title>
-
-<para>この章では、 &FindBugs; のインストール方法を説明します。</para>
-
-<sect1>
-<title>配布物の展開</title>
-
-<para>&FindBugs; をインストールする最も簡単な方法は、バイナリ配布物をダウンロードすることです。 バイナリ配布物は、 <ulink url="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3.tar.gz?download">gzipped tar 形式</ulink> および <ulink url="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3.zip?download">zip 形式</ulink> がそれぞれ入手可能です。バイナリ配布物をダウンロードしてきたら、それを任意のディレクトリーに展開します。</para>
-
-<para>gzipped tar 形式配布物の展開方法例:<screen>
-<prompt>$ </prompt><command>gunzip -c findbugs-2.0.3.tar.gz | tar xvf -</command>
-</screen>
-</para>
-
-<para>zip 形式配布物の展開方法例:<screen>
-<prompt>C:\Software&gt;</prompt><command>unzip findbugs-2.0.3.zip</command>
-</screen>
-</para>
-
-<para>バイナリ配布物の展開すると、通常は <filename class="directory">findbugs-2.0.3</filename> ディレクトリーが作成されます。例えば、ディレクトリー <filename class="directory">C:\Software</filename> でバイナリ配布物を展開すると、ディレクトリー <filename class="directory">C:\Software\findbugs-2.0.3</filename> に &FindBugs; は展開されます。このディレクトリーが &FindBugs; のホームディレクトリーになります。このマニュアルでは、このホームディレクトリーを &FBHome; (Windowsでは &FBHomeWin;) を用いて参照します。</para>
-</sect1>
-
-</chapter>
-
-<!--
-   **************************************************************************
-   Compiling FindBugs from Source
-   **************************************************************************
--->
-
-<chapter id="building">
-<title>&FindBugs;&trade; のソールからのビルド</title>
-
-<para>この章では、 &FindBugs; をソースコードからビルドする方法を説明します。&FindBugs; を修正することに興味がないのであれば、 <link linkend="running">次の章</link> に進んでください。</para>
-
-<sect1>
-<title>前提条件</title>
-
-<para>ソースから &FindBugs; をコンパイルするためには、以下のものが必要です。<itemizedlist>
-  <listitem>
-    <para><ulink url="http://prdownloads.sourceforge.net/findbugs/findbugs-2.0.3-source.zip?download">&FindBugs; のソース配布物</ulink>
-    </para>
-  </listitem>
-  <listitem>
-    <para>
-      <ulink url="http://java.sun.com/j2se/">JDK 1.5.0 ベータ またはそれ以降</ulink>
-    </para>
-  </listitem>
-  <listitem>
-    <para>
-      <ulink url="http://ant.apache.org/">Apache &Ant;</ulink>, バージョン 1.6.3 またはそれ以降</para>
-  </listitem>
-</itemizedlist>
-</para>
-
-<warning>
-    <para>Redhat Linux システムの <filename>/usr/bin/ant</filename> に同梱されている &Ant; のバージョンでは、 &FindBugs; のコンパイルは<emphasis>うまくできません</emphasis>。<ulink url="http://ant.apache.org/">&Ant; web サイト</ulink>からバイナリ配布物をダウンロードしてインストールすることを推奨します。&Ant; を実行する場合は、 環境変数 <replaceable>JAVA_HOME</replaceable> が  JDK 1.5 (またはそれ以降)をインストールしたディレクトリーを指していることを確認してください。</para>
-</warning>
-
-<para>体裁の整った &FindBugs; のドキュメントを生成したい場合は、以下のソフトウェアも必要となります:<itemizedlist>
-  <listitem>
-    <para><ulink url="http://docbook.sourceforge.net/projects/xsl/index.html">DocBook XSL スタイルシート</ulink>。&FindBugs; のマニュアルを HTML に変換するのに必要です。</para>
-  </listitem>
-  <listitem>
-    <para><ulink url="http://saxon.sourceforge.net/">&Saxon; XSLT プロセッサー</ulink>。(同様に、 &FindBugs; のマニュアルを HTML に変換するのに必要です。)</para>
-  </listitem>
-<!--
-  <listitem>
-    <para>
-    </para>
-  </listitem>
--->
-</itemizedlist>
-</para>
-
-</sect1>
-
-<sect1>
-<title>ソース配布物の展開</title>
-<para>ソース配布物をダウンロードした後に、それを作業用ディレクトリーに展開する必要があります。通常は、次のようなコマンドで展開を行います:<screen>
-<prompt>$ </prompt><command>unzip findbugs-2.0.3-source.zip</command>
-</screen>
-
-</para>
-</sect1>
-
-<sect1>
-<title><filename>local.properties</filename> の修正</title>
-<para>FindBugs のドキュメントをビルドするためには、 <filename>local.properties</filename> ファイルを修正する必要があります。このファイルは、 &FindBugs; をビルドする際に <ulink url="http://ant.apache.org/">&Ant;</ulink> <filename>build.xml</filename> ファイルが参照します。FindBugs のドキュメントをビルドしない場合は、このファイルは無視してもかまいません。</para>
-
-<para><filename>local.properties</filename> での定義は、 <filename>build.properties</filename> ファイルでの定義に優先します。<filename>build.properties</filename> は次のような内容です:<programlisting>
-<![CDATA[
-# User Configuration:
-# This section must be modified to reflect your system.
-
-local.software.home     =/export/home/daveho/linux
-
-# Set this to the directory containing the DocBook Modular XSL Stylesheets
-#  from http://docbook.sourceforge.net/projects/xsl/
-
-xsl.stylesheet.home     =${local.software.home}/docbook/docbook-xsl-1.71.1
-
-# Set this to the directory where Saxon (http://saxon.sourceforge.net/)
-# is installed.
-
-saxon.home              =${local.software.home}/java/saxon-6.5.5
-]]>
-</programlisting>
-</para>
-
-<para><varname>xsl.stylesheet.home</varname> プロパティーには、<ulink url="http://docbook.sourceforge.net/projects/xsl/">DocBook Modular XSL スタイルシート</ulink>がインストールしてあるディレクトリーの絶対パスを指定します。&FindBugs; ドキュメントを生成しようと考えている場合にのみ、このプロパティーを指定する必要があります。</para>
-
-<para><varname>saxon.home</varname> プロパティーには、<ulink url="http://saxon.sourceforge.net/">&Saxon; XSLT プロセッサー</ulink>がインストールしてあるディレクトリーの絶対パスを指定します。&FindBugs; ドキュメントを生成しようと考えている場合にのみ、このプロパティーを指定する必要があります。</para>
-
-</sect1>
-
-<sect1>
-<title>&Ant; の実行</title>
-
-<para>ソース配布物の展開、 &Ant; のインストール、<filename>build.properties</filename>(<filename>local.properties</filename>) の修正 (これは任意) およびツール (&Saxon; など)の環境構築ができれば、 &FindBugs; をビルドするための準備は完了です。&Ant; の起動する方法は、単にコマンドを実行するだけです。<screen>
-<prompt>$ </prompt><command>ant <replaceable>target</replaceable></command>
-</screen><replaceable>target</replaceable> には以下のいずれかを指定します: <variablelist> <varlistentry> <term><command>build</command></term>
-    <listitem>
-       <para>このターゲットは、 &FindBugs; のコードをコンパイルします。これは、デフォルトのターゲットです。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>docs</command></term>
-    <listitem>
-       <para>このターゲットは、ドキュメントの整形を行います(また、副作用としていくつかのソースのコンパイルも行います。)</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>runjunit</command></term>
-    <listitem>
-        <para>このターゲットは、コンパイルを行い &FindBugs; が持っている JUnit テストを実行します。ユニットテストが失敗した場合は、エラーメッセージが表示されます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>bindist</command></term>
-    <listitem>
-        <para>&FindBugs; のバイナリ配布物を構築します。このターゲットは、 <filename>.zip</filename> および <filename>.tar.gz</filename> のアーカイブをそれぞれ作成します。</para>
-    </listitem>
-  </varlistentry>
-</variablelist>
-</para>
-
-<para>&Ant; コマンドの実行後、次のような出力が表示されるはずです。 (この前に &Ant; が実行したタスクに関するメッセージもいくらか出力されます。):<screen>
-<computeroutput>
-BUILD SUCCESSFUL
-Total time: 17 seconds
-</computeroutput>
-</screen>
-</para>
-
-</sect1>
-
-<sect1>
-<title>ソースディレクトリーからの &FindBugs;&trade; の実行</title>
-<para><command>build</command> ターゲットの実行が終了すると、バイナリ配布物と同様の状態が作業ディレクトリーに構築されるように &FindBugs; の&Ant; ビルドスクリプトは記述されています。したがって、<xref linkend="running"/> の  &FindBugs; の実行に関する情報はソース配布物の場合にも応用できます。</para>
-</sect1>
-
-</chapter>
-
-
-<!--
-   **************************************************************************
-   Running FindBugs
-   **************************************************************************
--->
-
-<chapter id="running">
-<title>&FindBugs;&trade; の実行</title>
-
-<para>&FindBugs; には2つのユーザーインタフェースがあります。すなわち、グラフィカルユーザーインタフェース (GUI) および コマンドラインインタフェースです。この章では、それぞれのインタフェースの実行方法について説明します。</para>
-
-    <warning>
-        <para>この章は、現在書き直し中です。書き直しはまだ完了していません。</para>
-    </warning>
-
-<!--
-<sect1>
-<title>Executing the &FindBugs;&trade; GUI</title>
-</sect1>
--->
-
-<sect1>
-    <title>クイック・スタート</title>
-    <para>Windows システムで  &FindBugs; を起動する場合は、 <filename>&FBHomeWin;\lib\findbugs.jar</filename> ファイルをダブルクリックしてください。 &FindBugs; GUI が起動します。</para>
-
-    <para>Unix 、 Linux または Mac OS X システムの場合は、<filename>&FBHome;/bin/findbugs</filename> スクリプトを実行するか、以下のコマンドを実行します。<screen>
-<command>java -jar &FBHome;/lib/findbugs.jar</command></screen>これで、 &FindBugs; GUI が起動します。</para>
-
-    <para>GUI の使用方法については、 <xref linkend="gui"/> を参照してください。</para>
-</sect1>
-
-<sect1>
-
-    <title>&FindBugs; の起動</title>
-
-    <para>このセクションでは、 &FindBugs; の起動方法を説明します。&FindBugs; を起動するには2つの方法があります。すなわち、直接起動する方法、および、ラップしているスクリプトを使用する方法です。</para>
-
-
-    <sect2 id="directInvocation">
-        <title>&FindBugs; の直接起動</title>
-
-        <para>最初に述べる &FindBugs; の起動方法は、 <filename>&FBHome;/lib/findbugs.jar</filename> を直接実行する方法です。JVM (<command>java</command>) 実行プログラムの <command>-jar</command> コマンドラインスイッチを使用します。(&FindBugs;のバージョンが 1.3.5 より前の場合は、ラップしているスクリプトを使用する必要があります。)</para>
-
-        <para>&FindBugs; を直接起動するための、一般的な構文は以下のようになります。<screen>
-    <command>java <replaceable>[JVM 引数]</replaceable> -jar &FBHome;/lib/findbugs.jar <replaceable>オプション…</replaceable></command>
-</screen>
-        </para>
-
-<!--
-        <para>
-            By default, executing <filename>findbugs.jar</filename> runs the
-            &FindBugs; graphical user interface (GUI).  On windows systems,
-            you can double-click on <filename>findbugs.jar</filename> to launch
-            the GUI.  From a command line, the command
-            <screen>
-java -jar <replaceable>&FBHome;</replaceable>/lib/findbugs.jar</screen>
-            will launch the GUI.
-        </para>
--->
-
-        <sect3 id="chooseUI">
-            <title> ユーザーインタフェースの選択</title>
-
-        <para>1 番目のコマンドラインオプションは、起動する &FindBugs; ユーザーインタフェースを選択するためのものです。指定可能な値は次の通りです:</para>
-        <itemizedlist>
-            <listitem>
-                <para>
-                <command>-gui</command>: グラフィカルユーザーインタフェース (GUI) を起動します。</para>
-            </listitem>
-
-            <listitem>
-                <para>
-                    <command>-textui</command>: コマンドラインインタフェースを起動します。</para>
-            </listitem>
-
-            <listitem>
-                <para>
-                    <command>-version</command>: &FindBugs; のバージョン番号を表示します。</para>
-            </listitem>
-
-            <listitem>
-                <para>
-                    <command>-help</command>: &FindBugs; コマンドラインインタフェースのヘルプ情報を表示します。</para>
-            </listitem>
-
-            <listitem>
-                <para>
-                    <command>-gui1</command>: 最初に作成された &FindBugs; グラフィカルユーザーインタフェース(すでに廃止されサポートされていない)を起動します。</para>
-            </listitem>
-        </itemizedlist>
-
-        </sect3>
-
-        <sect3 id="jvmArgs">
-            <title>Java 仮想マシン (JVM) 引数</title>
-
-            <para>&FindBugs; を起動する際に有用な Java 仮想マシン 引数をいくつか紹介します。</para>
-
-            <variablelist>
-                <varlistentry>
-                    <term><command>-Xmx<replaceable>NN</replaceable>m</command></term>
-                    <listitem>
-                        <para>Java ヒープサイズの最大値を <replaceable>NN</replaceable> メガバイトに設定します。&FindBugs; は一般的に大容量のメモリサイズを必要とします。大きなプロジェクトでは、 1500 メガバイトを使用することも珍しくありません。</para>
-                    </listitem>
-                </varlistentry>
-
-                <varlistentry>
-                    <term><command>-D<replaceable>name</replaceable>=<replaceable>value</replaceable></command></term>
-                    <listitem>
-                        <para>Java システムプロパティーを設定します。例えば、引数 <command>-Duser.language=ja</command> を使用すると GUI 文言が日本語で表示されます。</para>
-                    </listitem>
-                </varlistentry>
-
-                <!--
-                <varlistentry>
-                    <term></term>
-                    <listitem>
-                        <para>
-                        </para>
-                    </listitem>
-                </varlistentry>
-                -->
-            </variablelist>
-        </sect3>
-
-    </sect2>
-
-    <sect2 id="wrapperScript">
-        <title>ラップしているスクリプトを使用した &FindBugs; の起動</title>
-
-        <para>&FindBugs; を起動するもうひとつの方法は、ラップしているスクリプトを使用する方法です。</para>
-
-<para>Unix 系のシステムにおいては、次のようなコマンドでラップしているスクリプトを起動します :<screen>
-<prompt>$ </prompt><command>&FBHome;/bin/findbugs <replaceable>オプション…</replaceable></command>
-</screen>
-</para>
-
-<para>Windows システムにおいては、ラップしているスクリプトを起動するコマンドは次のようになります。<screen>
-<prompt>C:\My Directory&gt;</prompt><command>&FBHomeWin;\bin\findbugs.bat <replaceable>オプション…</replaceable></command>
-</screen>
-</para>
-
-<para>Unix 系システム および Windows システムのどちらにおいても、ディレクトリー  <filename><replaceable>$FINDBUGS_HOME</replaceable>/bin</filename> を環境変数 <filename>PATH</filename> に追加するだけで、 <command>findbugs</command> コマンドを使用して FindBugs を起動することができます。</para>
-
-    <sect3 id="wrapperOptions">
-        <title>ラップしているスクリプトのコマンドラインオプション</title>
-        <para>&FindBugs; のラップしているスクリプトは、次のようなコマンドラインオプションをサポートしています。これらのコマンドラインオプションは &FindBugs; プログラム 自体が操作するのでは<emphasis>なく</emphasis>、どちらかといえば、ラップしているスクリプトの方が処理を行います。</para>
-    <variablelist>
-  <varlistentry>
-    <term><command>-jvmArgs <replaceable>引数</replaceable></command></term>
-    <listitem>
-       <para>JVM に受け渡される引数を指定します。例えば、次のような JVM プロパティが設定できます:<screen>
-<prompt>$ </prompt><command>findbugs -textui -jvmArgs &quot;-Duser.language=ja&quot; <replaceable>myApp.jar</replaceable></command>
-</screen>
-       </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-javahome <replaceable>ディレクトリー</replaceable></command></term>
-    <listitem>
-      <para>&FindBugs; の実行に使用する JRE (Java ランタイム環境) がインストールされているディレクトリーを指定します。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-maxHeap <replaceable>サイズ</replaceable></command></term>
-    <listitem>
-      <para>Java ヒープサイズの最大値をメガバイト単位で指定します。デフォルトは、 256 です。巨大なプログラムやライブラリを分析するには、もっと大きなメモリー容量が必要になる可能性があります。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-debug</command></term>
-    <listitem>
-      <para>ディテクタ実行およびクラス分析のトレース情報が標準出力に出力されます。分析が予期せず失敗した際の、トラブルシューティングに有用です。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-property</command> <replaceable>name=value</replaceable></term>
-    <listitem>
-      <para>このオプションを使用してシステムプロパティーを設定することができます。 &FindBugs; はシステムプロパティーを使用して分析特性の設定を行います。<xref linkend="analysisprops"/> を参照してください。このオプションを複数指定して、複数のシステムプロパティを設定することが可能です。注:  Windows の多くのバージョンでは、 <replaceable>name=value</replaceable> 文字列を引用符で囲む必要があります。</para>
-    </listitem>
-  </varlistentry>
-
-    </variablelist>
-
-    </sect3>
-
-</sect2>
-
-</sect1>
-
-<sect1 id="commandLineOptions">
-<title>コマンドラインオプション</title>
-
-<!--
-<para>
-
-There are two ways to invoke &FindBugs;.  The first invokes the the Graphical User Interface (GUI):
-
-<screen>
-<prompt>$ </prompt><command>findbugs <replaceable>[standard options]</replaceable> <replaceable>[GUI options]</replaceable></command>
-</screen>
-
-The second invokes the Command Line Interface (Text UI):
-
-<screen>
-<prompt>$ </prompt><command>findbugs -textui <replaceable>[standard options]</replaceable> <replaceable>[Text UI options]</replaceable></command>
-</screen>
-</para>
--->
-
-<para>このセクションでは、 &FindBugs; がサポートするコマンドラインオプションについて説明します。ここで示すコマンドラインオプションは、 &FindBugs; 直接起動、または、ラップしているスクリプトによる起動で使用できます。</para>
-
-<sect2>
-<title>共通のコマンドラインオプション</title>
-
-<para>ここで示すオプションは、 GUI および コマンドラインインタフェースの両方で使用できます。</para>
-
-<variablelist>
-
-  <varlistentry>
-    <term><command>-effort:min</command></term>
-    <listitem>
-      <para>このオプションを指定すると、精度を上げるために大量のメモリーを消費する分析が無効になります。&FindBugs; の実行時にメモリー不足になったり、分析を完了するまでに異常に長い時間がかかる場合に試してみてください。</para>
-    </listitem>
-  </varlistentry>
-
-
-  <varlistentry>
-    <term><command>-effort:max</command></term>
-    <listitem>
-      <para>精度が高く、より多くのバグを検出する分析を有効にします。ただし、多くのメモリー容量を必要とし、また、完了までの時間が多くかかる可能性があります。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-project</command> <replaceable>project</replaceable></term>
-  <listitem>
-    <para>分析するプロジェクトを指定します。指定するプロジェクトファイルには、 GUI を使って作成したものを使用してください。ファイルの拡張子は、一般的には <filename>.fb</filename> または <filename>.fbp</filename> です。</para>
-  </listitem>
-  </varlistentry>
-
-  <!--
-  <varlistentry>
-      <term><command></command></term>
-      <listitem>
-          <para>
-
-          </para>
-      </listitem>
-  </varlistentry>
-  -->
-
-</variablelist>
-
-</sect2>
-
-<sect2>
-<title>GUI オプション</title>
-
-<para>ここで示すオプションは、グラフィカルユーザーインタフェースでのみ使用できます。<variablelist> <varlistentry> <term><command>-look:</command><replaceable>plastic|gtk|native</replaceable></term>
-    <listitem>
-       <para>Swing のルック・アンド・フィールを設定します。</para>
-    </listitem>
-  </varlistentry>
-
-</variablelist>
-</para>
-</sect2>
-
-<sect2>
-<title>テキストユーザーインタフェースオプション</title>
-
-<para>ここで示すオプションは、テキストユーザーインタフェースでのみ使用できます。</para>
-
-<variablelist>
-  <varlistentry>
-    <term><command>-sortByClass</command></term>
-    <listitem>
-       <para>報告されるバグ検索結果をクラス名でソートします。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-include</command> <replaceable>filterFile.xml</replaceable></term>
-    <listitem>
-       <para><replaceable>filterFile.xml</replaceable> で指定したフィルターに一致したバグ検索結果のみ報告されます。<xref linkend="filter"/> を参照してください。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-exclude</command> <replaceable>filterFile.xml</replaceable></term>
-    <listitem>
-       <para><replaceable>filterFile.xml</replaceable> で指定したフィルターに一致したバグ検索結果は報告されません。<xref linkend="filter"/> を参照してください。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-onlyAnalyze</command> <replaceable>com.foobar.MyClass,com.foobar.mypkg.*</replaceable></term>
-    <listitem>
-      <para>コンマ区切りで指定したクラスおよびパッケージのみに限定して、バグ検出の分析を行うようにします。フィルターと違って、このオプションを使うと一致しないクラスおよびパッケージに対する分析の実行を回避することができます。大きなプロジェクトにおいて、このオプションを活用すると分析にかかる時間を大きく削減することができる可能性があります。(しかしながら、アプリケーションの全体で実行していないために不正確な結果を出してしまうディテクタがある可能性もあります。) クラスはパッケージも含んだ完全な名前を指定する必要があります。また、パッケージは、 Java の <literal>import</literal> 文でパッケージ下のすべてのクラスをインポートするときと同じ方法で指定します。 (すなわち、パッケージの完全な名前に <literal>.*</literal> を付け加えた形です。)<literal>.*</literal> の代わりに <literal>.-</literal> を指定すると、サブパッケージも含めてすべてが分析されます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-low</command></term>
-  <listitem>
-    <para>すべてのバグが報告されます。</para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-medium</command></term>
-  <listitem>
-    <para>優先度 (中) および優先度 (高) のバグが報告されます。これは、デフォルトの設定値です。</para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-high</command></term>
-  <listitem>
-    <para>優先度 (高) のバグのみが報告されます。</para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-relaxed</command></term>
-    <listitem>
-        <para>手抜き報告モードです。このオプションを指定すると、多くのディテクタにおいて 誤検出を回避するためのヒューリスティック機能が抑止されます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-xml</command></term>
-  <listitem>
-    <para>バグ報告が XML で作成されます。作成された XML データは 、後で GUI で見ることができます。このオプションは <command>-xml:withMessages</command> と指定することもできます。こうすると 出力 XML には 各バグに関して人間に読むことができるメッセージが含まれるようになります。このオプションで作成された XML ファイルは 報告書に変換するのが簡単です。</para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-html</command></term>
-  <listitem>
-    <para>HTML 出力が生成されます。デフォルトでは &FindBugs; は <filename>default.xsl</filename> <ulink url="http://www.w3.org/TR/xslt">XSLT</ulink> スタイルシートを使用して HTML 出力を生成します: このファイルは、 <filename>findbugs.jar</filename> の中、または、 &FindBugs; のソース配布物もしくはバイナリ配布物の中にあります。このオプションには、次のようなバリエーションも存在します。すなわち、 <command>-html:plain.xsl</command> 、 <command>-html:fancy.xsl</command> および <command>-html:fancy-hist.xsl</command> です。<filename>plain.xsl</filename> スタイルシートは Javascript や DOM を利用しません。したがって、古いWeb ブラウザ使用時や印刷時にも比較的うまく表示されるでしょう。<filename>fancy.xsl</filename> スタイルシートは DOM と Javascript を利用してナビゲーションを行います。また、ビジュアル表示に CSS を使用します。<command>fancy-hist.xsl</command> は <command>fancy.xsl</command> スタイルシートを更に進化させたものです。DOM や Javascript をふんだんに駆使して、バグの一覧を動的にフィルタリングします。</para>
-
-    <para>ユーザー自身の XSLT スタイルシートを用いて HTML への変換を行いたい場合は、 <command>-html:<replaceable>myStylesheet.xsl</replaceable></command> のように指定してください。ここで、 <replaceable>myStylesheet.xsl</replaceable> はユーザーが使用したいスタイルシートのファイル名です。</para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-emacs</command></term>
-  <listitem>
-    <para>バグ報告が Emacs 形式で作成されます。</para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-xdocs</command></term>
-  <listitem>
-    <para>バグ報告が xdoc XML 形式で作成されます。Apache Mavenで使用できます。</para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-output</command> <replaceable>ファイル名</replaceable></term>
-    <listitem>
-       <para>指定したファイルに出力結果が作成されます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>-outputFile</command> <replaceable>ファイル名</replaceable></term>
-    <listitem>
-       <para>この引数は、使用すべきではありません。代わりに、 <command>-output</command> を使用してください。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-nested</command><replaceable>[:true|false]</replaceable></term>
-  <listitem>
-    <para>このオプションは、ファイルやディレクトリーの中で入れ子になった jar および zip ファイルを分析するかどうかを指定します。デフォルトでは、入れ子になった jar および zip ファイルも分析します。入れ子になった jar および zip ファイルの分析するを無効にする場合は、 <command>-nested:false</command> をコマンドライン引数に追加してください。</para>
-  </listitem>
-  </varlistentry>
-
-  <varlistentry>
-  <term><command>-auxclasspath</command> <replaceable>クラスパス</replaceable></term>
-  <listitem>
-    <para>分析時に使用する補助クラスパスを設定します。分析するプログラムで使用するjarファイルやクラスディレクトリーをすべて指定してください。補助クラスパスに指定したクラスは分析の対象にはなりません。</para>
-  </listitem>
-  </varlistentry>
-
-<!--
-  <varlistentry>
-  <term><command></command> <replaceable></replaceable></term>
-  <listitem>
-    <para>
-    </para>
-  </listitem>
-  </varlistentry>
--->
-
-</variablelist>
-
-</sect2>
-</sect1>
-
-
-</chapter>
-
-<chapter id="gui">
-    <title>&FindBugs; GUI の使用方法</title>
-
-    <para>この章では、&FindBugs; グラフィカルユーザーインタフェース (GUI) の使用方法を説明します。</para>
-
-<sect1>
-<title>プロジェクトの作成</title>
-<para><command>findbugs</command>  コマンドで &FindBugs; を起動してから、メニューで <menuchoice><guimenu>File</guimenu><guimenuitem>New Project</guimenuitem></menuchoice> を選択してください。そうすると、次のようなダイアログが表示されます:<mediaobject>
-<imageobject>
-<imagedata fileref="project-dialog.png"/>
-</imageobject>
-</mediaobject>
-</para>
-
-<para>「Class archives and directories to analyze」テキストフィールドの横にある 「Add」ボタンを押すと、バグを分析する java クラスを含んでいる Java アーカイブファイル (zip, jar, ear, or war file) を選択して指定できます。複数の アーカイブ/ディレクトリーを追加することが可能です。</para>
-
-<para>また、分析を行う Java アーカイブのソースコードを含んだソースディレクトリーを指定することもできます。そうすると、バグの可能性があるソースコードの場所が、&FindBugs; 上でハイライトして表示されます。ソースディレクトリーは、Java パッケージ階層のルートディレクトリーを指定する必要があります。例えば、ユーザのアプリケーションが <varname>org.foobar.myapp</varname> パッケージの中にある場合は、 <filename class="directory">org</filename> ディレクトリーの親ディレクトリーをソースディレクトリーリストに指定する必要があります。</para>
-
-<para>もうひとつ、任意指定の手順があります。それは、補助用の Jar ファイルおよびディレクトリーを 「Auxiliary classpath locations」のエントリーに追加することです。分析するアーカイブ/ディレクトリーにも標準の実行時クラスパスにも含まれていないクラスを、分析するアーカイブ/ディレクトリーが参照している場合は、この項目を設定した方がいいでしょう。クラス階層に関する情報を使用するバグディテクタが、 &FindBugs; にはいくつかあります。したがって、&FindBugs; が分析を行うクラスの完全なクラス階層を参照できれば、より正確な分析結果を取得することができます。</para>
-
-</sect1>
-
-<sect1>
-<title>分析の実行</title>
-<para>アーカイブ、ディレクトリーおよびソースディレクトリーの指定ができれば、「Finish」ボタンを押して Jar ファイルに含まれるクラスに対する分析を実行します。巨大なプロジェクトを古いコンピュータ上で実行すると、かなりの時間(数十分)がかかることに注意してください。大容量メモリである最近のコンピュータなら、大きなプログラムであっても数分程度で分析できます。</para>
-</sect1>
-
-<sect1>
-<title>結果の閲覧</title>
-
-<para>分析が完了すると、次のような画面が表示されます :<mediaobject>
-  <imageobject>
-    <imagedata fileref="example-details.png"/>
-  </imageobject>
-</mediaobject>
-</para>
-
-<para>左上のペインにはバグ階層ツリーが表示されます。これは、分析でみつかったバグの検索結果が階層的に表示されたものです。</para>
-
-<para>上部のペインでバグ検索結果を選択すると、下部の「Details」ペインにバグの詳細説明が表示されます。更に、ソースがみつかれば、右上のソースコードペインにバグの出現箇所に該当するソースコードが表示されます。上図の例で表示されているバグは、ストリームオブジェクトがクローズされていないというものです。ソースコード・ウィンドウにおいて当該ストリームオブジェクトを生成している行がハイライトされています。</para>
-
-<para>バグの検索結果に対してテキストで注釈を入れることができます。階層ツリー図のすぐ下にあるテキストボックスに注釈を入力してください。記録しておきたい情報を何でも自由に入力することができます。バグ結果ファイルの保存および読み込みを行ったときに、注釈も保存されます。</para>
-
-</sect1>
-
-<sect1>
-<title>保存と読み込み</title>
-
-<para>メニュー項目から <menuchoice><guimenu>File</guimenu><guimenuitem>Save as...</guimenuitem></menuchoice> を選択すると、ユーザーの作業結果を保存することができます。「Save as...」ダイアログにあるドロップダウン・リストの中から「FindBugs analysis results (.xml)」を選択ことで、ユーザーが指定した jar ファイルリストやバグ検索結果などの作業結果を保存することができます。また、jar ファイルリストのみを保存する選択肢 (「FindBugs project file (.fbp)」) やバグ検索結果のみを保存する選択肢 (「FindBugs analysis file (.fba)」) もあります。保存したファイルは、メニュー項目から <menuchoice><guimenu>File</guimenu><guimenuitem>Open...</guimenuitem></menuchoice> を選択することで、読み込むことができます。</para>
-
-</sect1>
-
-<!--
-<sect1 id="textui">
-<title>Using the &FindBugs;&trade; Command Line Interface</title>
-
-<para>
-The &FindBugs; Command Line Interface (or Text UI) can be used to
-analyze an application for bugs non-interactively.  Each bug instance will be
-reported on a single line.  All output is written to the standard output file descriptor.
-<xref linkend="filter" /> explains how bug reports may be filtered in order
-to get only the output you're interested in.
-</para>
-
-<para>
-See <xref linkend="commandLineOptions" /> for a description of how to invoke the
-Command Line Interface.
-</para>
-</sect1>
--->
-
-</chapter>
-
-<!--
-   **************************************************************************
-   Using the FindBugs Ant task
-   **************************************************************************
--->
-
-<chapter id="anttask">
-<title>&FindBugs;&trade; &Ant; タスクの使用方法</title>
-
-<para>この章では、 &FindBugs; を <ulink url="http://ant.apache.org/">&Ant;</ulink> のビルドスクリプトに組み入れる方法について説明します。 <ulink url="http://ant.apache.org/">&Ant;</ulink> は、ビルドや配備を行うことができる Java でよく使用されるツールです。&FindBugs; &Ant; タスクを使用すると、 ビルドスクリプトを作成して機械的に &FindBugs; による Java コードの分析を実行することができます。</para>
-
-<para>この &Ant; タスクは、 Mike Fagan 氏の多大な貢献によるものです。</para>
-
-<sect1>
-<title>&Ant; タスクのインストール</title>
-
-<para>&Ant; タスクのインストールは、 <filename>&FBHome;/lib/findbugs-ant.jar</filename> を &Ant; インストールディレクトリーの<filename>lib</filename> サブディレクトリーにコピーするだけです。<note>
-<para>使用する &Ant; タスクと &FindBugs; 本体は、同梱されていた同じバージョンのものを使用することを強く推奨します。別のバージョンの &FindBugs; に含まれていた &Ant; タスク Jar ファイルでの動作は保証しません。</para>
-</note>
-</para>
-
-</sect1>
-
-<sect1>
-<title>build.xml の書き方</title>
-
-<para>&FindBugs; を <filename>build.xml</filename> (&Ant; ビルドスクリプト) に組み入れるためにはまず、タスク定義を記述する必要があります。タスク定義は次のように記述します。:<screen>
-  &lt;taskdef name=&quot;findbugs&quot; classname=&quot;edu.umd.cs.findbugs.anttask.FindBugsTask&quot;/&gt;
-</screen>タスク定義は、 <literal>findbugs</literal> 要素を <filename>build.xml</filename> 上に記述したとき、そのタスクの実行に使用されるクラスを指定します。</para>
-
-<para>タスク定義の記述をすれば、<literal>findbugs</literal> タスクを使ってターゲットを定義できます。次に示すのは、 Apache <ulink url="http://jakarta.apache.org/bcel/">BCEL</ulink> ライブラリーを分析する場合を想定した <filename>build.xml</filename> の記述例です。<screen>
-  &lt;property name=&quot;findbugs.home&quot; value=&quot;/export/home/daveho/work/findbugs&quot; /&gt;
-
-  &lt;target name=&quot;findbugs&quot; depends=&quot;jar&quot;&gt;
-    &lt;findbugs home=&quot;${findbugs.home}&quot;
-              output=&quot;xml&quot;
-              outputFile=&quot;bcel-fb.xml&quot; &gt;
-      &lt;auxClasspath path=&quot;${basedir}/lib/Regex.jar&quot; /&gt;
-      &lt;sourcePath path=&quot;${basedir}/src/java&quot; /&gt;
-      &lt;class location=&quot;${basedir}/bin/bcel.jar&quot; /&gt;
-    &lt;/findbugs&gt;
-  &lt;/target&gt;
-</screen><literal>findbugs</literal> 要素には、 <literal>home</literal> 属性が必須です。 &FindBugs; のインストールディレクトリーすなわち &FBHome; の値を設定します。<xref linkend="installing"/> を参照してください。</para>
-
-<para>このターゲットは <filename>bcel.jar</filename> に対して &FindBugs; を実行します。この Jar ファイルは、 BCEL ビルドスクリプトによって作成されるものです。(上記のターゲットが「jar」ターゲットに依存している (depends) と設定することにより、 &FindBugs; が実行される前に当該ライブラリーが完全にコンパイルされていることを保証しています。) &FindBugs; の出力は、 XML 形式で <filename>bcel-fb.xml</filename> ファイルに保存されます。補助 Jar ファイル <filename>Regex.jar</filename> を aux classpath に記述しています。なぜなら、当該 Jar ファイルが BCEL メイン・ライブラリーから参照されるからです。source path を指定することで、保存されるバグデータに BCEL ソースコードへの正確な参照が記述されます。</para>
-</sect1>
-
-<sect1>
-<title>タスクの実行</title>
-
-<para>コマンドラインから &Ant; を起動する例を次に示します。前述の <literal>findbugs</literal> ターゲットを使用しています。<screen>
-  <prompt>[daveho@noir]$</prompt> <command>ant findbugs</command>
-  Buildfile: build.xml
-
-  init:
-
-  compile:
-
-  examples:
-
-  jar:
-
-  findbugs:
-   [findbugs] Running FindBugs...
-   [findbugs] Bugs were found
-   [findbugs] Output saved to bcel-fb.xml
-
-  BUILD SUCCESSFUL
-  Total time: 35 seconds
-</screen>この事例においては、XML ファイルでバグ検索結果を保存しているので、 &FindBugs; GUI を使って結果を参照することができます。 <xref linkend="running"/> を参照してください。</para>
-
-</sect1>
-
-<sect1>
-<title>パラメーター</title>
-
-<para>このセクションでは、 &FindBugs; タスクを使用する際に、指定することができるパラメーターについて説明します。<variablelist> <varlistentry> <term><literal>class</literal></term>
-    <listitem>
-       <para>分析の対象となるクラス群を指定するためのネストされる要素です。<literal>class</literal> 要素には <literal>location</literal> 属性の指定が必須です。分析対象となるアーカイブファイル (jar, zip, 他)、ディレクトリーまたはクラスファイルの名前を記述します。1 つの <literal>findbugs</literal> 要素に対して、複数の <literal>class</literal> 子要素を指定することができます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>auxClasspath</literal></term>
-    <listitem>
-       <para>任意指定のネストされる要素です。分析対象のライブラリーまたはアプリケーションによって使用されているが分析の対象にはしたくないクラスを含んでいるクラスパス (Jar ファイルまたはディレクトリー) を指定します。  &Ant; の Java タスクにある <literal>classpath</literal> 要素 と同じ方法で指定することができます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>sourcePath</literal></term>
-    <listitem>
-       <para>任意指定のネストされる要素です。分析対象 Java コードのコンパイル時に使用したソースファイルを含んでいるソースディレクトリーへのパスを指定します。ソースパスを指定することにより、生成される XML のバグ出力結果に完全なソース情報をもたせることができ、後になって GUI で参照することができます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>home</literal></term>
-    <listitem>
-       <para>必須属性です。&FindBugs; がインストールされているディレクトリー名を設定します。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>quietErrors</literal></term>
-    <listitem>
-       <para>任意指定のブール値属性です。true を設定すると、深刻な分析エラー発生やクラスがみつからないといった情報が &FindBugs; 出力に記録されません。デフォルトは、 false です。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>reportLevel</literal></term>
-    <listitem>
-       <para>任意指定の属性です。報告されるバグの優先度のしきい値を指定します。「low」に設定すると、すべてのバグが報告されます。「medium」 (デフォルト) に設定すると、優先度 (中)および優先度 (高)のバグが報告されます。「high」に設定すると、優先度 (高) のバグのみが報告されます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>output</literal></term>
-    <listitem>
-       <para>任意指定の属性です。出力形式を指定します。「xml」 (デフォルト) に設定すると、出力は XML 形式になります。「xml:withMessages」 に設定すると、出力は人間が読めるメッセージ が追加された XML 形式になります。(XSL スタイルシートを使ってレポートを作成することを計画している場合はこの形式を使用してください。) 「html」に設定すると、出力は HTML 形式(デフォルトのスタイルシートは default.xsl) になります。 「text」に設定すると、出力は特別なテキスト形式になります。「emacs」に設定すると、出力は <ulink url="http://www.gnu.org/software/emacs/">Emacs</ulink> エラーメッセージ形式になります。「xdocs」に設定すると、出力は Apache Maven で使用できる xdoc XML になります。</para>
-    </listitem>
-  </varlistentry>
- <varlistentry>
-    <term><literal>stylesheet</literal></term>
-    <listitem>
-       <para>任意指定の属性です。output 属性 に html を指定した場合に、 HTML 出力作成に使用されるスタイルシートを指定します。FindBugs 配布物に含まれているスタイルシートは、 default.xsl、 fancy.xsl 、 fancy-hist.xsl 、 plain.xsl および summary.xsl です。デフォルト値は default.xsl です。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>sort</literal></term>
-    <listitem>
-       <para>任意指定の属性です。<literal>output</literal> 属性に「text」を指定した場合に、バグの報告をクラス順にソートするかどうかを <literal>sort</literal> 属性で指定します。デフォルトは、 true です。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>outputFile</literal></term>
-    <listitem>
-       <para>任意指定の属性です。指定した場合、&FindBugs; の出力はその名前のファイルへと保存されます。省略時、出力は &Ant; によって直接表示されます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>debug</literal></term>
-    <listitem>
-       <para>任意指定のブール値属性です。true に設定すると、 &FindBugs; は 診断情報を出力します。どのクラスを分析しているか、どのパグパターンディテクタが実行されているか、という情報が表示されます。デフォルトは、 false です。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-      <term><literal>effort</literal></term>
-      <listitem>
-          <para>分析の活動レベルを設定します。<literal>min</literal> 、<literal>default</literal> または <literal>max</literal> のいずれかの値を設定してください。分析レベルの設定に関する詳細情報は、 <xref linkend="commandLineOptions"/> を参照してください。</para>
-      </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>conserveSpace</literal></term>
-    <listitem>
-       <para>effort=&quot;min&quot; と同義です。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>workHard</literal></term>
-    <listitem>
-       <para>effort=&quot;max&quot; と同義です。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>visitors</literal></term>
-    <listitem>
-       <para>任意指定の属性です。どのバグディテクタを実行するかをコンマ区切りのリストで指定します。バグディテクタはパッケージ指定なしのクラス名で指定します。省略時、デフォルトで無効化されているものを除くすべてのディテクタが実行されます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>omitVisitors</literal></term>
-    <listitem>
-       <para>任意指定の属性です。<literal>visitors</literal> 属性と似ていますが、こちらは <emphasis>実行されない</emphasis> ディテクタを指定します。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>excludeFilter</literal></term>
-    <listitem>
-       <para>任意指定の属性です。フィルターファイル名を指定します。報告から除外されるバグを指定します。<xref linkend="filter"/> を参照してください。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>includeFilter</literal></term>
-    <listitem>
-       <para>任意指定の属性です。フィルターファイル名を指定します。報告されるバグを指定します。<xref linkend="filter"/> を参照してください。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>projectFile</literal></term>
-    <listitem>
-       <para>任意指定の属性です。プロジェクトファイル名を指定します。プロジェクトファイルは、 &FindBugs; GUI で作成します。分析されるクラス、および、補助クラスパス、ソースディレクトリーが記入されてます。プロジェクトファイルを指定した場合は、 <literal>class</literal> 要素・ <literal>auxClasspath</literal> 属性および <literal>sourcePath</literal> 属性を設定する必要はありません。プロジェクトの作成方法は、 <xref linkend="running"/> を参照してください。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>jvmargs</literal></term>
-    <listitem>
-       <para>任意指定の属性です。&FindBugs; を実行している Java 仮想マシンに対して受け渡される引数を指定します。巨大なプログラムを分析する場合に、 JVM が使用するメモリ容量を増やす指定をするためにこの引数を利用する必要があるかもしれません。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>systemProperty</literal></term>
-    <listitem>
-      <para>任意指定のネストされる要素です。指定した場合、Java システムプロパティーを定義します。<literal>name</literal> 属性にはシステムプロパティーの名前を指定します。そして、 <literal>value</literal> 属性にはシステムプロパティの値を指定します。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>timeout</literal></term>
-    <listitem>
-       <para>任意指定の属性です。&FindBugs; を実行している Java プロセス の実行許容時間をミリ秒単位で指定します。時間を超過するとハングアップしていると判断してプロセスが終了されます。デフォルトは、 600,000 ミリ秒 (10 分) です。巨大なプログラムの場合は、 &FindBugs; が分析を完了するまでに 10 分 以上掛かる可能性があることに注意してください。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>failOnError</literal></term>
-    <listitem>
-       <para>任意指定のブール値属性です。&FindBugs; の実行中にエラーがあった場合に、ビルドプロセス自体を打ち切って異常終了させるかどうかを指定します。デフォルトは、「false」です。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><literal>errorProperty</literal></term>
-    <listitem>
-       <para>任意指定の属性です。&FindBugs; の実行中にエラーが発生した場合に、「true」が設定されるプロパティーの名前を指定します。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-      <term><literal>warningsProperty</literal></term>
-      <listitem>
-          <para>任意指定の属性です。&FindBugs; が分析したプログラムにバグ報告が 1 件でもある場合に、「true」が設定されるプロパティーの名前を指定します。</para>
-      </listitem>
-  </varlistentry>
-
-</variablelist>
-
-
-</para>
-
-<!--
-
--->
-
-</sect1>
-
-</chapter>
-
-<!--
-   **************************************************************************
-   Using the FindBugs Eclipse plugin
-   **************************************************************************
--->
-
-<chapter id="eclipse">
-<title>&FindBugs;&trade; Eclipse プラグインの使用方法</title>
-
-<para>FindBugs Eclipse プラグインを使用することによって、 &FindBugs; を <ulink url="http://www.eclipse.org/">Eclipse</ulink> IDE で使用することができるようになります。このFindBugs Eclipse プラグインは、 Peter Friese 氏の多大な貢献によるものです。Phil Crosby 氏 と Andrei Loskutov 氏は、プラグインの重要な改良に貢献しました。</para>
-
-<sect1>
-<title>必要条件</title>
-
-<para>&FindBugs; Eclipse Plugin を使用するためには、 Eclipse 3.3 あるいはそれ以降のバージョン、また、 JRE/JDK 1.5 あるいはそれ以降のバージョンが必要です。</para>
-
-</sect1>
-
-<sect1>
-<title>インストール</title>
-
-<para>更新サイトが提供されています。更新サイトを利用して、機械的に FindBugs を Eclipse にインストールできます。また自動的に、最新版のアップデートを照会してインストールすることもできます。内容の異なる 3 つの更新サイトが存在します。</para>
-
-  <variablelist><title>FindBugs Eclipse 更新サイト一覧</title>
-    <varlistentry><term><ulink url="http://findbugs.cs.umd.edu/eclipse/">http://findbugs.cs.umd.edu/eclipse/</ulink></term>
-
-    <listitem>
-      <para>FindBugs の公式リリース物を提供します。</para>
-    </listitem>
-    </varlistentry>
-
-    <varlistentry><term><ulink url="http://findbugs.cs.umd.edu/eclipse-candidate/">http://findbugs.cs.umd.edu/eclips-candidate/</ulink></term>
-
-      <listitem>
-        <para>FindBugsの公式リリース物に加えて、公式リリース候補版を提供します。</para>
-      </listitem>
-    </varlistentry>
-
-    <varlistentry><term><ulink url="http://findbugs.cs.umd.edu/eclipse-daily/">http://findbugs.cs.umd.edu/eclipse-daily/</ulink></term>
-
-      <listitem>
-        <para>FindBugsの日次ビルド物を提供します。コンパイルができること以上のテストは行われていません。</para>
-      </listitem>
-    </varlistentry>
-    </variablelist>
-
-<para>また、次に示すリンクから手動でプラグインをダウンロードすることもできます : <ulink url="http://prdownloads.sourceforge.net/findbugs/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122.zip?download">http://prdownloads.sourceforge.net/findbugs/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122.zip?download</ulink>. 展開して Eclipse の「plugins」サブディレクトリーに入れてください。(そうすると、 &lt;eclipse インストールディレクトリー &gt;/plugins/edu.umd.cs.findbugs.plugin.eclipse_2.0.3.20131122/findbugs.png が &FindBugs; のロゴファイルへのパスになるはずです。)</para>
-
-<para>プラグインの展開ができたら、 Eclipse を起動して <menuchoice> <guimenu>Help</guimenu> <guimenuitem>About Eclipse Platform</guimenuitem> <guimenuitem>Plug-in Details</guimenuitem> </menuchoice> を選択してください。「FindBugs Project」から提供された「FindBugs Plug-in」というプラグインがあることを確認してください。</para>
-</sect1>
-
-<sect1>
-<title>プラグインの使用方法</title>
-
-<para>実行するには、 Java プロジェクト上で右クリックして「Find Bugs」を選択します。&FindBugs; が実行されて、バグパターンの実例の可能性があると識別されたコード箇所に問題マーカーがつきます。 (ソース画面および Eclipse 問題ビューに表示されます。)</para>
-
-<para>Java プロジェクトのプロパティーダイアログを開いて「Findbugs」プロパティーページを選択することで、 &FindBugs; の動作をカスタマイズすることができます。選択できる項目には次のようなものがあります :</para>
-
-<itemizedlist>
-  <listitem>
-    <para>「Run FindBugs Automatically」チェックボックスの設定。チェックすると、プロジェクト内の Java クラスが修正されるたびに FindBugs が実行されます。</para>
-  </listitem>
-
-  <listitem>
-    <para>優先度とバグカテゴリーの選択。これらのオプションは、どの警告を表示するかを選択します。例えば、優先度で 「Medium」 を選択すると、優先度 (中) および優先度 (高) の警告のみが表示されます。同様に、「Style」チェックボックスのチェックマークを外すと、Style カテゴリーに属する警告は表示されません。</para>
-  </listitem>
-
-  <listitem>
-    <para>ディテクタの選択。表からプロジェクトで有効にしたいディテクタを選択することができます。</para>
-  </listitem>
-</itemizedlist>
-
-</sect1>
-
-<sect1>
-<title>トラブルシューティング</title>
-
-<para>&FindBugs; Eclipse プラグインは、まだ実験段階です。このセクションでは、プラグインに関する一般的な問題と (判明していれば) それらの問題の解決方法を記述します。</para>
-
-<itemizedlist>
-  <listitem>
-    <para>&FindBugs; 問題マーカーが (ソース画面および問題ビューに) 表示されない場合は、問題ビューのフィルター設定を変更してください。詳細情報は <ulink url="http://findbugs.sourceforge.net/FAQ.html#q7">http://findbugs.sourceforge.net/FAQ.html#q7</ulink> を参照してください。</para>
-  </listitem>
-
-</itemizedlist>
-
-</sect1>
-
-
-</chapter>
-
-
-<!--
-   **************************************************************************
-   Filter files
-   **************************************************************************
--->
-
-<chapter id="filter">
-<title>フィルターファイル</title>
-
-<para>フィルターファイルを使用することで、特定のクラスやメソッドをバグ報告に含めたりバグ報告から除外したりすることができます。この章では、フィルターファイルの使用方法を説明します。<note>
-<title>計画されている機能</title>
-<para>フィルターは現在、コマンドラインインタフェースでのみサポートされています。最終的には、フィルターのサポートは GUI にも追加される予定です。</para>
-</note>
-</para>
-
-
-<sect1>
-<title>フィルターファイルの概要</title>
-
-<para>概念的に言えば、フィルターはバグ検索結果をある基準と照合します。フィルターを定義することで、 特別な取り扱いをするバグ検索結果を選択することができます。例えば、あるバグ検索結果をバグ報告に含めたり、バグ報告から除外したりすることができます。</para>
-
-<para>フィルターファイルは、 <ulink url="http://www.w3.org/XML/">XML</ulink> 文書です。最上位要素が <literal>FindBugsFilter</literal> 要素 であり、その子要素として <literal>Match</literal> 要素を複数個定義します。それぞれの <literal>Match</literal> 要素は、生成されたバグ検索結果に適用される述部にあたります。通常、フィルターはバグ検索結果を除外するために使用します。次に、例を示します:<screen>
-<prompt>$ </prompt><command>findbugs -textui -exclude <replaceable>myExcludeFilter.xml</replaceable> <replaceable>myApp.jar</replaceable></command>
-</screen>また一方で、的をしぼった報告を得るためにバグ報告結果を選択するためにフィルターを使用することも考えられます :<screen>
-<prompt>$ </prompt><command>findbugs -textui -include <replaceable>myIncludeFilter.xml</replaceable> <replaceable>myApp.jar</replaceable></command>
-</screen>
-</para>
-
-<para>
-<literal>Match</literal> 要素は子要素を持ちます。それらの子要素は論理積で述部になります。つまり、述部が真であるためには、すべての子要素が真である必要があります。</para>
-
-</sect1>
-
-<sect1>
-<title>マッチング条件の種類</title>
-
-<variablelist>
- <varlistentry>
-   <term><literal>&lt;Bug&gt;</literal></term>
-   <listitem><para>この要素は、バグパターンを指定して照合します。<literal>pattern</literal> 属性には、コンマ区切りでバグパターン類型のリストを指定します。どの警告がどのバグパターン類型にあたるかは、 <command>-xml</command> オプションをつかって出力されたもの (<literal>BugInstance</literal> 要素の <literal>type</literal> 属性) を見るか、または、 <ulink url="../../bugDescriptions.html">バグ解説ドキュメント</ulink>を参照してください。</para><para>もっと粒度の粗い照合を行いたいときは、 <literal>code</literal> 属性を使用してください。バグ略称のコンマ区切りのリストで指定できます。さらに粒度の粗い照合を行いたいときは、 <literal>category</literal> 属性を使用してください。次に示す、バグカテゴリー名のコンマ区切りのリストで指定できます : <literal>CORRECTNESS</literal>, <literal>MT_CORRECTNESS</literal>, <literal>BAD_PRACTICICE</literal>, <literal>PERFORMANCE</literal>, <literal>STYLE</literal>.</para><para>同じ <literal>&lt;Bug&gt;</literal> 要素に上記の属性を複数指定した場合は、バグパターン名、バグ略称、バグカテゴリーのいずれか1つでも該当すれば、バグパターンは合致すると判定されます。</para><para>下位互換性を持たせたい場合は、 <literal>&lt;Bug&gt;</literal> 要素の代わりに <literal>&lt;BugPattern&gt;</literal> 要素および <literal>&lt;BugCode&gt;</literal> 要素を使用してください。これらの要素はそれぞれ、 <literal>name</literal> 属性で値のリストを指定します。これらの要素は、将来サポートされなくなる可能性があります。</para></listitem>
- </varlistentry>
-
- <varlistentry>
-    <term><literal>&lt;Priority&gt;</literal></term>
-    <listitem>
-        <para>この要素は、特定の優先度をもつ警告を照合します。<literal>value</literal> 属性には、整数値を指定します : 1 は優先度(高)、また、 2  は優先度(中) 、 3 は優先度(低) を示します。</para>
-    </listitem>
- </varlistentry>
-
-
- <varlistentry>
-   <term><literal>&lt;Package&gt;</literal></term>
-    <listitem>
-        <para>この要素は、 <literal>name</literal> 属性で指定した特定のパッケージ内にあるクラスに関連した警告を照合します。入れ子のパッケージは含まれません (Java import 文に従っています) 。しかしながら、正規表現を使うと複数パッケージにマッチさせることは簡単にできます。</para>
-    </listitem>
-  </varlistentry>
-
- <varlistentry>
-   <term><literal>&lt;Class&gt;</literal></term>
-    <listitem>
-        <para>この要素は、特定のクラスに関連した警告を照合します。<literal>name</literal> 属性を使用して、照合するクラス名をクラス名そのものか、または、正規表現で指定します。</para>
-
-        <para>下位互換性を持たせたい場合は、この要素の代わりに <literal>Match</literal> 要素を使用してください。クラス名そのものの指定は <literal>class</literal> 属性を、クラス名を正規表現で指定する場合は <literal>classregex</literal> 属性をそれぞれ使用してください</para>
-
-        <para>もし <literal>Match</literal> 要素に <literal>Class</literal> 要素が無かったり、 <literal>class</literal> / <literal>classregex</literal> 属性が無かったりした場合は、すべてのクラスに適用されます。その場合、想定外に多くのバグ検索結果が一致してしまうことがあり得ます。その場合は、適当なメソッドやフィールドで絞り込んでください。</para>
-    </listitem>
- </varlistentry>
-
- <varlistentry>
-   <term><literal>&lt;Method&gt;</literal></term>
-
-   <listitem><para>この要素は、メソッドを指定します。<literal>name</literal> 属性を使用して、照合するメソッド名をメソッド名そのものか、または、正規表現で指定します。<literal>params</literal> 属性には、コンマ区切りでメソッド引数の型のリストを指定します。<literal>returns</literal> 属性にはメソッドの戻り値の型を指定します。<literal>params</literal> および <literal>returns</literal> においては、クラス名は完全修飾名である必要があります。(例えば、単に &quot;String&quot; ではなく &quot;java.lang.String&quot; としてください。) <literal>params</literal> <literal>returns</literal> のどちらか一方を指定した場合は、もう一方の属性の指定も必須です。なぜならば、メソッドシグニチャーを構築のために必要だからです。<literal>name</literal> 属性、<literal>params</literal> 属性 および <literal>returns</literal> 属性または 3 つの 属性すべて、のどれかを条件とすることできることを意味しています。このように、名前とシグニチャーに基づく様々な種類の条件を規定できます。</para></listitem>
- </varlistentry>
-
- <varlistentry>
-   <term><literal>&lt;Field&gt;</literal></term>
-
-   <listitem><para>この要素は、フィールドを指定します。<literal>name</literal> 属性を使用して、照合するフィールド名をフィールド名そのものか、または、正規表現で指定します。また、フィールドのシグニチャーに照らしたフィルタリングをすることができます。 <literal>type</literal> 属性を使用して、フィールドの型を完全修飾名で指定してください。名前とシグニチャーに基づく条件を規定するために、その2つの属性を両方とも指定することができます。</para></listitem>
- </varlistentry>
-
-   <varlistentry>
-   <term><literal>&lt;Local&gt;</literal></term>
-
-   <listitem><para>この要素は、ローカル変数を指定します。<literal>name</literal> 属性を使用して、照合するローカル変数名をローカル変数名そのものか、または、正規表現で指定します。ローカル変数とは、メソッド内で定義した変数です。</para></listitem>
- </varlistentry>
-
- <varlistentry>
-   <term><literal>&lt;Or&gt;</literal></term>
-    <listitem><para>この要素は、論理和として <literal>Match</literal> 条項を結合します。すなわち、2つの <literal>Method</literal> 要素を <literal>Or</literal> 条項に入れることで、どちらか一方のメソッドでマッチさせることができます。</para></listitem>
- </varlistentry>
-</variablelist>
-
-</sect1>
-
-<sect1>
-<title>Java 要素名マッチング</title>
-
-<para><literal>Class</literal> 、 <literal>Method</literal> または <literal>Field</literal> の <literal>name</literal> 属性が文字 ~ で始まっている場合は、属性値の残りの部分を Java の正規表現として解釈します。そうして、当該 Java 要素の名前に対しての照合が行われます。</para>
-
-<para>パターンの照合は要素の名前全体に対して行われることに注意してください。そのため、部分一致照合を行いたい場合はパターン文字列の前後に .* を付加して使用する必要があります。</para>
-
-<para>パターンの構文規則に関しては、 <ulink url="http://java.sun.com/j2se/1.5.0/ja/docs/ja/api/java/util/regex/Pattern.html"><literal>java.util.regex.Pattern</literal></ulink> のドキュメントを参照してください。</para>
-</sect1>
-
-<sect1>
-<title>留意事項</title>
-
-<para>
-<literal>Match</literal> 条項は、バグ検索結果に実際に含まれている情報にのみ一致します。すべてのバグ検索結果はクラスを持っています。したがって、一般的に言って、バグを除外するためにはクラスを用いて行うとうまくいくことが多いです。</para>
-
-<para>バグ検索結果の中には、2個以上のクラスを保持しているものもあります。例えば、 DE (dropped exception : 例外の無視) バグは、 例外の無視が発生したメソッドを持っているクラスと、 無視された例外の型を表すクラスの両方を含んだ形で報告されます。<literal>Match</literal> 条項とは、 <emphasis>1番目</emphasis> (主) のクラスのみが照合されます。したがって、例えば、クラス &quot;com.foobar.A&quot; 、 &quot;com.foobar.B&quot; 間での IC (initialization circularity : 初期化時の処理循環) バグ報告を抑止したい場合、以下に示すように 2つの <literal>Match</literal> 条項を使用します :<programlisting>
-   &lt;Match&gt;
-      &lt;Class name=&quot;com.foobar.A&quot; /&gt;
-      &lt;Bug code=&quot;IC&quot; /&gt;
-   &lt;/Match&gt;
-
-   &lt;Match&gt;
-      &lt;Class name=&quot;com.foobar.B&quot; /&gt;
-      &lt;Bug code=&quot;IC&quot; /&gt;
-   &lt;/Match&gt;
-</programlisting>明示的に両方のクラスで照合することによって、循環しているどちらのクラスがバグ検索結果の 1 番目になっているかに関係なく一致させることができます。(もちろんこの方法は、処理循環が &quot;com.foobar.A&quot; 、 &quot;com.foobar.B&quot; に加えて3番目のクラスも含んでいる場合は図らずも失敗してしまう恐れがあります。)</para>
-
-<para>多くの種類のバグ報告は、自身が出現したメソッドを報告します。それらのバグ検索結果に対しては、 <literal>Method</literal> 条項を <literal>Match</literal> 要素に加えると期待通りの動作をするでしょう。</para>
-
-</sect1>
-
-<sect1>
-<title>例</title>
-
-<para>1. 特定のクラスに対するすべてのバグ報告に一致させます。<programlisting>
-<![CDATA[
-     <Match>
-       <Class name="com.foobar.MyClass" />
-     </Match>
-]]>
-</programlisting>
-
-</para>
-
-<para>2. バグ略称を指定して、特定のクラスに対する特定の検査項目に一致させます。<programlisting>
-<![CDATA[
-     <Match>
-       <Class name="com.foobar.MyClass"/ >
-       <Bug code="DE,UrF,SIC" />
-     </Match>
-]]>
-</programlisting>
-</para>
-
-<para>3. バグ略称を指定して、すべてのクラスに対する特定の検査項目に一致させます。<programlisting>
-<![CDATA[
-     <Match>
-       <Bug code="DE,UrF,SIC" />
-     </Match>
-]]>
-</programlisting>
-</para>
-
-<para>4. バグカテゴリーを指定して、すべてのクラスに対する特定の検査項目に一致させます。<programlisting>
-<![CDATA[
-     <Match>
-       <Bug category="PERFORMANCE" />
-     </Match>
-]]>
-</programlisting>
-</para>
-
-<para>5. バグ略称を指定して、特定のクラスの指定されたメソッドに対する特定のバグ種別に一致させます。<programlisting>
-<![CDATA[
-     <Match>
-       <Class name="com.foobar.MyClass" />
-       <Or>
-         <Method name="frob" params="int,java.lang.String" returns="void" />
-         <Method name="blat" params="" returns="boolean" />
-       </Or>
-       <Bug code="DC" />
-     </Match>
-]]>
-</programlisting>
-</para>
-
-<para>6. 特定のメソッドに対する特定のバグパターンに一致させます。<programlisting>
-<![CDATA[
-    <!-- open stream に関する誤検出があるメソッド。-->
-    <Match>
-      <Class name="com.foobar.MyClass" />
-      <Method name="writeDataToFile" />
-      <Bug pattern="OS_OPEN_STREAM" />
-    </Match>
-]]>
-</programlisting>
-</para>
-
-<para>7. 特定のメソッドに対する特定の優先度を付与された特定のバグパターンに一致させます。<programlisting>
-<![CDATA[
-    <!-- dead local store (優先度 (中)) に関する誤検出があるメソッド。-->
-    <Match>
-      <Class name="com.foobar.MyClass" />
-      <Method name="someMethod" />
-      <Bug pattern="DLS_DEAD_LOCAL_STORE" />
-      <Priority value="2" />
-    </Match>
-]]>
-</programlisting>
-</para>
-
-<para>8. AspectJ コンパイラーによって引き起こされるマイナーバグに一致させます (AspectJ の開発者でもない限り、それらのバグに関心を持つことはないと考えます)。<programlisting>
-<![CDATA[
-    <Match>
-      <Class name="~.*\$AjcClosure\d+" />
-      <Bug pattern="DLS_DEAD_LOCAL_STORE" />
-      <Method name="run" />
-    </Match>
-    <Match>
-      <Bug pattern="UUF_UNUSED_FIELD" />
-      <Field name="~ajc\$.*" />
-    </Match>
-]]>
-</programlisting>
-</para>
-
-<para>9. 基盤コードの特定の部分に対するバグに一致させます<programlisting>
-<![CDATA[
-    <!-- すべてのパッケージにある Messages クラスに対する unused fields 警告に一致。 -->
-    <Match>
-      <Class name="~.*\.Messages" />
-      <Bug code="UUF" />
-    </Match>
-    <!-- すべての internal パッケージ内の mutable statics 警告に一致。 -->
-    <Match>
-      <Package name="~.*\.internal" />
-      <Bug code="MS" />
-    </Match>
-    <!-- ui パッケージ階層内の anonymoous inner classes 警告に一致。 -->
-    <Match>
-      <Package name="~com\.foobar\.fooproject\.ui.*" />
-      <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON" />
-    </Match>
-]]>
-</programlisting>
-</para>
-
-<para>10. 特定のシグニチャーを持つフィールドまたはメソッドのバグに一致させます。<programlisting>
-<![CDATA[
-    <!-- すべてのクラスの main(String[]) メソッドに対する System.exit(...) usage 警告に一致。 -->
-    <Match>
-      <Method returns="void" name="main" params="java.lang.String[]" />
-      <Method pattern="DM_EXIT" />
-    </Match>
-    <!-- すべてのクラスの com.foobar.DebugInfo 型のフィールドに対する UuF 警告に一致。 -->
-    <Match>
-      <Field type="com.foobar.DebugInfo" />
-      <Bug code="UuF" />
-    </Match>
-]]>
-</programlisting>
-
-</para>
-
-</sect1>
-
-<sect1>
-<title>完全な例</title>
-
-<programlisting>
-<![CDATA[
-<FindBugsFilter>
-     <Match>
-       <Class name="com.foobar.ClassNotToBeAnalyzed" />
-     </Match>
-
-     <Match>
-       <Class name="com.foobar.ClassWithSomeBugsMatched" />
-       <Bug code="DE,UrF,SIC" />
-     </Match>
-
-     <!-- XYZ 違反に一致。-->
-     <Match>
-       <Bug code="XYZ" />
-     </Match>
-
-     <!-- "AnotherClass" の特定のメソッドの doublecheck 違反に一致。-->
-     <Match>
-       <Class name="com.foobar.AnotherClass" />
-       <Or>
-         <Method name="nonOverloadedMethod" />
-         <Method name="frob" params="int,java.lang.String" returns="void" />
-         <Method name="blat" params="" returns="boolean" />
-       </Or>
-       <Bug code="DC" />
-     </Match>
-
-     <!-- dead local store (優先度 (中)) に関する誤検出があるメソッド。-->
-     <Match>
-       <Class name="com.foobar.MyClass" />
-       <Method name="someMethod" />
-       <Bug pattern="DLS_DEAD_LOCAL_STORE" />
-       <Priority value="2" />
-     </Match>
-</FindBugsFilter>
-]]>
-</programlisting>
-
-</sect1>
-
-
-</chapter>
-
-
-<!--
-   **************************************************************************
-   Analysis properties
-   **************************************************************************
--->
-
-<chapter id="analysisprops">
-<title>分析プロパティー</title>
-
-<para>&FindBugs; は分析する場合にいくつかの観点を持っています。そして、観点をカスタマイズして実行することができます。システムプロパティーを使って、それらのオプションを設定します。この章では、分析オプションの設定方法を説明します。</para>
-
-<para>分析オプションの主な目的は、 2 つあります。1 番目は、 &FindBugs; に対して分析されるアプリケーションのメソッドの意味を伝えることです。そうすることで &FindBugs; がより正確な結果を出すことができ、誤検出を減らすことができます。2 番目に、分析を行うに当たりその精度を設定できるようにすることです。分析の精度を落とすことで、メモリ使用量と分析時間を減らすことができます。ただし、本当のバグを見逃したり、誤検出の数が増えるという代償があります。</para>
-
-<para>コマンドラインオプション <command>-property</command> を使って、分析オプションを設定することができます。次に、例を示します:<screen>
-<prompt>$ </prompt><command>findbugs -textui -property &quot;cfg.noprune=true&quot; <replaceable>myApp.jar</replaceable></command>
-</screen>
-</para>
-
-<para>設定することができる分析オプションの一覧を <xref linkend="analysisproptable"/> に示します。</para>
-
-<table id="analysisproptable">
-<title>設定可能な分析プロパティー</title>
-<tgroup cols="3" align="left">
-  <thead>
-    <row>
-      <entry>プロパティー名</entry>
-      <entry>設定値</entry>
-      <entry>目的</entry>
-    </row>
-  </thead>
-  <tbody>
-<!--
-    <row>
-      <entry>cfg.noprune</entry>
-      <entry>true or false</entry>
-      <entry>If true, infeasible exception edges are not pruned from
-      the control flow graphs of analyzed methods.  This option
-      increases the speed of the analysis (by about 20%-30%),
-      but causes some detectors to produce more false warnings.</entry>
-    </row>
--->
-    <row>
-      <entry>findbugs.assertionmethods</entry>
-      <entry>コンマ区切りの完全修飾メソッド名リスト : 例、 &quot;com.foo.MyClass.checkAssertion&quot;</entry>
-      <entry>このプロパティーには、プログラムが正しいことをチェックするために使われるメソッドを指定します。これらのメソッドを指定することで、 チェックメソッドで確認した値に対する null 参照アクセスディテクタの誤検出を回避できます。</entry>
-    </row>
-    <row>
-      <entry>findbugs.de.comment</entry>
-      <entry>true または false</entry>
-      <entry>true に設定すると、 DroppedException (無視された例外) ディテクタは空の catch ブロック にコメントが無いか探します。そして、コメントがみつかった場合には警告が報告されません。</entry>
-    </row>
-    <row>
-      <entry>findbugs.maskedfields.locals</entry>
-      <entry>true または false</entry>
-      <entry>true に設定すると、フィールドを隠蔽しているローカル変数に対して優先度(低)の警告が発行されます。デフォルトは、 false です。</entry>
-    </row>
-    <row>
-      <entry>findbugs.nullderef.assumensp</entry>
-      <entry>true または false</entry>
-      <entry>使用されません。 (意図 : true に設定すると、null 参照アクセスディテクタはメソッドからの戻り値、または、メソッドに受け渡される引数を null であると仮定します。デフォルトは、 false です。このプロパティーを有効にすると、大量の誤検出が生成されるであろうことに注意してください。)</entry>
-    </row>
-    <row>
-      <entry>findbugs.refcomp.reportAll</entry>
-      <entry>true または false</entry>
-      <entry>true に設定すると、  == および != 演算子を使っている疑わしい参照比較がすべて報告されます。 false に設定すると、同様の警告は 1 メソッドにつき 1 つしか発行されません。デフォルトは、 false です。</entry>
-    </row>
-    <row>
-      <entry>findbugs.sf.comment</entry>
-      <entry>true または false</entry>
-      <entry>true に設定すると、 SwitchFallthrough ディテクタはソースコードに「fall」または「nobreak」という単語を含んだコメントを記載していない caseラベル に限り警告を報告します。(この機能が正しく動作するためには、正確なソースパスが必要です。) これにより、意図的ではない switch 文の fallthrough を発見し易くなります。</entry>
-    </row>
-<!-- see others at src/doc/manual/sysprops.html
-    <row>
-      <entry></entry>
-      <entry></entry>
-      <entry></entry>
-    </row>
--->
-  </tbody>
-</tgroup>
-</table>
-
-</chapter>
-
-<!--
-    **************************************************************************
-   Annotations
-   ***************************************************************************
--->
-
-<chapter id="annotations">
-<title>アノテーション</title>
-
-<para>&FindBugs; はいくつかのアノテーションをサポートしています。開発者の意図を明確にすることで、 FindBugs はより的確に警告を発行することができます。アノテーションを使用するためには Java 5 が必要であり、 annotations.jar および jsr305.jar ファイルをコンパイル時のクラスパスに含める必要があります。</para>
-
-<variablelist>
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.CheckForNull</command></term>
-    <listitem>
-<command>[Target]</command> Field, Method, Parameter
-    </listitem>
-    <listitem>
-      <para>アノテーションをつけた要素は、 null である可能性があります。したがって、当該要素を使用する際は null チェックをするべきです。このアノテーションをメソッドに適用すると、メソッドの戻り値に適用されます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.CheckReturnValue</command></term>
-    <listitem>
-      <command>[Target]</command> Method, Constructor
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>priority:</command> 警告の優先度を指定します (HIGH, MEDIUM, LOW, IGNORE) 。デフォルト値 :MEDIUM。</para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>explanation:</command>戻り値をチェックしなけばならない理由をテキストで説明します。デフォルト値 :&quot;&quot;。</para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>このアノテーションを使用して、呼出し後に戻り値をチェックすべきメソッドを表すことができます。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.DefaultAnnotation</command></term>
-    <listitem>
-      <command>[Target]</command> Type, Package
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>アノテーションクラスのclassオブジェクト。複数のクラスを指定することができます。</para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>priority:</command>省略時の優先度を指定します (HIGH, MEDIUM, LOW, IGNORE) 。デフォルト値 :MEDIUM。</para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-Indicates that all members of the class or package should be annotated with the default
-value of the supplied annotation classes. This would be used for behavior annotations
-such as @NonNull, @CheckForNull, or @CheckReturnValue. In particular, you can use
-@DefaultAnnotation(NonNull.class) on a class or package, and then use @Nullable only
-on those parameters, methods or fields that you want to allow to be null.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.DefaultAnnotationForFields</command></term>
-    <listitem>
-      <command>[Target]</command> Type, Package
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>アノテーションクラスのclassオブジェクト。複数のクラスを指定することができます。</para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>priority:</command>省略時の優先度を指定します (HIGH, MEDIUM, LOW, IGNORE) 。デフォルト値 :MEDIUM。</para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-This is same as the DefaultAnnotation except it only applys to fields.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.DefaultAnnotationForMethods</command></term>
-    <listitem>
-      <command>[Target]</command> Type, Package
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>アノテーションクラスのclassオブジェクト。複数のクラスを指定することができます。</para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>priority:</command>省略時の優先度を指定します (HIGH, MEDIUM, LOW, IGNORE) 。デフォルト値 :MEDIUM。</para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-This is same as the DefaultAnnotation except it only applys to methods.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.DefaultAnnotationForParameters</command></term>
-    <listitem>
-      <command>[Target]</command> Type, Package
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>アノテーションクラスのclassオブジェクト。複数のクラスを指定することができます。</para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>priority:</command>省略時の優先度を指定します (HIGH, MEDIUM, LOW, IGNORE) 。デフォルト値 :MEDIUM。</para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-This is same as the DefaultAnnotation except it only applys to method parameters.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.NonNull</command></term>
-    <listitem>
-      <command>[Target]</command> Field, Method, Parameter
-    </listitem>
-    <listitem>
-      <para>アノテーションをつけた要素は、 null であってはいけません。アノテーションをつけたフィールドは、構築完了後 null であってはいけません。アノテーションをつけたメソッドは、 null ではない値を戻り値としなければなりません。</para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.Nullable</command></term>
-    <listitem>
-      <command>[Target]</command> Field, Method, Parameter
-    </listitem>
-    <listitem>
-      <para>アノテーションをつけた要素は、 null であってはいけません。In general, this means developers will have to read the documentation to determine when a null value is acceptable and whether it is neccessary to check for a null value. FindBugs will treat the annotated items as though they had no annotation.</para>
-      <para>
-In pratice this annotation is useful only for overriding an overarching NonNull
-annotation.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.OverrideMustInvoke</command></term>
-    <listitem>
-      <command>[Target]</command> Method
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>Specify when the super invocation should be
-              performed (FIRST, ANYTIME, LAST). Default value:ANYTIME.
-            </para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-Used to annotate a method that, if overridden, must (or should) be invoke super
-in the overriding method. Examples of such methods include finalize() and clone().
-The argument to the method indicates when the super invocation should occur:
-at any time, at the beginning of the overriding method, or at the end of the overriding method.
-(This anotation is not implmemented in FindBugs as of September 8, 2006).
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.PossiblyNull</command></term>
-    <listitem>
-      <para>
-This annotation is deprecated. Use CheckForNull instead.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.SuppressWarnings</command></term>
-    <listitem>
-      <command>[Target]</command> Type, Field, Method, Parameter, Constructor, Package
-    </listitem>
-    <listitem>
-      <variablelist>
-        <varlistentry>
-          <term><command>[Parameter]</command></term>
-          <listitem>
-            <para>
-              <command>value:</command>The name of the warning. More than one name can be specified.
-            </para>
-          </listitem>
-          <listitem>
-            <para>
-              <command>justification:</command>Reason why the warning should be ignored. デフォルト値 :&quot;&quot;。</para>
-          </listitem>
-        </varlistentry>
-      </variablelist>
-    </listitem>
-    <listitem>
-      <para>
-The set of warnings that are to be suppressed by the compiler in the annotated element.
-Duplicate names are permitted.  The second and successive occurrences of a name are ignored.
-The presence of unrecognized warning names is <emphasis>not</emphasis> an error: Compilers
-must ignore any warning names they do not recognize. They are, however, free to emit a
-warning if an annotation contains an unrecognized warning name. Compiler vendors should
-document the warning names they support in conjunction with this annotation type. They
-are encouraged to cooperate to ensure that the same names work across multiple compilers.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.UnknownNullness</command></term>
-    <listitem>
-      <command>[Target]</command> Field, Method, Parameter
-    </listitem>
-    <listitem>
-      <para>
-Used to indicate that the nullness of the target is unknown, or my vary in unknown ways in subclasses.
-      </para>
-    </listitem>
-  </varlistentry>
-
-  <varlistentry>
-    <term><command>edu.umd.cs.findbugs.annotations.UnknownNullness</command></term>
-    <listitem>
-      <command>[Target]</command> Field, Method, Parameter
-    </listitem>
-    <listitem>
-      <para>
-Used to indicate that the nullness of the target is unknown, or my vary in unknown ways in subclasses.
-      </para>
-    </listitem>
-  </varlistentry>
-</variablelist>
-
-<para>また、 &FindBugs; 次に示すアノテーションもサポートしています。 :<itemizedlist>
-  <listitem>net.jcip.annotations.GuardedBy</listitem>
-  <listitem>net.jcip.annotations.Immutable</listitem>
-  <listitem>net.jcip.annotations.NotThreadSafe</listitem>
-  <listitem>net.jcip.annotations.ThreadSafe</listitem>
-</itemizedlist>
-</para>
-<para><ulink url="http://jcip.net/">Java Concurrency in Practice</ulink> の <ulink url="http://jcip.net/annotations/doc/index.html"> API ドキュメント</ulink> を参照してください。</para>
-</chapter>
-
-<!--
-   **************************************************************************
-   Using rejarForAnalysis
-   **************************************************************************
--->
-
-<chapter id="rejarForAnalysis">
-<title>rejarForAnalysis の使用方法</title>
-
-<para>プロジェクトに多くの jar ファイル があったり、 jar ファイルが多くのディレクトリに点在したりする場合は、 <command>rejarForAnalysis </command> スクリプトを使用すると FindBugs の実行が比較的簡単になります。このスクリプトは、数多い jar ファイルを集めて 1 つの大きな jar ファイルに結合します。そうすると、分析時にFindBugs に jar ファイルを設定することが比較的簡単になります。このスクリプトは、 unix システムの 'find' コマンドと組み合わせるととりわけ有用になります ; 次に例を示します。 <command>find . -name '*.jar' | xargs rejarForAnalysis </command>.</para>
-
-<para>また、 <command>rejarForAnalysis</command> スクリプトは巨大なプロジェクトを複数の jar ファイルに分割することに使用できます。プロジェクトのクラスファイルは、複数の jar ファイルに均等に配分されます。これは、プロジェクト全体に対して FindBugs を実行すると時間とメモリ消費が著しい場合に有用です。プロジェクト全体に対して FindBugs を実行する代わりに、 <command> rejarForAnalysis</command> ですべてのクラスを含む大きな jar ファイルを構築します。続いて、 <command>rejarForAnalysis</command> を再び実行して複数の jar ファイルに分割します。そして、各々の jar ファイルに対して順に FindBugs を実行します。その際、 <command>-auxclasspath</command> に最初に 1 つにまとめた jar ファイルを指定してください。</para>
-
-<para><command>rejarForAnalysis</command> スクリプトに指定することができるオプションを以下に示します :</para>
-
-<variablelist>
-  <varlistentry>
-    <term><command>-maxAge</command> <replaceable>日数</replaceable></term>
-    <listitem>
-       <para>最後に更新された日からの経過時間を日単位で指定します (指定した日数より古い jar ファイルは無視されます)。</para>
-    </listitem>
-  </varlistentry>
-  <varlistentry>
-    <term><command>-inputFileList</command> <replaceable>ファイル名</replaceable></term>
-    <listitem>
-       <para>jar ファイル名を記載したテキストファイルを指定します。</para>
-    </listitem>
-  </varlistentry>
-  <varlistentry>
-    <term><command>-maxClasses</command> <replaceable>クラス数</replaceable></term>
-    <listitem>
-       <para>analysis*.jar ファイル 1 ファイルに対するクラスの最大数を指定します。</para>
-    </listitem>
-  </varlistentry>
-  <varlistentry>
-    <term><command>-prefix</command> <replaceable>プレフィックス</replaceable></term>
-    <listitem>
-       <para>分析するクラス名のプレフィックスを指定します  (例、 edu.umd.cs.) 。</para>
-    </listitem>
-  </varlistentry>
-</variablelist>
-</chapter>
-
-<!--
-   **************************************************************************
-   Data mining
-   **************************************************************************
--->
-
-<chapter id="datamining">
-    <title>&FindBugs;&trade; によるデータ・マイニング</title>
-
-<para>バグデータベースへの高機能の問い合わせ機能、および、調査対象のコードの複数のバージョンにわたる警告の追跡記録機能を、 FindBugs は内蔵しています。これらを使って次のようなことができます。すなわち、いつバグが最初持ち込まれたかを捜し出すこと、最終リリース以後持ち込まれた警告の分析を行うこと、または、無限再起ループの数を時間軸でグラフにすることです。</para>
-
-<para>これらの技術は、 FindBugs が警告の保存に使う XML 書式を使用します。これらの XML ファイルは、通常、特定の 1 分析に対する警告が入れられています。しかしそれらには、一連のソフトウェアのビルドやバージョンに対する分析結果を格納することもできます。</para>
-
-<para>すべての FindBugs XML バグデータベースには、バージョン名とタイム・スタンプ が入れられています。FindBugs は分析が行われるファイルの更新時刻からタイム・スタンプを計算します (例えば、タイム・スタンプはクラスファイルの生成時刻になるようになっています。分析が行われた時刻ではありません) 。各々のバグデータベースには、バージョン名も入れられています。バージョン名とタイム・スタンプは、 <command>setBugDatabaseInfo</command> (<xref linkend="setBugDatabaseInfo"/>) コマンドを使用して手動で設定することもできます。</para>
-
-<para>複数バージョンを格納するバグデータベースにおいては、分析されるコードの各バージョンごとにシーケンス番号が割り当てられます。これらのシーケンス番号は単に 0 から始まる連続する整数値です (例えば、 4 つのコードバージョンを格納するバグデータベースには、バージョン 0~3 が入れられます) 。バグデータベースにはまた、各バージョンの名前とタイム・スタンプがそれぞれ記録されます。<command>filterBugs</command> コマンドを使用すると、シーケンス番号、バージョン名またはタイム・スタンプからバージョンを参照することができます。</para>
-
-<para>1 バージョンを格納するバグデータベースの集合から、 1 個の複数バージョンバグデータベースを作成することができます。また、複数バージョンバグデータベースに対して、それ以後に作成された 1 バージョンのバグデータベースを結合することができます。</para>
-
-<para>これらのコマンドのいくつかは、 ant タスクとして実行することができます。コマンドの実行方法および属性・引数の詳細は、以下を参照してください。以下のすべての例においては、 <literal>findbugs.lib</literal> <literal>refid</literal> が正しく設定されていることを前提としています。設定方法の一例を次に示します :</para>
-
-<programlisting>
-<![CDATA[
-   <!-- findbugs タスク定義 -->
-   <property name="findbugs.home" value="/your/path/to/findbugs" />
-   <path id="findbugs.lib">
-      <fileset dir="${findbugs.home}/lib">
-         <include name="findbugs-ant.jar"/>
-      </fileset>
-   </path>
-]]>
-</programlisting>
-
-    <sect1 id="commands">
-        <title>コマンド</title>
-
-        <para>FindBugs データ・マイニング ツールはすべてコマンドラインから実行することができます。また、いくつかのより有用なコマンドは、 ant ビルドファイルから実行することができます。</para>
-
-<para>コマンドラインツールについて簡単に説明します :</para>
-
-        <variablelist>
-            <varlistentry>
-                <term><command><link linkend="unionBugs">unionBugs</link></command></term>
-                <listitem>
-                    <para>別のクラスに対する別個の分析結果を結合します。</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="computeBugHistory">computeBugHistory</link></command></term>
-                <listitem>
-                    <para>複数バージョンから得られた複数のバグ警告を、マージして 1 個の複数バージョンバグデータベースにします。これを使って、既存の複数バージョンバグデータベースに更にバージョンを追加したり、 1 バージョンを格納するバグデータベースの集合から 1 個の複数バージョンバグデータベースを作成したり、できます。</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="setBugDatabaseInfo">setBugDatabaseInfo</link></command></term>
-                <listitem>
-                    <para>リビジョン名やタイム・スタンプなどの情報を XML データベースに設定します。</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="listBugDatabaseInfo">listBugDatabaseInfo</link></command></term>
-                <listitem>
-                    <para>XML データベースにあるリビジョン名やタイム・スタンプなどの情報を一覧表示します。</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="filterBugs">filterBugs</link></command></term>
-                <listitem>
-                    <para>バグデータベースの部分集合を選択します。</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="mineBugHistory">mineBugHistory</link></command></term>
-                <listitem>
-                    <para>複数バージョンバグデータベースの各バージョン毎の警告数を一覧にした表を作成します。</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="defectDensity">defectDensity</link></command></term>
-                <listitem>
-                    <para>プロジェクト全体およびクラス毎・パッケージ毎の不良密度 (1000 NCSS 毎の警告数) に関する情報を一覧表示します。</para>
-                </listitem>
-            </varlistentry>
-            <varlistentry>
-                <term><command><link linkend="convertXmlToText">convertXmlToText</link></command></term>
-                <listitem>
-                    <para>XML 形式のバグ警告を、 1 行 1 バグのテキスト形式、または、HTML形式に変換します。</para>
-                </listitem>
-            </varlistentry>
-        </variablelist>
-
-
-        <sect2 id="unionBugs">
-            <title>unionBugs</title>
-
-        <para>分析するのにアプリケーションの jar ファイルを分割している場合、このコマンドを使用することで、別個に生成された XML バグ警告ファイルをすべての警告を含んでいる 1 つの ファイルにすることができます。</para>
-
-            <para>同じファイルの異なるバージョンを分析した結果を結合する場合は、このコマンドを<emphasis>使用しないでください</emphasis>。代わりに <command>computeBugHistory</command> を使用してください。</para>
-
-            <para>XML ファイルは、コマンドラインで指定してください。結果は、標準出力に送られます。</para>
-        </sect2>
-
-        <sect2 id="computeBugHistory">
-            <title>computeBugHistory</title>
-
-<para>このコマンドを使用することで、分析するソフトウェアの異なるビルドまたはバージョンの情報を含むバグデータベースを生成することができます入力として提供したファイルの 1 番目のファイルから履歴が取得されます。後に続くファイルは 1 バージョンのバグデータベースであるようにしてください (もし、履歴を持っていたとしても無視されます) 。</para>
-<para>デフォルトでは、結果は標準出力に送られます。</para>
-
-<para>この機能は、 ant からも使用することができます。まず次に示すように、ビルドファイルに <command>computeBugHistory</command> を taskdef で定義します :</para>
-
-<programlisting>
-<![CDATA[
-<taskdef name="computeBugHistory" classname="edu.umd.cs.findbugs.anttask.ComputeBugHistoryTask">
-    <classpath refid="findbugs.lib" />
-</taskdef>
-]]>
-</programlisting>
-
-<para>この ant タスクに指定できる属性を、下表に一覧で示します。入力ファイルを指定するには、 <literal>&lt;datafile&gt;</literal> 要素を入れ子にして入れてください。次に、例を示します:</para>
-
-<programlisting>
-<![CDATA[
-<computeBugHistory home="${findbugs.home}" ...>
-    <datafile name="analyze1.xml"/>
-    <datafile name="analyze2.xml"/>
-</computeBugHistory>
-]]>
-</programlisting>
-
-        <table id="computeBugHistoryTable">
-            <title>computeBugHistory コマンドのオプション一覧</title>
-            <tgroup cols="3" align="left">
-                  <thead>
-                    <row>
-                          <entry>コマンドラインオプション</entry>
-                          <entry>Ant 属性</entry>
-                          <entry>目的</entry>
-                    </row>
-                      </thead>
-                  <tbody>
-<row><entry>-output &lt;file&gt;</entry>           <entry>output=&quot;&lt;file&gt;&quot;</entry>           <entry>出力結果を保存するファイル名を指定します。 (同時に入力ファイルにもなりえます)</entry></row>
-<row><entry>-overrideRevisionNames[:truth]</entry> <entry>overrideRevisionNames=&quot;[true|false]&quot;</entry><entry>ファイル名から算出されるそれぞれのバージョン名を指定変更します。</entry></row>
-<row><entry>-noPackageMoves[:truth]</entry>        <entry>noPackageMoves=&quot;[true|false]&quot;</entry><entry>パッケージを移動したクラスがある場合、当該クラスの警告は別の存在として扱われます。</entry></row>
-<row><entry>-preciseMatch[:truth]</entry>          <entry>preciseMatch=&quot;[true|false]&quot;</entry><entry>バグパターンが正確に一致することを要求します。</entry></row>
-<row><entry>-precisePriorityMatch[:truth]</entry>  <entry>precisePriorityMatch=&quot;[true|false]&quot;</entry><entry>優先度が正確に一致した場合のみ警告が同一であると判断されます。</entry></row>
-<row><entry>-quiet[:truth]</entry>                 <entry>quiet=&quot;[true|false]&quot;</entry><entry>エラーが発生しない限り、標準出力には何も表示されません。</entry></row>
-<row><entry>-withMessages[:truth]</entry>          <entry>withMessages=&quot;[true|false]&quot;</entry><entry>出力 XML に人間が読むことができるバグメッセージが含まれます。</entry></row>
-                </tbody>
-            </tgroup>
-        </table>
-
-        </sect2>
-        <sect2 id="filterBugs">
-            <title>filterBugs</title>
-<para>このコマンドを使用することで、 FindBugs XML 警告ファイルから一部分を選び出して新規 FindBugs 警告ファイルに選択された部分を書き込むことができます。</para>
-<para>このコマンドには、オプション群に続いて 0 個から 2 個の findbugs xml バグファイルを指定することができます。</para>
-<para>ファイル名をひとつも指定しない場合は、標準入力から読んで標準出力に出力されます。ファイル名を 1 個 指定した場合は、指定したファイルから読んで標準出力に出力されます。ファイル名を 2 個 指定した場合は、 1 番目に指定したファイルから読んで 2 番目に指定したファイルに出力されます。</para>
-
-<para>この機能は、 ant からも使用することができます。まず次に示すように、ビルドファイルに <command>filterBugs</command> を taskdef で定義します :</para>
-
-<programlisting>
-<![CDATA[
-<taskdef name="filterBugs" classname="edu.umd.cs.findbugs.anttask.FilterBugsTask">
-    <classpath refid="findbugs.lib" />
-</taskdef>
-]]>
-</programlisting>
-
-<para>この ant タスクに指定できる属性を、下表に一覧で示します。入力ファイルを指定するには、 <literal>input</literal>  属性を使用するか、 <literal>&lt;datafile&gt;</literal> 要素を入れ子にして入れてください。次に、例を示します:</para>
-
-<programlisting>
-<![CDATA[
-<filterBugs home="${findbugs.home}" ...>
-    <datafile name="analyze.xml"/>
-</filterBugs>
-]]>
-</programlisting>
-
-        <table id="filterOptionsTable">
-            <title>filterBugs コマンドのオプション一覧</title>
-            <tgroup cols="3" align="left">
-                  <thead>
-                    <row>
-                          <entry>コマンドラインオプション</entry>
-                          <entry>Ant 属性</entry>
-                          <entry>目的</entry>
-                    </row>
-                      </thead>
-                  <tbody>
-<row><entry/>                            <entry>input=&quot;&lt;file&gt;&quot;</entry>             <entry>入力ファイルを指定します。</entry></row>
-<row><entry/>                            <entry>output=&quot;&lt;file&gt;&quot;</entry>            <entry>出力ファイルを指定します。</entry></row>
-<row><entry>-not</entry>                        <entry>not=&quot;[true|false]&quot;</entry>               <entry>フィルターのスイッチを反転します。</entry></row>
-<row><entry>-withSource[:truth]</entry>         <entry>withSource=&quot;[true|false]&quot;</entry>        <entry>ソースが入手可能な警告のみ出力されます。</entry></row>
-<row><entry>-exclude &lt;filter file&gt;</entry><entry>exclude=&quot;&lt;filter file&gt;&quot;</entry>    <entry>フィルターに一致するバグが除外されます。</entry></row>
-<row><entry>-include &lt;filter file&gt;</entry><entry>include=&quot;&lt;filter file&gt;&quot;</entry>    <entry>フィルターに一致するバグのみを含まれます。</entry></row>
-<row><entry>-annotation &lt;text&gt;</entry>    <entry>annotation=&quot;&lt;text&gt;&quot;</entry>        <entry>手で入力した注釈に指定した文言を含む警告のみ出力されます。</entry></row>
-<row><entry>-after &lt;when&gt;</entry>         <entry>after=&quot;&lt;when&gt;&quot;</entry>             <entry>指定したバージョンより後に初めて出現した警告のみ出力されます。</entry></row>
-<row><entry>-before &lt;when&gt;</entry>        <entry>before=&quot;&lt;when&gt;&quot;</entry>            <entry>指定したバージョンより前に初めて出現した警告のみ出力されます。</entry></row>
-<row><entry>-first &lt;when&gt;</entry>         <entry>first=&quot;&lt;when&gt;&quot;</entry>             <entry>指定したバージョンに初めて出現した警告のみ出力されます。</entry></row>
-<row><entry>-last &lt;when&gt;</entry>          <entry>last=&quot;&lt;when&gt;&quot;</entry>              <entry>指定したバージョンが出現した最後である警告のみ出力されます。</entry></row>
-<row><entry>-fixed &lt;when&gt;</entry>         <entry>fixed=&quot;&lt;when&gt;&quot;</entry>             <entry>指定したバージョンの前回のバージョンが出現した最後である警告のみ出力されます。 (<option>-last</option> に優先します)。</entry></row>
-<row><entry>-present &lt;when&gt;</entry>       <entry>present=&quot;&lt;when&gt;&quot;</entry>           <entry>指定したバージョンに存在する警告のみ出力されます。</entry></row>
-<row><entry>-absent &lt;when&gt;</entry>        <entry>absent=&quot;&lt;when&gt;&quot;</entry>            <entry>指定したバージョンに存在しない警告のみ出力されます。</entry></row>
-<row><entry>-active[:truth]</entry>             <entry>active=&quot;[true|false]&quot;</entry>            <entry>最終通番に存在する警告のみ出力されます。</entry></row>
-<row><entry>-introducedByChange[:truth]</entry> <entry>introducedByChange=&quot;[true|false]&quot;</entry><entry>存在するクラスの変更によってもたらされた警告のみ出力されます。</entry></row>
-<row><entry>-removedByChange[:truth]</entry>    <entry>removedByChange=&quot;[true|false]&quot;</entry>   <entry>存在するクラスの変更によって除去された警告のみ出力されます。</entry></row>
-<row><entry>-newCode[:truth]</entry>            <entry>newCode=&quot;[true|false]&quot;</entry>           <entry>新クラスの追加によってもたらされた警告のみ出力されます。</entry></row>
-<row><entry>-removedCode[:truth]</entry>        <entry>removedCode=&quot;[true|false]&quot;</entry>       <entry>クラスの削除によって除去された警告のみ出力されます。</entry></row>
-<row><entry>-priority &lt;level&gt;</entry>     <entry>priority=&quot;&lt;level&gt;&quot;</entry>         <entry>指定した優先度以上の優先度をもつ警告のみ出力されます。</entry></row>
-<row><entry>-class &lt;pattern&gt;</entry>      <entry>class=&quot;&lt;class&gt;&quot;</entry>            <entry>指定したパターンに一致する主クラスをもつ警告のみ出力されます。</entry></row>
-<row><entry>-bugPattern &lt;pattern&gt;</entry> <entry>bugPattern=&quot;&lt;pattern&gt;&quot;</entry>     <entry>指定したパターンに一致するバグ種別をもつ警告のみ出力されます。</entry></row>
-<row><entry>-category &lt;category&gt;</entry>  <entry>category=&quot;&lt;category&gt;&quot;</entry>      <entry>指定した文字列で始まるカテゴリーの警告のみ出力されます。</entry></row>
-<row><entry>-designation &lt;designation&gt;</entry> <entry>designation=&quot;&lt;designation&gt;&quot;</entry> <entry>指定したバグ分類指定をもつ警告のみ出力されます。 (例、 -designation SHOULD_FIX)</entry></row>
-<row><entry>-withMessages[:truth] </entry>      <entry>withMessages=&quot;[true|false]&quot;</entry>      <entry>テキストメッセージを含んだ XML が生成されます。</entry></row>
-                </tbody>
-            </tgroup>
-        </table>
-
-        </sect2>
-
-        <sect2 id="mineBugHistory">
-            <title>mineBugHistory</title>
-<para>このコマンドを使用することで、複数バージョンバグデータベースの各バージョン毎の警告数を一覧にした表を作成することができます。</para>
-
-
-<para>この機能は、 ant からも使用することができます。まず次に示すように、ビルドファイルに <command>mineBugHistory</command> を taskdef で定義します :</para>
-
-<programlisting>
-<![CDATA[
-<taskdef name="mineBugHistory" classname="edu.umd.cs.findbugs.anttask.MineBugHistoryTask">
-    <classpath refid="findbugs.lib" />
-</taskdef>
-]]>
-</programlisting>
-
-<para>この ant タスクに指定できる属性を、下表に一覧で示します。入力ファイルを指定するには、 <literal>input</literal>  属性を使用するか、 <literal>&lt;datafile&gt;</literal> 要素を入れ子にして入れてください。次に、例を示します:</para>
-
-<programlisting>
-<![CDATA[
-<mineBugHistory home="${findbugs.home}" ...>
-    <datafile name="analyze.xml"/>
-</mineBugHistory>
-]]>
-</programlisting>
-
-        <table id="mineBugHistoryOptionsTable">
-            <title>mineBugHistory コマンドのオプション一覧</title>
-            <tgroup cols="3" align="left">
-                  <thead>
-                    <row>
-                          <entry>コマンドラインオプション</entry>
-                          <entry>Ant 属性</entry>
-                          <entry>目的</entry>
-                    </row>
-                  </thead>
-                  <tbody>
-<row><entry/>               <entry>input=&quot;&lt;file&gt;&quot;</entry>             <entry>入力ファイルを指定します。</entry></row>
-<row><entry/>               <entry>output=&quot;&lt;file&gt;&quot;</entry>            <entry>出力ファイルを指定します。</entry></row>
-<row><entry>-formatDates</entry>   <entry>formatDates=&quot;[true|false]&quot;</entry>       <entry>データがテキスト形式で描画されます。</entry></row>
-<row><entry>-noTabs</entry>        <entry>noTabs=&quot;[true|false]&quot;</entry>            <entry>タブの代わりに複数スペースでカラムが区切られます (下記参照)。</entry></row>
-<row><entry>-summary</entry>       <entry>summary=&quot;[true|false]&quot;</entry>           <entry>最新 10 件の変更の要約が出力されます。</entry></row>
-                </tbody>
-            </tgroup>
-        </table>
-
-        <para><option>-noTabs</option> 出力を使うことで、固定幅フォントのシェルで読み易くなります。数値カラムは右寄せされるので、スペースがカラム値の前に挿入されます。また、このオプションを使用した場合、 <option>-formatDates</option> を指定したときに要約の日付を描画するのに空白が埋め込まれなくなります。</para>
-
-        <para>出力される表は、 (<option>-noTabs</option> が無ければ) タブ区切りで次に示すカラムから成ります :</para>
-
-        <table id="mineBugHistoryColumns">
-            <title>mineBugHistory 出力のカラム一覧</title>
-            <tgroup cols="2" align="left">
-                  <thead>
-                    <row>
-                          <entry>表題</entry>
-                          <entry>目的</entry>
-                    </row>
-                      </thead>
-                  <tbody>
-                      <row><entry>seq</entry><entry>シーケンス番号 (0 始まりの連続した整数値)</entry></row>
-                      <row><entry>version</entry><entry>バージョン名</entry></row>
-                      <row><entry>time</entry><entry>リリースされた日時</entry></row>
-                      <row><entry>classes</entry><entry>分析されたクラス数</entry></row>
-                      <row><entry>NCSS</entry><entry>コメント文を除いた命令数 (Non Commenting Source Statements)</entry></row>
-                      <row><entry>added</entry><entry>前回のバージョンに存在したクラスにおける新規警告数</entry></row>
-                      <row><entry>newCode</entry><entry>前回のバージョンに存在しなかったクラスにおける新規警告数</entry></row>
-                      <row><entry>fixed</entry><entry>現在のバージョンに存在するクラスにおける除去された警告数</entry></row>
-                      <row><entry>removed</entry><entry>現在のバージョンに存在しないクラスの前回のバージョンにおける警告数</entry></row>
-                      <row><entry>retained</entry><entry>現在のバージョンと前回のバージョンの両方に存在する警告の数</entry></row>
-                      <row><entry>dead</entry><entry>以前のバージョンに存在したが現在のバージョンにも直前のバージョンにも存在しない警告の数</entry></row>
-                      <row><entry>active</entry><entry>現在のバージョンに存在する警告総数</entry></row>
-                </tbody>
-                </tgroup>
-        </table>
-        </sect2>
-
-        <sect2 id="defectDensity">
-            <title>defectDensity</title>
-<para>このコマンドを使用することで、プロジェクト全体およびクラス毎・パッケージ毎の不良密度 (1000 NCSS 毎の警告数) に関する情報を一覧表示できます。標準入力から読み込む場合はファイル指定なしで、そうでなければ、コマンドラインでファイルを指定して、このコマンドを実行します。</para>
-<para>出力される表は、次に示すカラムから成ります。また、プロジェクト全体情報の行、および、4 個以上の警告を含んでいる各パッケージ情報または各クラス情報の行も出力されます。</para>
-        <table id="defectDensityColumns">
-            <title>defectDensity 出力のカラム一覧</title>
-            <tgroup cols="2" align="left">
-                  <thead>
-                    <row>
-                          <entry>表題</entry>
-                          <entry>目的</entry>
-                    </row>
-                      </thead>
-                  <tbody>
-                      <row><entry>kind</entry><entry>プロジェクト (project)、パッケージ (package) またはクラス (class)</entry></row>
-                      <row><entry>name</entry><entry>プロジェクト、パッケージまたはクラスの名前</entry></row>
-                      <row><entry>density</entry><entry> 1000 NCSS 毎の警告数</entry></row>
-                      <row><entry>bugs</entry><entry>警告数</entry></row>
-                      <row><entry>NCSS</entry><entry>コメント文を除いた命令数 (Non Commenting Source Statements) </entry></row>
-                </tbody>
-                </tgroup>
-            </table>
-        </sect2>
-
-        <sect2 id="convertXmlToText">
-            <title>convertXmlToText</title>
-
-            <para>このコマンドを使用することで、XML 形式のバグ警告を、 1 行 1 バグのテキスト形式、または、HTML形式に変換することができます。</para>
-
-<para>この機能は、 ant からも使用することができます。まず次に示すように、ビルドファイルに <command>convertXmlToText</command> を taskdef で定義します :</para>
-
-<programlisting>
-<![CDATA[
-<taskdef name="convertXmlToText" classname="edu.umd.cs.findbugs.anttask.ConvertXmlToTextTask">
-    <classpath refid="findbugs.lib" />
-</taskdef>
-]]>
-</programlisting>
-
-<para>この ant タスクに指定できる属性を、下表に一覧で示します。</para>
-
-            <table id="convertXmlToTextTable">
-            <title>convertXmlToText コマンドのオプション一覧</title>
-            <tgroup cols="3" align="left">
-                  <thead>
-                    <row>
-                          <entry>コマンドラインオプション</entry>
-                          <entry>Ant 属性</entry>
-                          <entry>目的</entry>
-                    </row>
-                      </thead>
-                  <tbody>
-<row><entry/>                   <entry>input=&quot;&lt;filename&gt;&quot;</entry>         <entry>入力ファイルを指定します。</entry></row>
-<row><entry/>                   <entry>output=&quot;&lt;filename&gt;&quot;</entry>        <entry>出力ファイルを指定します。</entry></row>
-<row><entry>-longBugCodes</entry>      <entry>longBugCodes=&quot;[true|false]&quot;</entry>      <entry>2 文字のバグ略称の代わりに、省略なしのバグパターンコードを使用します。</entry></row>
-<row><entry/>                   <entry>format=&quot;text&quot;</entry>                    <entry>プレーンテキストの出力が作成されます。1 行につき 1 つのバグが出力されます。コマンドライン時のデフォルトです。</entry></row>
-<row><entry>-html[:stylesheet]</entry> <entry>format=&quot;html:&lt;stylesheet&gt;&quot;</entry> <entry>指定されたスタイルシートを使用して出力が作成されます (下記参照) 。省略した場合は、 default.xsl が使用されます。</entry></row>
-                </tbody>
-            </tgroup>
-            </table>
-
-            <para>-html/format オプションには、plain.xsl 、 default.xsl 、 fancy.xsl 、 fancy-hist.xsl または ユーザ自身が作成した XSL スタイルシートのいずれかを指定することができます。オプション名をよそに、 html 以外の形式を出力するスタイルシートを指定することもできます。FindBugs に含まれているスタイルシート(上述)以外のスタイルシートを使用する場合は、オプション -html/format で当該スタイルシートへのパスまたは URL を指定してください。</para>
-        </sect2>
-
-        <sect2 id="setBugDatabaseInfo">
-            <title>setBugDatabaseInfo</title>
-
-            <para>このコマンドを使用することで、指定したバグ警告にメタ情報を設定することができます。このコマンドには次に示すオプションがあります:</para>
-
-<para>この機能は、 ant からも使用することができます。まず次に示すように、ビルドファイルに <command>setBugDatabaseInfo</command> を taskdef で定義します :</para>
-
-<programlisting>
-<![CDATA[
-<taskdef name="setBugDatabaseInfo" classname="edu.umd.cs.findbugs.anttask.SetBugDatabaseInfoTask">
-    <classpath refid="findbugs.lib" />
-</taskdef>
-]]>
-</programlisting>
-
-<para>この ant タスクに指定できる属性を、下表に一覧で示します。入力ファイルを指定するには、 <literal>input</literal>  属性を使用するか、 <literal>&lt;datafile&gt;</literal> 要素を入れ子にして入れてください。次に、例を示します:</para>
-
-<programlisting>
-<![CDATA[
-<setBugDatabaseInfo home="${findbugs.home}" ...>
-    <datafile name="analyze.xml"/>
-</setBugDatabaseInfo>
-]]>
-</programlisting>
-
-        <table id="setBugDatabaseInfoOptions">
-            <title>setBugDatabaseInfo オプション一覧</title>
-            <tgroup cols="3" align="left">
-                  <thead>
-                    <row>
-                          <entry>コマンドラインオプション</entry>
-                          <entry>Ant 属性</entry>
-                          <entry>目的</entry>
-                    </row>
-                  </thead>
-                  <tbody>
-                      <row><entry/>                              <entry>input=&quot;&lt;file&gt;&quot;</entry>           <entry>入力ファイルを指定します。</entry></row>
-                      <row><entry/>                              <entry>output=&quot;&lt;file&gt;&quot;</entry>          <entry>出力ファイルを指定します。</entry></row>
-                      <row><entry>-name &lt;name&gt;</entry>            <entry>name=&quot;&lt;name&gt;&quot;</entry>            <entry>最新リビジョンの名前を設定します。</entry></row>
-                      <row><entry>-timestamp &lt;when&gt;</entry>       <entry>timestamp=&quot;&lt;when&gt;&quot;</entry>       <entry>最新リビジョンのタイム・スタンプを設定します。</entry></row>
-                      <row><entry>-source &lt;directory&gt;</entry>     <entry>source=&quot;&lt;directory&gt;&quot;</entry>     <entry>ソースを検索するディレクトリーを追加指定します。</entry></row>
-                      <row><entry>-findSource &lt;directory&gt;</entry> <entry>findSource=&quot;&lt;directory&gt;&quot;</entry> <entry>指定したディレクトリー内を検索して関連するソースの場所を追加します。</entry></row>
-                      <row><entry>-suppress &lt;filter file&gt;</entry> <entry>suppress=&quot;&lt;filter file&gt;&quot;</entry> <entry>指定したファイルに一致する警告を抑止します (以前に指定した抑止設定は置き換えられます)。</entry></row>
-                      <row><entry>-withMessages</entry>                 <entry>withMessages=&quot;[true|false]&quot;</entry>    <entry>XMLにテキストメッセージを追加します。</entry></row>
-                      <row><entry>-resetSource</entry>                  <entry>resetSource=&quot;[true|false]&quot;</entry>     <entry>ソース検索パスをすべて削除します。</entry></row>
-                 </tbody>
-                </tgroup>
-            </table>
-        </sect2>
-
-        <sect2 id="listBugDatabaseInfo">
-            <title>listBugDatabaseInfo</title>
-
-            <para>このコマンドの実行においては、コマンドラインで 0 個以上の xml バグデータベースファイル名を指定します。ファイル名を1つも指定しなければ、標準出力から読み込みを行いテーブルのヘッダーは生成されません。</para>
-
-<para>このコマンドには 1 つだけオプションがあります : <option>-formatDates</option> を指定するとテキスト形式でデータが描画されます。</para>
-
-<para>出力される表は、各バグデータベースごとに行を持ち、次に示すカラムから成ります :</para>
-        <table id="listBugDatabaseInfoColumns">
-            <title>listBugDatabaseInfo カラム一覧</title>
-            <tgroup cols="2" align="left">
-                  <thead>
-                    <row>
-                          <entry>カラム</entry>
-                          <entry>目的</entry>
-                    </row>
-                  </thead>
-                  <tbody>
-                      <row><entry>version</entry><entry>バージョン名</entry></row>
-                      <row><entry>time</entry><entry>リリースされた日時</entry></row>
-                      <row><entry>classes</entry><entry>分析されたクラス数</entry></row>
-                      <row><entry>NCSS</entry><entry>コメント文を除いた命令数 (Non Commenting Source Statements)</entry></row>
-                      <row><entry>total</entry><entry>全警告数</entry></row>
-                      <row><entry>high</entry><entry>優先度(高)の警告の総数</entry></row>
-                      <row><entry>medium</entry><entry>優先度(中)の警告の総数</entry></row>
-                      <row><entry>low</entry><entry>優先度(低)の警告の総数</entry></row>
-                      <row><entry>filename</entry><entry>データベースのファイル名</entry></row>
-<!--
-                      <row><entry></entry><entry></entry></row>
-                      <row><entry></entry><entry></entry></row>
-                      <row><entry></entry><entry></entry></row>
-                      <row><entry></entry><entry></entry></row>
-                      <row><entry></entry><entry></entry></row>
-                      <row><entry></entry><entry></entry></row>
--->
-                 </tbody>
-                </tgroup>
-            </table>
-
-        </sect2>
-
-    </sect1>
-
-    <sect1 id="examples">
-        <title>例</title>
-<sect2 id="unixscriptsexamples">
-   <title>提供されたシェル・スクリプトを使用しての履歴マイニング</title>
-<para>以下はすべて、 jdk1.6.0-b12, jdk1.6.0-b13, ..., jdk1.6.0-b60 のディレクトリに対してコマンドを実行しています。</para>
-
-<para>以下のコマンドを実行してみます :</para>
-<screen>
-computeBugHistory jdk1.6.0-b* | filterBugs -bugPattern IL_ | mineBugHistory -formatDates
-</screen>
-<para>すると、次のような出力が行われます :</para>
-
-<screen>
-seq	version	time	classes	NCSS	added	newCode	fixed	removed	retained	dead	active
-0	jdk1.6.0-b12	&quot;Thu Nov 11 09:07:20 EST 2004&quot;	13128	811569	0	4	0	0	0	0	4
-1	jdk1.6.0-b13	&quot;Thu Nov 18 06:02:06 EST 2004&quot;	13128	811570	0	0	0	0	4	0	4
-2	jdk1.6.0-b14	&quot;Thu Dec 02 06:12:26 EST 2004&quot;	13145	811786	0	0	2	0	2	0	2
-3	jdk1.6.0-b15	&quot;Thu Dec 09 06:07:04 EST 2004&quot;	13174	811693	0	0	1	0	1	2	1
-4	jdk1.6.0-b16	&quot;Thu Dec 16 06:21:28 EST 2004&quot;	13175	811715	0	0	0	0	1	3	1
-5	jdk1.6.0-b17	&quot;Thu Dec 23 06:27:22 EST 2004&quot;	13176	811974	0	0	0	0	1	3	1
-6	jdk1.6.0-b19	&quot;Thu Jan 13 06:41:16 EST 2005&quot;	13176	812011	0	0	0	0	1	3	1
-7	jdk1.6.0-b21	&quot;Thu Jan 27 05:57:52 EST 2005&quot;	13177	812173	0	0	0	0	1	3	1
-8	jdk1.6.0-b23	&quot;Thu Feb 10 05:44:36 EST 2005&quot;	13179	812188	0	0	0	0	1	3	1
-9	jdk1.6.0-b26	&quot;Thu Mar 03 06:04:02 EST 2005&quot;	13199	811770	0	0	0	0	1	3	1
-10	jdk1.6.0-b27	&quot;Thu Mar 10 04:48:38 EST 2005&quot;	13189	812440	0	0	0	0	1	3	1
-11	jdk1.6.0-b28	&quot;Thu Mar 17 02:54:22 EST 2005&quot;	13185	812056	0	0	0	0	1	3	1
-12	jdk1.6.0-b29	&quot;Thu Mar 24 03:09:20 EST 2005&quot;	13117	809468	0	0	0	0	1	3	1
-13	jdk1.6.0-b30	&quot;Thu Mar 31 02:53:32 EST 2005&quot;	13118	809501	0	0	0	0	1	3	1
-14	jdk1.6.0-b31	&quot;Thu Apr 07 03:00:14 EDT 2005&quot;	13117	809572	0	0	0	0	1	3	1
-15	jdk1.6.0-b32	&quot;Thu Apr 14 02:56:56 EDT 2005&quot;	13169	811096	0	0	0	0	1	3	1
-16	jdk1.6.0-b33	&quot;Thu Apr 21 02:46:22 EDT 2005&quot;	13187	811942	0	0	0	0	1	3	1
-17	jdk1.6.0-b34	&quot;Thu Apr 28 02:49:00 EDT 2005&quot;	13195	813488	0	1	0	0	1	3	2
-18	jdk1.6.0-b35	&quot;Thu May 05 02:49:04 EDT 2005&quot;	13457	829837	0	0	0	0	2	3	2
-19	jdk1.6.0-b36	&quot;Thu May 12 02:59:46 EDT 2005&quot;	13462	831278	0	0	0	0	2	3	2
-20	jdk1.6.0-b37	&quot;Thu May 19 02:55:08 EDT 2005&quot;	13464	831971	0	0	0	0	2	3	2
-21	jdk1.6.0-b38	&quot;Thu May 26 03:08:16 EDT 2005&quot;	13564	836565	0	0	0	0	2	3	2
-22	jdk1.6.0-b39	&quot;Fri Jun 03 03:10:48 EDT 2005&quot;	13856	849992	0	1	0	0	2	3	3
-23	jdk1.6.0-b40	&quot;Thu Jun 09 03:30:28 EDT 2005&quot;	15972	959619	0	2	0	0	3	3	5
-24	jdk1.6.0-b41	&quot;Thu Jun 16 03:19:22 EDT 2005&quot;	15972	959619	0	0	0	0	5	3	5
-25	jdk1.6.0-b42	&quot;Fri Jun 24 03:38:54 EDT 2005&quot;	15966	958581	0	0	0	0	5	3	5
-26	jdk1.6.0-b43	&quot;Thu Jul 14 03:09:34 EDT 2005&quot;	16041	960544	0	0	0	0	5	3	5
-27	jdk1.6.0-b44	&quot;Thu Jul 21 03:05:54 EDT 2005&quot;	16041	960547	0	0	0	0	5	3	5
-28	jdk1.6.0-b45	&quot;Thu Jul 28 03:26:10 EDT 2005&quot;	16037	960606	0	0	1	0	4	3	4
-29	jdk1.6.0-b46	&quot;Thu Aug 04 03:02:48 EDT 2005&quot;	15936	951355	0	0	0	0	4	4	4
-30	jdk1.6.0-b47	&quot;Thu Aug 11 03:18:56 EDT 2005&quot;	15964	952387	0	0	1	0	3	4	3
-31	jdk1.6.0-b48	&quot;Thu Aug 18 08:10:40 EDT 2005&quot;	15970	953421	0	0	0	0	3	5	3
-32	jdk1.6.0-b49	&quot;Thu Aug 25 03:24:38 EDT 2005&quot;	16048	958940	0	0	0	0	3	5	3
-33	jdk1.6.0-b50	&quot;Thu Sep 01 01:52:40 EDT 2005&quot;	16287	974937	1	0	0	0	3	5	4
-34	jdk1.6.0-b51	&quot;Thu Sep 08 01:55:36 EDT 2005&quot;	16362	979377	0	0	0	0	4	5	4
-35	jdk1.6.0-b52	&quot;Thu Sep 15 02:04:08 EDT 2005&quot;	16477	979399	0	0	0	0	4	5	4
-36	jdk1.6.0-b53	&quot;Thu Sep 22 02:00:28 EDT 2005&quot;	16019	957900	0	0	1	0	3	5	3
-37	jdk1.6.0-b54	&quot;Thu Sep 29 01:54:34 EDT 2005&quot;	16019	957900	0	0	0	0	3	6	3
-38	jdk1.6.0-b55	&quot;Thu Oct 06 01:54:14 EDT 2005&quot;	16051	959014	0	0	0	0	3	6	3
-39	jdk1.6.0-b56	&quot;Thu Oct 13 01:54:12 EDT 2005&quot;	16211	970835	0	0	0	0	3	6	3
-40	jdk1.6.0-b57	&quot;Thu Oct 20 01:55:26 EDT 2005&quot;	16279	971627	0	0	0	0	3	6	3
-41	jdk1.6.0-b58	&quot;Thu Oct 27 01:56:30 EDT 2005&quot;	16283	971945	0	0	0	0	3	6	3
-42	jdk1.6.0-b59	&quot;Thu Nov 03 01:56:58 EST 2005&quot;	16232	972193	0	0	0	0	3	6	3
-43	jdk1.6.0-b60	&quot;Thu Nov 10 01:54:18 EST 2005&quot;	16235	972346	0	0	0	0	3	6	3
-</screen>
-
-<para>次に示すコマンドを実行すると、db.xml 中間ファイルを生成することなく直接同じ情報を作成できます。</para>
-
-<screen>
-computeBugHistory  jdk1.6.0-b*/jre/lib/rt.xml | filterBugs -bugPattern IL_ db.xml | mineBugHistory -formatDates
-</screen>
-
-<para>この情報を使って、 Sun JDK1.6.0 の各ビルドにおいて FindBugs によって発見された無限再起ループの数を表すグラフを表示します。青色の領域は、当該ビルドにおける無限再起ループの数を表しています。その上に描かれている赤色の領域は、以前のバージョンには存在したが当該バージョンでは除去された無限再起ループの数を表しています。 (したがって、赤色の領域と青色の領域を足し合わせた高さは決して減少しないことが保証されています。そして、新たに無限再起ループのバグが持ち込まれた時点で増加します) 。赤色の領域の高さは、当該バージョンにおいて修正または削除されたバグ数の合計で算出されます。バージョン 13 および 14 において見られる減少は、 FindBugs を使用して見つかった JDK のバグの報告を Sun が受け取ったことによるものです。</para>
-<mediaobject>
-<imageobject>
-<imagedata fileref="infiniteRecursiveLoops.png"/>
-</imageobject>
-</mediaobject>
-
-<para>db.xml ファイルは、 jdk1.6.0 のすべてのビルドに対する検索結果を保持しています。したがって、次に示すコマンドを実行することで、優先度(高)または優先度(低)の正確性に関する警告の履歴が表示されます :</para>
-
-<screen>
-filterBugs -priority M -category C db.xml | mineBugHistory -formatDates
-</screen>
-
-<para>作成される表の例 :</para>
-
-<screen>
-seq	version	time	classes	NCSS	added	newCode	fixed	removed	retained	dead	active
-0	jdk1.6.0-b12	&quot;Thu Nov 11 09:07:20 EST 2004&quot;	13128	811569	0	1075	0	0	0	0	1075
-1	jdk1.6.0-b13	&quot;Thu Nov 18 06:02:06 EST 2004&quot;	13128	811570	0	0	0	0	1075	0	1075
-2	jdk1.6.0-b14	&quot;Thu Dec 02 06:12:26 EST 2004&quot;	13145	811786	3	0	6	0	1069	0	1072
-3	jdk1.6.0-b15	&quot;Thu Dec 09 06:07:04 EST 2004&quot;	13174	811693	2	1	3	0	1069	6	1072
-4	jdk1.6.0-b16	&quot;Thu Dec 16 06:21:28 EST 2004&quot;	13175	811715	0	0	1	0	1071	9	1071
-5	jdk1.6.0-b17	&quot;Thu Dec 23 06:27:22 EST 2004&quot;	13176	811974	0	0	1	0	1070	10	1070
-6	jdk1.6.0-b19	&quot;Thu Jan 13 06:41:16 EST 2005&quot;	13176	812011	0	0	0	0	1070	11	1070
-7	jdk1.6.0-b21	&quot;Thu Jan 27 05:57:52 EST 2005&quot;	13177	812173	0	0	1	0	1069	11	1069
-8	jdk1.6.0-b23	&quot;Thu Feb 10 05:44:36 EST 2005&quot;	13179	812188	0	0	0	0	1069	12	1069
-9	jdk1.6.0-b26	&quot;Thu Mar 03 06:04:02 EST 2005&quot;	13199	811770	0	0	2	1	1066	12	1066
-10	jdk1.6.0-b27	&quot;Thu Mar 10 04:48:38 EST 2005&quot;	13189	812440	1	0	1	1	1064	15	1065
-11	jdk1.6.0-b28	&quot;Thu Mar 17 02:54:22 EST 2005&quot;	13185	812056	0	0	0	0	1065	17	1065
-12	jdk1.6.0-b29	&quot;Thu Mar 24 03:09:20 EST 2005&quot;	13117	809468	3	0	8	26	1031	17	1034
-13	jdk1.6.0-b30	&quot;Thu Mar 31 02:53:32 EST 2005&quot;	13118	809501	0	0	0	0	1034	51	1034
-14	jdk1.6.0-b31	&quot;Thu Apr 07 03:00:14 EDT 2005&quot;	13117	809572	0	0	0	0	1034	51	1034
-15	jdk1.6.0-b32	&quot;Thu Apr 14 02:56:56 EDT 2005&quot;	13169	811096	1	1	0	1	1033	51	1035
-16	jdk1.6.0-b33	&quot;Thu Apr 21 02:46:22 EDT 2005&quot;	13187	811942	3	0	2	1	1032	52	1035
-17	jdk1.6.0-b34	&quot;Thu Apr 28 02:49:00 EDT 2005&quot;	13195	813488	0	1	0	0	1035	55	1036
-18	jdk1.6.0-b35	&quot;Thu May 05 02:49:04 EDT 2005&quot;	13457	829837	0	36	2	0	1034	55	1070
-19	jdk1.6.0-b36	&quot;Thu May 12 02:59:46 EDT 2005&quot;	13462	831278	0	0	0	0	1070	57	1070
-20	jdk1.6.0-b37	&quot;Thu May 19 02:55:08 EDT 2005&quot;	13464	831971	0	1	1	0	1069	57	1070
-21	jdk1.6.0-b38	&quot;Thu May 26 03:08:16 EDT 2005&quot;	13564	836565	1	7	2	6	1062	58	1070
-22	jdk1.6.0-b39	&quot;Fri Jun 03 03:10:48 EDT 2005&quot;	13856	849992	6	39	5	0	1065	66	1110
-23	jdk1.6.0-b40	&quot;Thu Jun 09 03:30:28 EDT 2005&quot;	15972	959619	7	147	11	0	1099	71	1253
-24	jdk1.6.0-b41	&quot;Thu Jun 16 03:19:22 EDT 2005&quot;	15972	959619	0	0	0	0	1253	82	1253
-25	jdk1.6.0-b42	&quot;Fri Jun 24 03:38:54 EDT 2005&quot;	15966	958581	3	0	1	2	1250	82	1253
-26	jdk1.6.0-b43	&quot;Thu Jul 14 03:09:34 EDT 2005&quot;	16041	960544	5	11	15	8	1230	85	1246
-27	jdk1.6.0-b44	&quot;Thu Jul 21 03:05:54 EDT 2005&quot;	16041	960547	0	0	0	0	1246	108	1246
-28	jdk1.6.0-b45	&quot;Thu Jul 28 03:26:10 EDT 2005&quot;	16037	960606	19	0	2	0	1244	108	1263
-29	jdk1.6.0-b46	&quot;Thu Aug 04 03:02:48 EDT 2005&quot;	15936	951355	13	1	1	32	1230	110	1244
-30	jdk1.6.0-b47	&quot;Thu Aug 11 03:18:56 EDT 2005&quot;	15964	952387	163	8	7	20	1217	143	1388
-31	jdk1.6.0-b48	&quot;Thu Aug 18 08:10:40 EDT 2005&quot;	15970	953421	0	0	0	0	1388	170	1388
-32	jdk1.6.0-b49	&quot;Thu Aug 25 03:24:38 EDT 2005&quot;	16048	958940	1	11	1	0	1387	170	1399
-33	jdk1.6.0-b50	&quot;Thu Sep 01 01:52:40 EDT 2005&quot;	16287	974937	19	27	16	7	1376	171	1422
-34	jdk1.6.0-b51	&quot;Thu Sep 08 01:55:36 EDT 2005&quot;	16362	979377	1	15	3	0	1419	194	1435
-35	jdk1.6.0-b52	&quot;Thu Sep 15 02:04:08 EDT 2005&quot;	16477	979399	0	0	1	1	1433	197	1433
-36	jdk1.6.0-b53	&quot;Thu Sep 22 02:00:28 EDT 2005&quot;	16019	957900	13	12	16	20	1397	199	1422
-37	jdk1.6.0-b54	&quot;Thu Sep 29 01:54:34 EDT 2005&quot;	16019	957900	0	0	0	0	1422	235	1422
-38	jdk1.6.0-b55	&quot;Thu Oct 06 01:54:14 EDT 2005&quot;	16051	959014	1	4	7	0	1415	235	1420
-39	jdk1.6.0-b56	&quot;Thu Oct 13 01:54:12 EDT 2005&quot;	16211	970835	6	8	37	0	1383	242	1397
-40	jdk1.6.0-b57	&quot;Thu Oct 20 01:55:26 EDT 2005&quot;	16279	971627	0	0	0	0	1397	279	1397
-41	jdk1.6.0-b58	&quot;Thu Oct 27 01:56:30 EDT 2005&quot;	16283	971945	0	1	1	0	1396	279	1397
-42	jdk1.6.0-b59	&quot;Thu Nov 03 01:56:58 EST 2005&quot;	16232	972193	6	0	5	0	1392	280	1398
-43	jdk1.6.0-b60	&quot;Thu Nov 10 01:54:18 EST 2005&quot;	16235	972346	0	0	0	0	1398	285	1398
-44	jdk1.6.0-b61	&quot;Thu Nov 17 01:58:42 EST 2005&quot;	16202	971134	2	0	4	0	1394	285	1396
-</screen>
-</sect2>
-
-<sect2 id="incrementalhistory">
-    <title>増分履歴メンテナンス</title>
-
-<para>仮に、 db.xml がビルド b12 - b60 に対する findbugs 実行結果を保持している場合、次に示すコマンドを実行することで、 db.xml に b61 に対する実行結果を追加することができます :</para>
-<screen>
-computeBugHistory -output db.xml db.xml jdk1.6.0-b61/jre/lib/rt.xml
-</screen>
-</sect2>
-
-            </sect1>
-
-         <sect1 id="antexample">
-            <title>Ant の例</title>
-<para>findbugs の実行とその後のデータ・マイニングツールの活用の両方を実行している ant スクリプトの完全な例を以下に示します :</para>
-<screen>
-<![CDATA[
-<project name="analyze_asm_util" default="findbugs">
-   <!-- findbugs タスク定義 -->
-   <property name="findbugs.home" value="/Users/ben/Documents/workspace/findbugs/findbugs" />
-   <property name="jvmargs" value="-server -Xss1m -Xmx800m -Duser.language=en -Duser.region=EN -Dfindbugs.home=${findbugs.home}" />
-
-    <path id="findbugs.lib">
-      <fileset dir="${findbugs.home}/lib">
-         <include name="findbugs-ant.jar"/>
-      </fileset>
-   </path>
-
-   <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask">
-      <classpath refid="findbugs.lib" />
-   </taskdef>
-
-   <taskdef name="computeBugHistory" classname="edu.umd.cs.findbugs.anttask.ComputeBugHistoryTask">
-      <classpath refid="findbugs.lib" />
-   </taskdef>
-
-   <taskdef name="setBugDatabaseInfo" classname="edu.umd.cs.findbugs.anttask.SetBugDatabaseInfoTask">
-      <classpath refid="findbugs.lib" />
-   </taskdef>
-
-   <taskdef name="mineBugHistory" classname="edu.umd.cs.findbugs.anttask.MineBugHistoryTask">
-      <classpath refid="findbugs.lib" />
-   </taskdef>
-
-   <!-- findbugs タスク定義 -->
-   <target name="findbugs">
-      <antcall target="analyze" />
-      <antcall target="mine" />
-   </target>
-
-   <!-- 分析を行うタスク-->
-   <target name="analyze">
-      <!-- asm-util に対して findbugs を実行する -->
-      <findbugs home="${findbugs.home}"
-                output="xml:withMessages"
-                timeout="90000000"
-                reportLevel="experimental"
-                workHard="true"
-                effort="max"
-                adjustExperimental="true"
-                jvmargs="${jvmargs}"
-                failOnError="true"
-                outputFile="out.xml"
-                projectName="Findbugs"
-                debug="false">
-         <class location="asm-util-3.0.jar" />
-      </findbugs>
-   </target>
-
-   <target name="mine">
-
-      <!-- 最新の分析結果に情報を設定する -->
-      <setBugDatabaseInfo home="${findbugs.home}"
-                            withMessages="true"
-                            name="asm-util-3.0.jar"
-                            input="out.xml"
-                            output="out-rel.xml"/>
-
-      <!-- 履歴ファイル (out-hist.xml) が既に存在するかどうかを確認する -->
-      <condition property="mining.historyfile.available">
-         <available file="out-hist.xml"/>
-      </condition>
-      <condition property="mining.historyfile.notavailable">
-         <not>
-            <available file="out-hist.xml"/>
-         </not>
-      </condition>
-
-      <!-- このターゲットは、履歴ファイルが存在しないとき (初回) だけ実行されます -->
-      <antcall target="history-init">
-        <param name="data.file" value="out-rel.xml" />
-        <param name="hist.file" value="out-hist.xml" />
-      </antcall>
-      <!-- 上記以外の場合に実行されます -->
-      <antcall target="history">
-        <param name="data.file"         value="out-rel.xml" />
-        <param name="hist.file"         value="out-hist.xml" />
-        <param name="hist.summary.file" value="out-hist.txt" />
-      </antcall>
-   </target>
-
-   <!-- 履歴ファイルを初期化します -->
-   <target name="history-init" if="mining.historyfile.notavailable">
-      <copy file="${data.file}" tofile="${hist.file}" />
-   </target>
-
-   <!-- バグ履歴を算出します -->
-   <target name="history" if="mining.historyfile.available">
-      <!-- ${data.file} を ${hist.file} にマージします -->
-      <computeBugHistory home="${findbugs.home}"
-                           withMessages="true"
-                           output="${hist.file}">
-            <dataFile name="${hist.file}"/>
-            <dataFile name="${data.file}"/>
-      </computeBugHistory>
-
-      <!-- 履歴を算出して ${hist.summary.file} に出力します -->
-      <mineBugHistory home="${findbugs.home}"
-                        formatDates="true"
-                      noTabs="true"
-                        input="${hist.file}"
-                        output="${hist.summary.file}"/>
-   </target>
-
-</project>
-]]>
-</screen>
-         </sect1>
-</chapter>
-
-
-<!--
-   **************************************************************************
-   License
-   **************************************************************************
--->
-
-<chapter id="license">
-<title>ライセンス</title>
-
-<para>名称「FindBugs」および FindBugs のロゴは、メリーランド大学の登録商標です。FindBugs はフリーソフトウェアであり、 <ulink url="http://www.gnu.org/licenses/lgpl.html">Lesser GNU Public License</ulink> の条件で配布されています。使用承諾書を入手したい場合は、 &FindBugs; 配布物に含まれる <filename>LICENSE.txt</filename> ファイルを参照してください。</para>
-
-<para>最新バージョンの FindBugs および そのソースコードは <ulink url="http://findbugs.sourceforge.net">FindBugs web ページ</ulink> で入手できます。</para>
-
-</chapter>
-
-
-<!--
-   **************************************************************************
-   Acknowledgments
-   **************************************************************************
--->
-<chapter id="acknowledgments">
-<title>謝辞</title>
-
-<sect1>
-<title>貢献者</title>
-
-<para>&FindBugs; was originally written by Bill Pugh (<email>pugh@cs.umd.edu</email>).
-David Hovemeyer (<email>daveho@cs.umd.edu</email>) implemented some of the
-detectors, added the Swing GUI, and is a co-maintainer.</para>
-
-<para>Mike Fagan (<email>mfagan@tde.com</email>) contributed the &Ant; build script,
-the &Ant; task, and several enhancements and bug fixes to the GUI.</para>
-
-<para>Germano Leichsenring contributed Japanese translations of the bug
-summaries.</para>
-
-<para>David Li contributed the Emacs bug report format.</para>
-
-<para>Peter D. Stout contributed recursive detection of Class-Path
-attributes in analyzed Jar files, German translations of
-text used in the Swing GUI, and other fixes.</para>
-
-<para>Peter Friese wrote the &FindBugs; Eclipse plugin.</para>
-
-<para>Rohan Lloyd contributed several Mac OS X enhancements,
-bug detector improvements,
-and maintains the Fink package for &FindBugs;.</para>
-
-<para>Hiroshi Okugawa translated the &FindBugs; manual and
-more of the bug summaries into Japanese.</para>
-
-<para>Phil Crosby enhanced the Eclipse plugin to add a view
-to display the bug details.</para>
-
-<para>Dave Brosius fixed a number of bugs, added user preferences
-to the Swing GUI, improved several bug detectors, and
-contributed the string concatenation detector.</para>
-
-<para>Thomas Klaeger contributed a number of bug fixes and
-bug detector improvements.</para>
-
-<para>Andrei Loskutov made a number of improvements to the
-Eclipse plugin.</para>
-
-<para>Brian Goetz contributed a major refactoring of the
-visitor classes to improve readability and understandability.</para>
-
-<para> Pete Angstadt fixed several problems in the Swing GUI.</para>
-
-<para>Francis Lalonde provided a task resource file for the
-FindBugs Ant task.</para>
-
-<para>Garvin LeClaire contributed support for output in
-Xdocs format, for use by Maven.</para>
-
-<para>Holger Stenzhorn contributed improved German translations of items
-in the Swing GUI.</para>
-
-<para>Juha Knuutila contributed Finnish translations of items
-in the Swing GUI.</para>
-
-<para>Tanel Lebedev contributed Estonian translations of items
-in the Swing GUI.</para>
-
-<para>Hanai Shisei (ruimo) contributed full Japanese translations of
-bug messages, and text used in the Swing GUI.</para>
-
-<para>David Cotton contributed Fresh translations for bug
-messages and for the Swing GUI.</para>
-
-<para>Michael Tamm contributed support for the &quot;errorProperty&quot; attribute
-in the Ant task.</para>
-
-<para>Thomas Kuehne improved the German translation of the Swing GUI.</para>
-
-<para>Len Trigg improved source file support for the Emacs output mode.</para>
-
-<para>Greg Bentz provided a fix for the hashcode/equals detector.</para>
-
-<para>K. Hashimoto contributed internationalization fixes and several other
-    bug fixes.</para>
-
-<para>
-    Glenn Boysko contributed support for ignoring specified local
-    variables in the dead local store detector.
-</para>
-
-<para>
-    Jay Dunning contributed a detector to find equality comparisons
-    of floating-point values, and overhauled the analysis summary
-    report and its representation in the saved XML format.
-</para>
-
-<para>
-    Olivier Parent contributed updated French translations for bug descriptions and
-    Swing GUI.
-</para>
-
-<para>
-    Chris Nappin contributed the <filename>plain.xsl</filename>
-    stylesheet.
-</para>
-
-<para>
-    Etienne Giraudy contributed the <filename>fancy.xsl</filename> and  <filename>fancy-hist.xsl</filename>
-    stylesheets, and made improvements to the <command>-xml:withMessages</command>
-    option.
-</para>
-
-<para>
-    Takashi Okamoto fixed bugs in the project preferences dialog
-    in the Eclipse plugin, and contributed to its internationalization and localization.
-</para>
-
-<para>Thomas Einwaller fixed bugs in the project preferences dialog in the Eclipse plugin.</para>
-
-<para>Jeff Knox contributed support for the warningsProperty attribute
-in the Ant task.</para>
-
-<para>Peter Hendriks extended the Eclipse plugin preferences,
-and fixed a bug related to renaming the Eclipse plugin ID.</para>
-
-<para>Mark McKay contributed an Ant task to launch the findbugs frame.</para>
-
-<para>Dieter von Holten (dvholten) contributed
-some German improvements to findbugs_de.properties.</para>
-
-
-<para>If you have contributed to &FindBugs;, but aren't mentioned above,
-please send email to <email>findbugs@cs.umd.edu</email> (and also accept
-our humble apologies).</para>
-
-</sect1>
-
-<sect1>
-<title>使用しているソフトウェア</title>
-
-<para>&FindBugs; は、いくつかのオープンソースソフトウェアパッケージを使用しています。これらがなければ、 &FindBugs; の開発は、より一層困難なものになったことでしょう。</para>
-
-<sect2>
-<title>BCEL</title>
-<para>&FindBugs; includes software developed by the Apache Software Foundation
-(<ulink url="http://www.apache.org/">http://www.apache.org/</ulink>).
-Specifically, it uses the <ulink url="http://jakarta.apache.org/bcel/">Byte Code
-Engineering Library</ulink>.</para>
-</sect2>
-
-<sect2>
-<title>ASM</title>
-<para>&FindBugs; uses the <ulink url="http://asm.objectweb.org/">ASM</ulink>
-bytecode framework, which is distributed under the following license:</para>
-
-<blockquote>
-<para>
-Copyright (c) 2000-2005 INRIA, France Telecom
-All rights reserved.
-</para>
-
-<para>
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-</para>
-
-<orderedlist numeration="arabic">
-   <listitem><para>
-   Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-  </para></listitem>
-   <listitem><para>
-   Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-  </para></listitem>
-   <listitem><para>
-   Neither the name of the copyright holders nor the names of its
-   contributors may be used to endorse or promote products derived from
-   this software without specific prior written permission.
-  </para></listitem>
-</orderedlist>
-
-<para>
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
-</para>
-</blockquote>
-</sect2>
-
-<sect2>
-<title>DOM4J</title>
-<para>&FindBugs; uses <ulink url="http://dom4j.org">DOM4J</ulink>, which is
-distributed under the following license:</para>
-
-<blockquote>
-<para>
-Copyright 2001 (C) MetaStuff, Ltd. All Rights Reserved.
-</para>
-
-<para>
-Redistribution and use of this software and associated documentation
-(&quot;Software&quot;), with or without modification, are permitted provided that
-the following conditions are met:
-</para>
-
-<orderedlist numeration="arabic">
-   <listitem><para>
-   Redistributions of source code must retain copyright statements and
-   notices. Redistributions must also contain a copy of this document.
-  </para></listitem>
-   <listitem><para>
-   Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-  </para></listitem>
-   <listitem><para>
-   The name &quot;DOM4J&quot; must not be used to endorse or promote products
-   derived from this Software without prior written permission
-   of MetaStuff, Ltd. For written permission, please contact
-   <email>dom4j-info@metastuff.com</email>.
-  </para></listitem>
-   <listitem><para>
-   Products derived from this Software may not be called &quot;DOM4J&quot; nor may
-   &quot;DOM4J&quot; appear in their names without prior written permission of
-   MetaStuff, Ltd. DOM4J is a registered trademark of MetaStuff, Ltd.
-  </para></listitem>
-   <listitem><para>
-   Due credit should be given to the DOM4J Project (<ulink url="http://dom4j.org/">http://dom4j.org/</ulink>).
-  </para></listitem>
-</orderedlist>
-
-<para>
-THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``AS IS''
-AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL METASTUFF, LTD. OR ITS
-CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-</para>
-</blockquote>
-
-</sect2>
-
-</sect1>
-
-</chapter>
-
-
-</book>
diff --git a/tools/findbugs/doc/performance.html b/tools/findbugs/doc/performance.html
deleted file mode 100644
index 12718f0..0000000
--- a/tools/findbugs/doc/performance.html
+++ /dev/null
@@ -1,114 +0,0 @@
-<html>
-<head>
-<title>FindBugs Performance Improvements and Regressions</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-<body>
-
-    <table width="100%">
-        <tr>
-
-            
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-            <td align="left" valign="top">
-
-                <h1>FindBugs Performance Improvements and Regressions</h1> I did a performance check against 179
-                benchmarks applications I regularly test against. Overall (total the total time to analyze all 179
-                benchmarks), FindBugs 2.0 gives a 9% performance improvement over 1.3.9. 154 of the 179 benchmarks saw
-                performance improvements; 24 saw regressions. All of the benchmarks that saw regressions of more than
-                10% were small benchmarks (analyzed in less than 60 seconds), which makes consistent benchmarking
-                particularly difficult. I'm working to repeat the benchmarks, see if the results are consistent. I took
-                a look, and couldn't find anything that stood out as being a performance glitch in FindBugs. I haven't
-                yet done benchmarking with constrained memory. It is possible that you may need to increase the heap
-                size for FindBugs 2.0.
-
-                <h2>Important Request</h2>
-                <p> If you are seeing any significant performance regressions in FindBugs 2.0,
-                I very much need your help. Please either email <a href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a>
-                or file <a href="http://sourceforge.net/tracker/?atid=614693&amp;group_id=96405&amp;func=browse">a
-                    bug report</a>.&nbsp;with the following information from the xml file for your project (from both the
-                1.3.9 and 2.0.0 version if possible). Sending me your code or pointing me to a open source repository
-                would be great, but I know that isn't feasible for a lot of projects. The information I'm requesting
-                doesn't include any information about the code being analyzed other than the total size of the code
-                being analyzed and the total number of issues found at the different confidence levels. The
-                &lt;FindBugsSummary ... &gt; start tag. For example: <quote> <pre>
-   &lt;FindBugsSummary timestamp="Tue, 30 Dec 2008 21:29:52 -0500" 
-      total_classes="206" referenced_classes="325" total_bugs="72" total_size="7654" num_packages="21" 
-      vm_version="20.4-b02-402" cpu_seconds="62.52" clock_seconds="22.01" 
-      peak_mbytes="112.21" alloc_mbytes="1683.38" gc_seconds="1.19" 
-      priority_3="56" priority_2="14" priority_1="2"&gt;
-</pre> </quote> The &lt;FindBugsProfile&gt;...&lt;/FindBugsProfile&gt; element. For example: <quote>
-                <pre>
-   &lt;FindBugsProfile&gt;
-      &lt;ClassProfile name="edu.umd.cs.findbugs.detect.IncompatMask" totalMilliseconds="11" 
-        invocations="206" avgMicrosecondsPerInvocation="55" maxMicrosecondsPerInvocation="475" 
-        standardDeviationMircosecondsPerInvocation="75"/&gt;
-      &lt;ClassProfile name="edu.umd.cs.findbugs.detect.FindFinalizeInvocations" totalMilliseconds="11" 
-        invocations="206" avgMicrosecondsPerInvocation="55" maxMicrosecondsPerInvocation="402" 
-        standardDeviationMircosecondsPerInvocation="69"/&gt;
-      &lt;ClassProfile name="edu.umd.cs.findbugs.classfile.engine.bcel.LockDataflowFactory" totalMilliseconds="11" 
-        invocations="23" avgMicrosecondsPerInvocation="515" maxMicrosecondsPerInvocation="2637" 
-        standardDeviationMircosecondsPerInvocation="639"/&gt;
-   ...
- &lt;/FindBugsProfile&gt;
-</pre> </quote> 
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-            </td>
-
-        </tr>
-    </table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/performingARelease.txt b/tools/findbugs/doc/performingARelease.txt
deleted file mode 100644
index 3ce350e..0000000
--- a/tools/findbugs/doc/performingARelease.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-Create a directory that contains exactly all the files to upload. For example:
-  eclipsePlugin-1.3.6.20081104-source.zip                findbugs-1.3.6-rc3-source.zip  findbugs-1.3.6-rc3.zip
-  edu.umd.cs.findbugs.plugin.eclipse_1.3.6.20081104.zip  findbugs-1.3.6-rc3.tar.gz
-
-cd to that directory
-sftp username,findbugs@frs.sourceforge.net
-sftp> cd /home/frs/project/f/fi/findbugs/findbugs/RELEASE
-sftp> mput findbugs-*
-sftp> cd "../../findbugs eclipse plugin/RELEASE
-fstp> mput edu.* eclipsePlugin*
-fstp> quit
-
-Add releases via:
-	https://sourceforge.net/project/admin/editpackages.php?group_id=96405	
-
-
-release daily/candidate/final eclipse plugins
-
-From findbugs directory, do:
-	rsync -avz web/ username,findbugs@web.sourceforge.net:htdocs/
-
-For a full release, make a branch in the svn repository:
-
-
-svn copy "https://findbugs.googlecode.com/svn/trunk" "https://findbugs.googlecode.com/svn/branches/1.X.X" 
-
-For a release candidate, send email to findbugs-discuss and findbugs-core. For a full release, send email to findbugs-announce.
diff --git a/tools/findbugs/doc/pluginStructure.txt b/tools/findbugs/doc/pluginStructure.txt
deleted file mode 100644
index f61e983..0000000
--- a/tools/findbugs/doc/pluginStructure.txt
+++ /dev/null
@@ -1,28 +0,0 @@
-
-We have a list of plugins.
-
-In any particular context, some plugins are enabled.
-
-DetectorFactoryCollection:
-	Core plugin
-	Collection of plugins
-	Collection of DetectorFactories
-	Adjustment ranker
-
-I18N
-	ResourceBundles
-	bugPatternMap
-	bugCodeMap
-	categoryDescriptionMap
-
-Plugin
-	collection of DetectorFactory
-	bug patterns, codes, etc. 
-	component plugins
-	bug ranker
-	enabled
-	plugin loader
-
-CloudFactory
-	registeredClouds
-
diff --git a/tools/findbugs/doc/plugins.txt b/tools/findbugs/doc/plugins.txt
deleted file mode 100644
index a307b14..0000000
--- a/tools/findbugs/doc/plugins.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-
-Plugins can be specified in three different ways:
-* For a standard FindBugd distro, they can be put into the plugins directory
-* For a JAWS distro, the file pluginlist.properties contains
-  a list of URLs to plugins. These URLs can be relative or absolute. If they
-  are absolute, they are relative to jar file that contained the pluginlist.properties
-  file.
-* You can define properties findbugs.plugin.*. Each such property defines a URL
-  for a plugin
diff --git a/tools/findbugs/doc/pressRelease.pdf b/tools/findbugs/doc/pressRelease.pdf
deleted file mode 100644
index 47ee37a..0000000
--- a/tools/findbugs/doc/pressRelease.pdf
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/publications.html b/tools/findbugs/doc/publications.html
deleted file mode 100644
index 2a06a19..0000000
--- a/tools/findbugs/doc/publications.html
+++ /dev/null
@@ -1,138 +0,0 @@
-<html>
-<head>
-<title>FindBugs Documents and Publications</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-
-<h1>FindBugs Documents and Publications</h1>
-
-<p> This page lists documents, publications, and other sources
-of information about FindBugs.
-
-<h2>General Information</h2>
-
-<ul>
-<li> The <a href="manual/index.html">FindBugs manual</a> describes how to
-install and use FindBugs.
-<li> A <a href="http://www.simeji.com/findbugs/doc/manual_ja/index.html">Japanese translation</a>
-of the FindBugs manual contributed by Hiroshi Okugawa.
-<li> A <a href="bugDescriptions.html">list of bug patterns reported by FindBugs</a>.
-<li> The <a href="FAQ.html">FindBugs FAQ</a> contains answers to frequently asked
-questions about FindBugs.
-</ul>
-
-<h2>Publications</h2>
-
-<ul>
-<li> <a href="http://findbugs.sourceforge.net/docs/oopsla2004.pdf">Finding Bugs is Easy</a>, a
-paper that appeared in the December 2004 issue of SIGPLAN Notices.&nbsp;
-An extended abstract of the paper appeared in the OOPSLA 2004 Companion,
-as part of the Onward! track of the conference.&nbsp;
-
-<!--
-The raw data
-we used in the empirical evaluation section is available:
- <ul>
- <li> <a href="http://findbugs.sourceforge.net/data/classpath-0.08.xml">classpath-0.08.xml</a>
- <li> <a href="http://findbugs.sourceforge.net/data/drjava-stable-20040326.xml">drjava-stable-20040326.xml</a>
- <li> <a href="http://findbugs.sourceforge.net/data/eclipse-3.0.xml">eclipse-3.0.xml</a>
- <li> <a href="http://findbugs.sourceforge.net/data/jboss-4.0.0RC1.xml">jboss-4.0.0RC1.xml</a>
- <li> <a href="http://findbugs.sourceforge.net/data/jedit-4.2pre15.xml">jedit-4.2pre15.xml</a>
- <li> <a href="http://findbugs.sourceforge.net/data/rt-1.5-59.xml">rt-1.5-59.xml</a>
- </ul>
--->
-<li> <a href="http://www.cs.umd.edu/~jfoster/papers/issre04.pdf">A Comparison of Bug Finding Tools for Java</a>, by Nick Rutar, Christian Almazan, and Jeff Foster,
-compares several bug checkers for Java, including FindBugs.
-<li> Chris Grindstaff has written a two-part article about FindBugs
-(<a href="http://www-106.ibm.com/developerworks/java/library/j-findbug1/">Part 1</a>,
-<a href="http://www-106.ibm.com/developerworks/java/library/j-findbug2/">Part 2</a>)
-for IBM developerWorks.
-</ul>
-
-<!--
-<h2>Presentations</h2>
-<ul>
-<li> <a href="http://findbugs.sourceforge.net/docs/oopsla2004-slides.pdf">Presentation slides</a>
-     from a talk given by David Hovemeyer at OOPSLA 2004.
-<li> <a href="http://findbugs.sourceforge.net/docs/FindBugsTalk2.pdf">Presentation slides</a>
-     from a talk given by Bill Pugh at the
-     <a href="http://fc-md.umd.edu/fcmd/index.html"
-     >Fraunhofer Center for Experimental Software Engineering</a>,
-     July 2004
-<li> <a href="http://findbugs.sourceforge.net/docs/FindBugsJavaOne.pdf">Finding Bugs is Easy</a>,
-     a presentation given by David Hovemeyer and Bill Pugh
-     at <a href="http://java.sun.com/javaone/">JavaOne 2004</a>,
-     June 2004
-<li> <a href="http://findbugs.sourceforge.net/docs/FindBugsJKeller.pdf">Presentation slides</a>
-     from J. Keller's presentation at the FindBugs JavaOne BOF,
-     June 2004
-</ul>
--->
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</tr></table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/reportingBugs.html b/tools/findbugs/doc/reportingBugs.html
deleted file mode 100644
index c2bd70b..0000000
--- a/tools/findbugs/doc/reportingBugs.html
+++ /dev/null
@@ -1,127 +0,0 @@
-<html>
-<head>
-<title>Reporting Bugs in FindBugs</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-
-<h1>Reporting Bugs in FindBugs</h1>
-
-<p>
-First of all, if you find a bug in FindBugs, and have the
-skills to fix it, we encourage you to unleash the power of open source and
-<a href="contributing.html">send us a patch</a>.&nbsp; We will gladly
-credit you on our website and in the manual.
-</p>
-
-<p>
-Please report bugs using the
-<a href="http://sourceforge.net/tracker/?atid=614693&group_id=96405&func=browse">Sourceforge
-bugs tracker</a>.&nbsp; Note that you need to be logged in to sourceforge to
-use the bug tracker.
-</p>
-
-<p>
-If you cannot use the Sourceforge tracker, you can try sending 
-email to the <a href="http://www.cs.umd.edu/mailman/listinfo/findbugs-discuss"
->findbugs-discuss mailing list</a>.&nbsp; You must be subscribed
-to the list to post a message.
-</p>
-
-<p>
-Finally, as a last resort, you can email <a href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a>.&nbsp;
-However, such emails are much less likely to be handled in a timely manner than
-posts to the tracker or mailing list.
-</p>
-	
-<h2>False and Inaccurate Warnings</h2>
-	
-<p>
-	Like most bug-detection tools based on static analysis, FindBugs
-	issues some warnings that do not correspond to real bugs.&nbsp;
-	While in general we would like to make the percentage of such warnings
-	small, we can never fully eliminate them.
-</p>
-
-<h2>Information to include</h2>
-
-<p>
-When reporting a bug, please include the following information:
-</p>
-<ul>
-<li>Complete list of steps to reproduce the problem</li>
-<li>If the error occurs during analysis, a jar file, class file,
-    or self-contained Java class that demonstrates the problem</li>
-<li>FindBugs version</li>
-<li>JDK/JRE version</li>
-<li>Host operating system</li>
-<li>Any exception traces, Eclipse error log entries, etc. that might
-    be relevant</li>
-</ul>
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</tr></table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/sourceInfo.html b/tools/findbugs/doc/sourceInfo.html
deleted file mode 100644
index 3b847d0..0000000
--- a/tools/findbugs/doc/sourceInfo.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html>
-<head>
-<title>FindBugs sourceInfo file</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-</head>
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-
-<h1>FindBugs sourceInfo file</h1>
-
-<p>The FindBugs analysis engine can be invoked with an optional sourceInfo
-file. This file gives line number ranges for classes, files and methods. This
-information is an alternative to getting line number information 
-from the classfiles for methods. Since classfiles only contain line number 
-information 
-for methods, without a sourceInfo file we can't provide line numbers for fields,
-and for classes we just use the line numbers of the methods in the class.
-
-<p>The first line of the file should be
-<pre>
-sourceInfo version 1.0
-</pre>
-
-<p>Following that are a series of lines, each describing a class, field, or method.  For each, a starting and ending line number is provided. For example, the following sourceInfo file:
-<pre>
-sourceInfo version 1.0
-a.C,3,8
-a.C,x,4,4
-a.C,y,4,4
-a.C,<init>()V,8,8
-a.C,f(I)I,5,5
-a.C,g(Ljava/lang/Object;)I,6,7
-</pre>
-provides the following information about the class a.C:
-<ul>
-<li> fields x and y are both declared on line 4.
-<li> the method <code>int f(int)</code> is defined on line 5.
-<li> the method <code>int g(Object)</code> is defined on lines 6-7.
-<li> the void constructor for a.C is defined on line 8.
-</ul>
-The classnames should be the same format as used by Class.getName(): 
-packages are separated by ., inner class names are separated by $.
-Thus, if the class a.C had an inner class X and it was onb lines 10-15 of the file, the sourceInfo file might contain:
-
-<pre>
-a.C$X,10,15
-</pre>
-
-
-</table>
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</tr></table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/sysprops.html b/tools/findbugs/doc/sysprops.html
deleted file mode 100644
index ad55622..0000000
--- a/tools/findbugs/doc/sysprops.html
+++ /dev/null
@@ -1,202 +0,0 @@
-<html>
-<head>
-<title>FindBugs Optional System Properties</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-</head>
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-
-<h1>FindBugs Optional System Properties</h1>
-
-<p> These system properties can be added to the command line to alter the way
-findbugs works. These options should be considered experimental. The description
-gives information if the field is set to true.
-</p>
-
-<table width="100%" border="1">
-	<tr bgColor="#F0F0F0"><th>System Property</th><th>Description</th></tr>
-	
-	<tr>
-		<td>findbugs.assertionmethods</td>
-		<td>methods supplied by user that have assertions</td>
-	</tr>
-	<tr>
-		<td>findbugs.checkreturn.loadtraining
-			<br/>findbugs.checkreturn.savetraining</td>
-		<td>file name to read/write list of methods whose return values must be checked</td>
-	</tr>
-	<tr>
-		<td>findbugs.de.comment</td>
-		<td>Don't report empty catch blocks if a source comment is found in the block.</td>
-	</tr>
-	<tr>
-		<td>findbugs.dls.exclusions</td>
-		<td>local variables that will be excluded from Dead Local Store</td>
-	</tr>
-	<tr>
-		<td>findbugs.fis.unsyncFactor</td>
-		<td>Default value is 2.0, which means that we report a bug if more than 1/3 of accesses are unsynchronized.</td>
-	</tr>
-	<tr>
-		<td>findbugs.fis.writeBias</td>
-		<td>Default value is 2.0. The idea is that this should be above 1.0, because unsynchronized writes are more dangerous than unsynchronized reads.</td>
-	</tr>
-	<tr>
-		<td>fundbugs.gui.bugCount</td>
-		<td>?</td>
-	</tr>
-	<tr>
-		<td>findbugs.maskedfields.locals</td>
-		<td>Report on local variables that mask fields.</td>
-	</tr>
-	<tr>
-		<td>findbugs.nullderef.assumensp</td>
-		<td>sets value for IsNullValueAnalysisFeatures.UNKNOWN_VALUES_ARE_NSP, but is not used by FindBugs</td>
-	</tr>
-	<tr>
-		<td>findbugs.refcomp.reportAll</td>
-		<td>?</td>
-	</tr>
-	<tr>
-		<td>findbugs.report.SummaryHTML</td>
-		<td>emit SummaryHTML element</td>
-	</tr>
-	<tr>
-		<td>findbugs.sf.comment</td>
-		<td>Ignore switch fall thru bugs if a comment is found with 'fall' or 'nobreak'
-	</tr>
-	<tr>
-		<td>ba.checkAssertions</td>
-		<td>throw excptions on certain illegal class type signatures</td>
-	</tr>
-	<tr>
-		<td>ba.verifyIntegrity</td>
-		<td>enable data structure integrity checks</td>
-	</tr>
-	<tr>
-		<td>BCPMethodReturnCheck.java</td>
-		<td>Add methods to the list requiring a check. (format: "class:method:sig|...")</td>
-	</tr>
-	<tr>
-		<td>dataflow.stackonly</td>
-		<td>?</td>
-	</tr>
-	<tr>
-		<td>fis.eval</td>
-		<td>?</td>
-	</tr>
-	<tr>
-		<td>fis.noAdjustSubclass</td>
-		<td>Adjust field so its class name is the same as the type of reference it is accessed through.</td>
-	</tr>
-	<tr>
-		<td>fos.allowWUS</td>
-		<td>Ignore wrapping streams that are wrapping uninteresting streams (like in memory streams).</td>
-	</tr>
-	<tr>
-		<td>ic.createInstance</td>
-		<td>?</td>
-	</tr>
-	<tr>
-		<td>inva.ncpExtraBranch</td>
-		<td>?</td>
-	</tr>
-	<tr>
-		<td>inva.noAssertHack</td>
-		<td>?</td>
-	</tr>
-	<tr>
-		<td>inva.noSplitDowngradeNSP</td>
-		<td>?</td>
-	</tr>
-	<tr>
-		<td>inva.noSwitchDefaultAsException</td>
-		<td>Don't consider switch default cases as exception paths.</td>
-	</tr>
-	<tr>
-		<td>lineNumberBug</td>
-		<td>Disable the workaround for the bug in BCEL 5.0's LineNumberTable class.</td>
-	</tr>
-	<tr>
-		<td>ma.ugly</td>
-		<td>Report method signature with method class and name.</td>
-	</tr>
-	<tr>
-		<td>mrc.checkall</td>
-		<td>Check for 1.5-specific method return values being ignored even if runtime Java predates 1.5.</td>
-	</tr>
-	<tr>
-		<td>ta.accurateExceptions</td>
-		<td>?</td>
-	</tr>
-	<tr>
-		<td>vna.noRLE</td>
-		<td>Perform redundant load elimination and forward substitution (but not in a correctness-preserving way).</td>
-	</tr>
-
-</table>
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</tr></table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/team.html b/tools/findbugs/doc/team.html
deleted file mode 100644
index a97f46c..0000000
--- a/tools/findbugs/doc/team.html
+++ /dev/null
@@ -1,98 +0,0 @@
-<html>
-<head>
-<title>FindBugs Development Team</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css">
-
-</head>
-<body>
-
-<table width="100%"><tr>
-
-
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-<td align="left" valign="top">
-
-<h1>FindBugs Development Team</h1>
-
-<p> These are the current active members of the FindBugs development team:
-
-<ul>
-<li> <a href="http://www.cs.umd.edu/~pugh">Bill Pugh</a> (project lead and primary developer)
-<li> <a href="http://andrei.gmxhome.de/privat.html">Andrey Loskutov</a>(Eclipse plugin)
-<li> <a href="http://keithlea.com">Keith Lea</a> (web cloud)
-</li>
-</ul>
-
-<p>Previous and/or inactive members of the FindBugs development team include
-<ul>
-<li> <a href="http://goose.ycp.edu/~dhovemey/">David Hovemeyer</a> (project founder), 
-            did Ph.D. thesis on FindBugs
-<li> Nay Ayewah
-<li> Ben Langmead
-<li> Tomas Pollak (Eclipse plugin tests)
-<li> Phil Crosby
-<li> Peter Friese (Eclipse plugin)
-<li> Dave Brosius
-<li> Brian Goetz
-<li> Rohan Lloyd
-</ul>
-
-
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-</td>
-
-</tr></table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/umdFindbugs.png b/tools/findbugs/doc/umdFindbugs.png
deleted file mode 100644
index c426bc6..0000000
--- a/tools/findbugs/doc/umdFindbugs.png
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/doc/updateChecking.html b/tools/findbugs/doc/updateChecking.html
deleted file mode 100644
index 85384c3..0000000
--- a/tools/findbugs/doc/updateChecking.html
+++ /dev/null
@@ -1,123 +0,0 @@
-<html>
-<head>
-<title>Update checking in FindBugs</title>
-<link rel="stylesheet" type="text/css" href="findbugs.css" />
-
-</head>
-
-<body>
-
-	<table width="100%">
-		<tr>
-
-			
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-			<td align="left" valign="top">
-            
-                <h1>Update checking in FindBugs</h1>
-            
-            <p>When FindBugs is run, it now checks for updated versions of FindBugs or plugins. As a side effect
-            of this, our server sees a request for whether there are any updated version of FindBugs available.
-            Third party plugins can independently receive this same information.  We are recording
-            information about the operating system, Java version, locale, and Findbugs entry point (ant, command line,
-            GUI, etc), in order to better understand our users. 
-            
-            <p>For example, here is an example of the information that would be sent to the server:
-            <pre>
-&lt;?xml version="1.0" encoding="UTF-8"?>
-
-&lt;findbugs-invocation version="2.0.0-rc1" app-name="UpdateChecker" app-version="" entry-point="UpdateChecker" os="Mac OS X" 
-     java-version="1.6" language="en" country="US" uuid="-4bcf8f48ba2842d2"&gt;
-  &lt;plugin id="edu.umd.cs.findbugs.plugins.core" name="Core FindBugs plugin" version="2.0.0-rc1"/&gt;
-  &lt;plugin id="edu.umd.cs.findbugs.plugins.appengine" name="FindBugs Cloud Plugin" version=""/&gt;
-  &lt;plugin id="edu.umd.cs.findbugs.plugins.poweruser" name="Power user commnand line tools" version=""/&gt;
-&lt;/findbugs-invocation&gt;
-</pre>
-
-<p>You can run the main method of edu.umd.cs.findbugs.updates.UpdateChecker to see what would be reported
-for you, and whether update checking is disabled and/or redirected (e.g., run
-<pre> java -classpath ~/findbugs/lib/findbugs.jar  edu.umd.cs.findbugs.updates.UpdateChecker</pre>
-
-<p>There is one element of the information sent that needs explanation: the uuid. Since we don't report anything like username,
-when we receive a bunch of update checks from a particular ip address, we don't know if that is one person running FindBugs many times
-on a single machine, or many users running FindBugs on many different machines  So we generate a random 64 bit integer, 
-store it in the Java user preferences, and report that on each use.
-
-<h2>Disabling or redirecting update checks</h2>
-<p>Some organizations or individuals may have policies or preferences to not let us know any information about 
-their running of FindBugs. Note that we do not collect any information about the code being analuzed. 
-Even so, we understand that is very important for a few of our users,
- and provide several ways for you to disable or redirect FindBugs update checks.
-<ul>
-<li>There is a FindBugs plugin, noUpdateChecks.jar, which is in findbugs/optionalPlugin in the standard distribution.
-If this plugin enabled, all update checks are disabled. You can move that plugin from findbugs/optionalPlugin to findbugs/plugin,
-to disable it for all users of that distribution. You can also copy it to <pre>~/.findbugs/plugin</pre>,
-which will disable it for your account for any distribution of FindBugs you invoke (NOTE: double check location
-of personal FindBugs plugin installation for Windows User).
-<li>There are noUpdateChecks distributions of FindBugs available from SourceForge. This come with the noUpdateChecks plugin
-already moved to findbugs/plugin, and the webCloudClient.jar plug in the optional plugin directory (where it is disabled by default).
-
-<li>You can also redirect all update checks to a local server. This allows you to collect information about who is using
-what versions of FindBugs in your organization, and keep all of that information private.
-<li>All of the plugins from the FindBugs project use <pre>http://update.findbugs.org/update-check</pre> as the 
-host we use for update checks. If you wish to ensure that no one from your organization accidently reports any usage
-information to the FindBugs project, you can blacklist that URL in your firewall 
-<ul>
-<li>You can also block <pre>http://findbugs-cloud.appspot.com</pre>, the host we use for our publicly hosted
-repository of bug evaluations (e.g., evaluations in open source projects such as the JDK, Eclipse and GlassFish).
-While people have to explicitly request that their evaluations be stored into the FindBugs cloud, you 
-can block it to ensure that no one accidently shares evaluations of your own code to the FindBugs cloud. You can also
-remove the WebCloudClient 
-
-</ul>
-</li>
-</ul>
-
-			
-		</tr>
-	</table>
-
-</body>
-</html>
diff --git a/tools/findbugs/doc/users.html b/tools/findbugs/doc/users.html
deleted file mode 100644
index 37efe15..0000000
--- a/tools/findbugs/doc/users.html
+++ /dev/null
@@ -1,199 +0,0 @@
-<html>
-	<head>
-		<title>FindBugs&trade; Users and Supporters</title>
-		<link rel="stylesheet" type="text/css" href="findbugs.css" />
-		
-	</head>
-
-	<body>
-
-		<table width="100%">
-			<tr>
-
-				
-<td bgcolor="#b9b9fe" valign="top" align="left" width="20%"> 
-<table width="100%" cellspacing="0" border="0"> 
-<tr><td><a class="sidebar" href="index.html"><img src="umdFindbugs.png" alt="FindBugs"></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Docs and Info</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="findbugs2.html">FindBugs 2.0</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="demo.html">Demo and data</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="users.html">Users and supporters</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://findbugs.blogspot.com/">FindBugs blog</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="factSheet.html">Fact sheet</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="manual/index.html">Manual</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="ja/manual/index.html">Manual(ja/&#26085;&#26412;&#35486;)</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="FAQ.html">FAQ</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="bugDescriptions.html">Bug descriptions</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="mailingLists.html">Mailing lists</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="publications.html">Documents and Publications</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="links.html">Links</a></font></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="downloads.html"><b>Downloads</b></a></td></tr> 
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><a class="sidebar" href="http://www.cafeshops.com/findbugs"><b>FindBugs Swag</b></a></td></tr>
-
-<tr><td>&nbsp;</td></tr>
-
-<tr><td><b>Development</b></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/tracker/?group_id=96405">Open bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="reportingBugs.html">Reporting bugs</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="contributing.html">Contributing</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="team.html">Dev team</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="api/index.html">API</a> <a class="sidebar" href="api/overview-summary.html">[no frames]</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="Changes.html">Change log</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://sourceforge.net/projects/findbugs">SF project page</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/browse/">Browse source</a></font></td></tr> 
-<tr><td><font size="-1"><a class="sidebar" href="http://code.google.com/p/findbugs/source/list">Latest code changes</a></font></td></tr> 
-</table> 
-</td>
-
-				<td align="left" valign="top">
-
-					<!--  
-<p>
-	<a href="http://findbugs.sourceforge.net/"><img src="buggy-sm.png" alt="FindBugs logo" border="0" /></a>
-	<a href="http://www.umd.edu/"><img src="informal.png" alt="UMD logo" border="0" /></a>
-</p>
--->
-
-					<h1>
-						FindBugs Users
-					</h1>
-
-					<p>
-						There are a
-						<em>lot</em> of FindBugs users; as of September 2006, we've had
-						more than 270,000 downloads.
-
-					</p>
-					<p>
-						FindBugs is used in many companies and organizations. We don't
-						have a list of all the users of FindBugs, and we don't have
-						permission to identify many of the companies where we know
-						FindBugs is being used (getting this permission often involves red
-						tape and lawyers). But here are some statics from Google Analytics
-						showing unique visitors to the FindBugs web pages for the months
-						of June through August, 2006.
-
-					</p>
-					<p align="center">
-						<img src="customers/geoLocation.png" alt="Downloads by country">
-					</p>
-					<p align="center">
-						<img src="customers/geoMap.png" alt="Cities with the most downloads">
-
-					</p>
-					<h2>
-						FindBugs Users
-					</h2>
-					<p>
-						The following companies, projects and organizations have given us
-						permission to identify them as FindBugs users and/or have
-						publically stated that they use FindBugs. Send email to
-						<a href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> if
-						you'd like to be listed here.
-					</p>
-
-					<table cellpadding="10pt" align="center">
-						<tr>
-							<td align="center">
-								<a href="http://itasoftware.com/"><img
-										src="customers/ITAsoftware.png" alt="ITA Software">
-								</a>
-							</td>
-							<td align="center">
-								<a href="https://glassfish.dev.java.net/"><img
-										src="customers/glassfish.png" alt="Glassfish">
-								</a>
-							</td>
-						</tr>
-						<tr>
-							<td align="center">
-								<a href="https://javaserverfaces.dev.java.net/">Java Server
-									Faces</a>
-							</td>
-							<td align="center">
-								<a href="http://www.objectlab.co.uk/"><img
-										src="http://www.objectlab.co.uk/images/objectlab-web-noblue.gif"
-										alt="ObjectLab">
-								</a>
-							</td>
-						</tr>
-						<tr>
-							<td align="center">
-								<a href="http://www.sat4j.org/"><img
-										src="customers/sat4j.png" alt="SAT 4j">
-								</a>
-							</td>
-							<td align="center">
-								<a href="http://www.sleepycat.com/"><img
-										src="customers/sleepycat.png" alt="SleepyCat">
-								</a>
-							</td>
-						</tr>
-					</table>
-					<h2>
-						FindBugs Supporters
-					</h2>
-					<p>
-						The following companies, organizations and institutions provide
-						financial support for FindBugs. Tax deductable donations to
-						support FindBugs can be made to the University of Maryland.
-
-					</p>
-
-					<table cellpadding="10pt" align="center">
-						
-						<tr>
-							<td align="center">
-								<a href="http://www.google.com"><img
-										src="customers/google.png" alt="Google">
-								</a>
-							</td>
-						</tr>
-						<tr>
-							<td align="center">
-								<a href="http://www.sun.com"><img src="customers/sun.png"
-										alt="Sun Microsystems">
-								</a>
-							</td>
-							<td align="center">
-								<a href="http://www.nsf.gov/"><img src="customers/nsf.png"
-										alt="National Science Foundation">
-								</a>
-							</td>
-						</tr>
-						<tr>
-							<td align="center">
-								<a href="http://www.cs.umd.edu/"><img
-										src="customers/logo_umd.png" alt="Univ. of Maryland">
-								</a>
-							</td>
-						</tr>
-					</table>
-
-
-					
-<hr> <p> 
-<script language="JavaScript" type="text/javascript"> 
-<!---//hide script from old browsers 
-document.write( "Last updated "+ document.lastModified + "." ); 
-//end hiding contents ---> 
-</script> 
-<p> Send comments to <a class="sidebar" href="mailto:findbugs@cs.umd.edu">findbugs@cs.umd.edu</a> 
-<p> 
-<A href="http://sourceforge.net"><IMG src="http://sourceforge.net/sflogo.php?group_id=96405&amp;type=5" width="210" height="62" border="0" alt="SourceForge.net Logo" /></A>
-
-				</td align="center">
-			</tr>
-		</table>
-
-	</body>
-</html>
diff --git a/tools/findbugs/lib/annotations.jar b/tools/findbugs/lib/annotations.jar
deleted file mode 100644
index 3641ad6..0000000
--- a/tools/findbugs/lib/annotations.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/ant.jar b/tools/findbugs/lib/ant.jar
deleted file mode 100644
index f68c9cf..0000000
--- a/tools/findbugs/lib/ant.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/asm-3.3.jar b/tools/findbugs/lib/asm-3.3.jar
deleted file mode 100644
index 7638ae0..0000000
--- a/tools/findbugs/lib/asm-3.3.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/asm-analysis-3.3.jar b/tools/findbugs/lib/asm-analysis-3.3.jar
deleted file mode 100644
index 852d981..0000000
--- a/tools/findbugs/lib/asm-analysis-3.3.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/asm-commons-3.3.jar b/tools/findbugs/lib/asm-commons-3.3.jar
deleted file mode 100644
index 6f9d40f..0000000
--- a/tools/findbugs/lib/asm-commons-3.3.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/asm-tree-3.3.jar b/tools/findbugs/lib/asm-tree-3.3.jar
deleted file mode 100644
index 4a5daa6..0000000
--- a/tools/findbugs/lib/asm-tree-3.3.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/asm-util-3.3.jar b/tools/findbugs/lib/asm-util-3.3.jar
deleted file mode 100644
index 115bcc7..0000000
--- a/tools/findbugs/lib/asm-util-3.3.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/asm-xml-3.3.jar b/tools/findbugs/lib/asm-xml-3.3.jar
deleted file mode 100644
index 61d6a8c..0000000
--- a/tools/findbugs/lib/asm-xml-3.3.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/bcel.jar b/tools/findbugs/lib/bcel.jar
deleted file mode 100644
index fef26b1..0000000
--- a/tools/findbugs/lib/bcel.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/buggy.icns b/tools/findbugs/lib/buggy.icns
deleted file mode 100644
index b1f4660..0000000
--- a/tools/findbugs/lib/buggy.icns
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/commons-lang-2.6.jar b/tools/findbugs/lib/commons-lang-2.6.jar
deleted file mode 100644
index 98467d3..0000000
--- a/tools/findbugs/lib/commons-lang-2.6.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/dom4j-1.6.1.jar b/tools/findbugs/lib/dom4j-1.6.1.jar
deleted file mode 100644
index c8c4dbb..0000000
--- a/tools/findbugs/lib/dom4j-1.6.1.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/findbugs-ant.jar b/tools/findbugs/lib/findbugs-ant.jar
deleted file mode 100644
index 239aaeb..0000000
--- a/tools/findbugs/lib/findbugs-ant.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/findbugs.jar b/tools/findbugs/lib/findbugs.jar
deleted file mode 100644
index 4434bd4..0000000
--- a/tools/findbugs/lib/findbugs.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/jFormatString.jar b/tools/findbugs/lib/jFormatString.jar
deleted file mode 100644
index bdcb846..0000000
--- a/tools/findbugs/lib/jFormatString.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/jaxen-1.1.6.jar b/tools/findbugs/lib/jaxen-1.1.6.jar
deleted file mode 100644
index 52f47a4..0000000
--- a/tools/findbugs/lib/jaxen-1.1.6.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/jcip-annotations.jar b/tools/findbugs/lib/jcip-annotations.jar
deleted file mode 100644
index bb07c0c..0000000
--- a/tools/findbugs/lib/jcip-annotations.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/jdepend-2.9.jar b/tools/findbugs/lib/jdepend-2.9.jar
deleted file mode 100644
index 1838bbb..0000000
--- a/tools/findbugs/lib/jdepend-2.9.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/jsr305.jar b/tools/findbugs/lib/jsr305.jar
deleted file mode 100644
index cc39b73..0000000
--- a/tools/findbugs/lib/jsr305.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/lib/yjp-controller-api-redist.jar b/tools/findbugs/lib/yjp-controller-api-redist.jar
deleted file mode 100644
index 1614469..0000000
--- a/tools/findbugs/lib/yjp-controller-api-redist.jar
+++ /dev/null
Binary files differ
diff --git a/tools/findbugs/licenses/LICENSE-ASM.txt b/tools/findbugs/licenses/LICENSE-ASM.txt
deleted file mode 100644
index 75ad085..0000000
--- a/tools/findbugs/licenses/LICENSE-ASM.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-Copyright (c) 2000-2005 INRIA, France Telecom
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-
-3. Neither the name of the copyright holders nor the names of its
-   contributors may be used to endorse or promote products derived from
-   this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/tools/findbugs/licenses/LICENSE-AppleJavaExtensions.txt b/tools/findbugs/licenses/LICENSE-AppleJavaExtensions.txt
deleted file mode 100644
index db723b4..0000000
--- a/tools/findbugs/licenses/LICENSE-AppleJavaExtensions.txt
+++ /dev/null
@@ -1,46 +0,0 @@
-AppleJavaExtensions
-v 1.2
-
-This is a pluggable jar of stub classes representing the new Apple eAWT and eIO APIs for Java 1.4 on Mac OS X.  The purpose of these stubs is to allow for compilation of eAWT- or eIO-referencing code on platforms other than Mac OS X.  The jar file is enclosed in a zip archive for easy expansion on other platforms.  
-
-These stubs are not intended for the runtime classpath on non-Mac platforms.  Please see the OSXAdapter sample for how to write cross-platform code that uses eAWT.
-
-Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple
-Computer, Inc. ("Apple") in consideration of your agreement to the
-following terms, and your use, installation, modification or
-redistribution of this Apple software constitutes acceptance of these
-terms.  If you do not agree with these terms, please do not use,
-install, modify or redistribute this Apple software.
-
-In consideration of your agreement to abide by the following terms, and
-subject to these terms, Apple grants you a personal, non-exclusive
-license, under Apple's copyrights in this original Apple software (the
-"Apple Software"), to use, reproduce, modify and redistribute the Apple
-Software, with or without modifications, in source and/or binary forms;
-provided that if you redistribute the Apple Software in its entirety and
-without modifications, you must retain this notice and the following
-text and disclaimers in all such redistributions of the Apple Software. 
-Neither the name, trademarks, service marks or logos of Apple Computer,
-Inc. may be used to endorse or promote products derived from the Apple
-Software without specific prior written permission from Apple.  Except
-as expressly stated in this notice, no other rights or licenses, express
-or implied, are granted by Apple herein, including but not limited to
-any patent rights that may be infringed by your derivative works or by
-other works in which the Apple Software may be incorporated.
-
-The Apple Software is provided by Apple on an "AS IS" basis.  APPLE
-MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
-THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
-FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
-OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
-
-IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
-OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
-MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
-AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
-STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
-
-Copyright © 2003-2006 Apple Computer, Inc., All Rights Reserved
\ No newline at end of file
diff --git a/tools/findbugs/licenses/LICENSE-bcel.txt b/tools/findbugs/licenses/LICENSE-bcel.txt
deleted file mode 100644
index 1c572e3..0000000
--- a/tools/findbugs/licenses/LICENSE-bcel.txt
+++ /dev/null
@@ -1,204 +0,0 @@
-/*
- *                                 Apache License
- *                           Version 2.0, January 2004
- *                        http://www.apache.org/licenses/
- *
- *   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
- *
- *   1. Definitions.
- *
- *      "License" shall mean the terms and conditions for use, reproduction,
- *      and distribution as defined by Sections 1 through 9 of this document.
- *
- *      "Licensor" shall mean the copyright owner or entity authorized by
- *      the copyright owner that is granting the License.
- *
- *      "Legal Entity" shall mean the union of the acting entity and all
- *      other entities that control, are controlled by, or are under common
- *      control with that entity. For the purposes of this definition,
- *      "control" means (i) the power, direct or indirect, to cause the
- *      direction or management of such entity, whether by contract or
- *      otherwise, or (ii) ownership of fifty percent (50%) or more of the
- *      outstanding shares, or (iii) beneficial ownership of such entity.
- *
- *      "You" (or "Your") shall mean an individual or Legal Entity
- *      exercising permissions granted by this License.
- *
- *      "Source" form shall mean the preferred form for making modifications,
- *      including but not limited to software source code, documentation
- *      source, and configuration files.
- *
- *      "Object" form shall mean any form resulting from mechanical
- *      transformation or translation of a Source form, including but
- *      not limited to compiled object code, generated documentation,
- *      and conversions to other media types.
- *
- *      "Work" shall mean the work of authorship, whether in Source or
- *      Object form, made available under the License, as indicated by a
- *      copyright notice that is included in or attached to the work
- *      (an example is provided in the Appendix below).
- *
- *      "Derivative Works" shall mean any work, whether in Source or Object
- *      form, that is based on (or derived from) the Work and for which the
- *      editorial revisions, annotations, elaborations, or other modifications
- *      represent, as a whole, an original work of authorship. For the purposes
- *      of this License, Derivative Works shall not include works that remain
- *      separable from, or merely link (or bind by name) to the interfaces of,
- *      the Work and Derivative Works thereof.
- *
- *      "Contribution" shall mean any work of authorship, including
- *      the original version of the Work and any modifications or additions
- *      to that Work or Derivative Works thereof, that is intentionally
- *      submitted to Licensor for inclusion in the Work by the copyright owner
- *      or by an individual or Legal Entity authorized to submit on behalf of
- *      the copyright owner. For the purposes of this definition, "submitted"
- *      means any form of electronic, verbal, or written communication sent
- *      to the Licensor or its representatives, including but not limited to
- *      communication on electronic mailing lists, source code control systems,
- *      and issue tracking systems that are managed by, or on behalf of, the
- *      Licensor for the purpose of discussing and improving the Work, but
- *      excluding communication that is conspicuously marked or otherwise
- *      designated in writing by the copyright owner as "Not a Contribution."
- *
- *      "Contributor" shall mean Licensor and any individual or Legal Entity
- *      on behalf of whom a Contribution has been received by Licensor and
- *      subsequently incorporated within the Work.
- *
- *   2. Grant of Copyright License. Subject to the terms and conditions of
- *      this License, each Contributor hereby grants to You a perpetual,
- *      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- *      copyright license to reproduce, prepare Derivative Works of,
- *      publicly display, publicly perform, sublicense, and distribute the
- *      Work and such Derivative Works in Source or Object form.
- *
- *   3. Grant of Patent License. Subject to the terms and conditions of
- *      this License, each Contributor hereby grants to You a perpetual,
- *      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- *      (except as stated in this section) patent license to make, have made,
- *      use, offer to sell, sell, import, and otherwise transfer the Work,
- *      where such license applies only to those patent claims licensable
- *      by such Contributor that are necessarily infringed by their
- *      Contribution(s) alone or by combination of their Contribution(s)
- *      with the Work to which such Contribution(s) was submitted. If You
- *      institute patent litigation against any entity (including a
- *      cross-claim or counterclaim in a lawsuit) alleging that the Work
- *      or a Contribution incorporated within the Work constitutes direct
- *      or contributory patent infringement, then any patent licenses
- *      granted to You under this License for that Work shall terminate
- *      as of the date such litigation is filed.
- *
- *   4. Redistribution. You may reproduce and distribute copies of the
- *      Work or Derivative Works thereof in any medium, with or without
- *      modifications, and in Source or Object form, provided that You
- *      meet the following conditions:
- *
- *      (a) You must give any other recipients of the Work or
- *          Derivative Works a copy of this License; and
- *
- *      (b) You must cause any modified files to carry prominent notices
- *          stating that You changed the files; and
- *
- *      (c) You must retain, in the Source form of any Derivative Works
- *          that You distribute, all copyright, patent, trademark, and
- *          attribution notices from the Source form of the Work,
- *          excluding those notices that do not pertain to any part of
- *          the Derivative Works; and
- *
- *      (d) If the Work includes a "NOTICE" text file as part of its
- *          distribution, then any Derivative Works that You distribute must
- *          include a readable copy of the attribution notices contained
- *          within such NOTICE file, excluding those notices that do not
- *          pertain to any part of the Derivative Works, in at least one
- *          of the following places: within a NOTICE text file distributed
- *          as part of the Derivative Works; within the Source form or
- *          documentation, if provided along with the Derivative Works; or,
- *          within a display generated by the Derivative Works, if and
- *          wherever such third-party notices normally appear. The contents
- *          of the NOTICE file are for informational purposes only and
- *          do not modify the License. You may add Your own attribution
- *          notices within Derivative Works that You distribute, alongside
- *          or as an addendum to the NOTICE text from the Work, provided
- *          that such additional attribution notices cannot be construed
- *          as modifying the License.
- *
- *      You may add Your own copyright statement to Your modifications and
- *      may provide additional or different license terms and conditions
- *      for use, reproduction, or distribution of Your modifications, or
- *      for any such Derivative Works as a whole, provided Your use,
- *      reproduction, and distribution of the Work otherwise complies with
- *      the conditions stated in this License.
- *
- *   5. Submission of Contributions. Unless You explicitly state otherwise,
- *      any Contribution intentionally submitted for inclusion in the Work
- *      by You to the Licensor shall be under the terms and conditions of
- *      this License, without any additional terms or conditions.
- *      Notwithstanding the above, nothing herein shall supersede or modify
- *      the terms of any separate license agreement you may have executed
- *      with Licensor regarding such Contributions.
- *
- *   6. Trademarks. This License does not grant permission to use the trade
- *      names, trademarks, service marks, or product names of the Licensor,
- *      except as required for reasonable and customary use in describing the
- *      origin of the Work and reproducing the content of the NOTICE file.
- *
- *   7. Disclaimer of Warranty. Unless required by applicable law or
- *      agreed to in writing, Licensor provides the Work (and each
- *      Contributor provides its Contributions) on an "AS IS" BASIS,
- *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- *      implied, including, without limitation, any warranties or conditions
- *      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- *      PARTICULAR PURPOSE. You are solely responsible for determining the
- *      appropriateness of using or redistributing the Work and assume any
- *      risks associated with Your exercise of permissions under this License.
- *
- *   8. Limitation of Liability. In no event and under no legal theory,
- *      whether in tort (including negligence), contract, or otherwise,
- *      unless required by applicable law (such as deliberate and grossly
- *      negligent acts) or agreed to in writing, shall any Contributor be
- *      liable to You for damages, including any direct, indirect, special,
- *      incidental, or consequential damages of any character arising as a
- *      result of this License or out of the use or inability to use the
- *      Work (including but not limited to damages for loss of goodwill,
- *      work stoppage, computer failure or malfunction, or any and all
- *      other commercial damages or losses), even if such Contributor
- *      has been advised of the possibility of such damages.
- *
- *   9. Accepting Warranty or Additional Liability. While redistributing
- *      the Work or Derivative Works thereof, You may choose to offer,
- *      and charge a fee for, acceptance of support, warranty, indemnity,
- *      or other liability obligations and/or rights consistent with this
- *      License. However, in accepting such obligations, You may act only
- *      on Your own behalf and on Your sole responsibility, not on behalf
- *      of any other Contributor, and only if You agree to indemnify,
- *      defend, and hold each Contributor harmless for any liability
- *      incurred by, or claims asserted against, such Contributor by reason
- *      of your accepting any such warranty or additional liability.
- *
- *   END OF TERMS AND CONDITIONS
- *
- *   APPENDIX: How to apply the Apache License to your work.
- *
- *      To apply the Apache License to your work, attach the following
- *      boilerplate notice, with the fields enclosed by brackets "[]"
- *      replaced with your own identifying information. (Don't include
- *      the brackets!)  The text should be enclosed in the appropriate
- *      comment syntax for the file format. We also recommend that a
- *      file or class name and description of purpose be included on the
- *      same "printed page" as the copyright notice for easier
- *      identification within third-party archives.
- *
- *   Copyright [yyyy] [name of copyright owner]
- *
- *   Licensed under the Apache License, Version 2.0 (the "License");
- *   you may not use this file except in compliance with the License.
- *   You may obtain a copy of the License at
- *
- *       http://www.apache.org/licenses/LICENSE-2.0
- *
- *   Unless required by applicable law or agreed to in writing, software
- *   distributed under the License is distributed on an "AS IS" BASIS,
- *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *   See the License for the specific language governing permissions and
- *   limitations under the License.
- */
-
diff --git a/tools/findbugs/licenses/LICENSE-commons-lang.txt b/tools/findbugs/licenses/LICENSE-commons-lang.txt
deleted file mode 100644
index d645695..0000000
--- a/tools/findbugs/licenses/LICENSE-commons-lang.txt
+++ /dev/null
@@ -1,202 +0,0 @@
-
-                                 Apache License
-                           Version 2.0, January 2004
-                        http://www.apache.org/licenses/
-
-   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-   1. Definitions.
-
-      "License" shall mean the terms and conditions for use, reproduction,
-      and distribution as defined by Sections 1 through 9 of this document.
-
-      "Licensor" shall mean the copyright owner or entity authorized by
-      the copyright owner that is granting the License.
-
-      "Legal Entity" shall mean the union of the acting entity and all
-      other entities that control, are controlled by, or are under common
-      control with that entity. For the purposes of this definition,
-      "control" means (i) the power, direct or indirect, to cause the
-      direction or management of such entity, whether by contract or
-      otherwise, or (ii) ownership of fifty percent (50%) or more of the
-      outstanding shares, or (iii) beneficial ownership of such entity.
-
-      "You" (or "Your") shall mean an individual or Legal Entity
-      exercising permissions granted by this License.
-
-      "Source" form shall mean the preferred form for making modifications,
-      including but not limited to software source code, documentation
-      source, and configuration files.
-
-      "Object" form shall mean any form resulting from mechanical
-      transformation or translation of a Source form, including but
-      not limited to compiled object code, generated documentation,
-      and conversions to other media types.
-
-      "Work" shall mean the work of authorship, whether in Source or
-      Object form, made available under the License, as indicated by a
-      copyright notice that is included in or attached to the work
-      (an example is provided in the Appendix below).
-
-      "Derivative Works" shall mean any work, whether in Source or Object
-      form, that is based on (or derived from) the Work and for which the
-      editorial revisions, annotations, elaborations, or other modifications
-      represent, as a whole, an original work of authorship. For the purposes
-      of this License, Derivative Works shall not include works that remain
-      separable from, or merely link (or bind by name) to the interfaces of,
-      the Work and Derivative Works thereof.
-
-      "Contribution" shall mean any work of authorship, including
-      the original version of the Work and any modifications or additions
-      to that Work or Derivative Works thereof, that is intentionally
-      submitted to Licensor for inclusion in the Work by the copyright owner
-      or by an individual or Legal Entity authorized to submit on behalf of
-      the copyright owner. For the purposes of this definition, "submitted"
-      means any form of electronic, verbal, or written communication sent
-      to the Licensor or its representatives, including but not limited to
-      communication on electronic mailing lists, source code control systems,
-      and issue tracking systems that are managed by, or on behalf of, the
-      Licensor for the purpose of discussing and improving the Work, but
-      excluding communication that is conspicuously marked or otherwise
-      designated in writing by the copyright owner as "Not a Contribution."
-
-      "Contributor" shall mean Licensor and any individual or Legal Entity
-      on behalf of whom a Contribution has been received by Licensor and
-      subsequently incorporated within the Work.
-
-   2. Grant of Copyright License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      copyright license to reproduce, prepare Derivative Works of,
-      publicly display, publicly perform, sublicense, and distribute the
-      Work and such Derivative Works in Source or Object form.
-
-   3. Grant of Patent License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      (except as stated in this section) patent license to make, have made,
-      use, offer to sell, sell, import, and otherwise transfer the Work,
-      where such license applies only to those patent claims licensable
-      by such Contributor that are necessarily infringed by their
-      Contribution(s) alone or by combination of their Contribution(s)
-      with the Work to which such Contribution(s) was submitted. If You
-      institute patent litigation against any entity (including a
-      cross-claim or counterclaim in a lawsuit) alleging that the Work
-      or a Contribution incorporated within the Work constitutes direct
-      or contributory patent infringement, then any patent licenses
-      granted to You under this License for that Work shall terminate
-      as of the date such litigation is filed.
-
-   4. Redistribution. You may reproduce and distribute copies of the
-      Work or Derivative Works thereof in any medium, with or without
-      modifications, and in Source or Object form, provided that You
-      meet the following conditions:
-
-      (a) You must give any other recipients of the Work or
-          Derivative Works a copy of this License; and
-
-      (b) You must cause any modified files to carry prominent notices
-          stating that You changed the files; and
-
-      (c) You must retain, in the Source form of any Derivative Works
-          that You distribute, all copyright, patent, trademark, and
-          attribution notices from the Source form of the Work,
-          excluding those notices that do not pertain to any part of
-          the Derivative Works; and
-
-      (d) If the Work includes a "NOTICE" text file as part of its
-          distribution, then any Derivative Works that You distribute must
-          include a readable copy of the attribution notices contained
-          within such NOTICE file, excluding those notices that do not
-          pertain to any part of the Derivative Works, in at least one
-          of the following places: within a NOTICE text file distributed
-          as part of the Derivative Works; within the Source form or
-          documentation, if provided along with the Derivative Works; or,
-          within a display generated by the Derivative Works, if and
-          wherever such third-party notices normally appear. The contents
-          of the NOTICE file are for informational purposes only and
-          do not modify the License. You may add Your own attribution
-          notices within Derivative Works that You distribute, alongside
-          or as an addendum to the NOTICE text from the Work, provided
-          that such additional attribution notices cannot be construed
-          as modifying the License.
-
-      You may add Your own copyright statement to Your modifications and
-      may provide additional or different license terms and conditions
-      for use, reproduction, or distribution of Your modifications, or
-      for any such Derivative Works as a whole, provided Your use,
-      reproduction, and distribution of the Work otherwise complies with
-      the conditions stated in this License.
-
-   5. Submission of Contributions. Unless You explicitly state otherwise,
-      any Contribution intentionally submitted for inclusion in the Work
-      by You to the Licensor shall be under the terms and conditions of
-      this License, without any additional terms or conditions.
-      Notwithstanding the above, nothing herein shall supersede or modify
-      the terms of any separate license agreement you may have executed
-      with Licensor regarding such Contributions.
-
-   6. Trademarks. This License does not grant permission to use the trade
-      names, trademarks, service marks, or product names of the Licensor,
-      except as required for reasonable and customary use in describing the
-      origin of the Work and reproducing the content of the NOTICE file.
-
-   7. Disclaimer of Warranty. Unless required by applicable law or
-      agreed to in writing, Licensor provides the Work (and each
-      Contributor provides its Contributions) on an "AS IS" BASIS,
-      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-      implied, including, without limitation, any warranties or conditions
-      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
-      PARTICULAR PURPOSE. You are solely responsible for determining the
-      appropriateness of using or redistributing the Work and assume any
-      risks associated with Your exercise of permissions under this License.
-
-   8. Limitation of Liability. In no event and under no legal theory,
-      whether in tort (including negligence), contract, or otherwise,
-      unless required by applicable law (such as deliberate and grossly
-      negligent acts) or agreed to in writing, shall any Contributor be
-      liable to You for damages, including any direct, indirect, special,
-      incidental, or consequential damages of any character arising as a
-      result of this License or out of the use or inability to use the
-      Work (including but not limited to damages for loss of goodwill,
-      work stoppage, computer failure or malfunction, or any and all
-      other commercial damages or losses), even if such Contributor
-      has been advised of the possibility of such damages.
-
-   9. Accepting Warranty or Additional Liability. While redistributing
-      the Work or Derivative Works thereof, You may choose to offer,
-      and charge a fee for, acceptance of support, warranty, indemnity,
-      or other liability obligations and/or rights consistent with this
-      License. However, in accepting such obligations, You may act only
-      on Your own behalf and on Your sole responsibility, not on behalf
-      of any other Contributor, and only if You agree to indemnify,
-      defend, and hold each Contributor harmless for any liability
-      incurred by, or claims asserted against, such Contributor by reason
-      of your accepting any such warranty or additional liability.
-
-   END OF TERMS AND CONDITIONS
-
-   APPENDIX: How to apply the Apache License to your work.
-
-      To apply the Apache License to your work, attach the following
-      boilerplate notice, with the fields enclosed by brackets "[]"
-      replaced with your own identifying information. (Don't include
-      the brackets!)  The text should be enclosed in the appropriate
-      comment syntax for the file format. We also recommend that a
-      file or class name and description of purpose be included on the
-      same "printed page" as the copyright notice for easier
-      identification within third-party archives.
-
-   Copyright [yyyy] [name of copyright owner]
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
diff --git a/tools/findbugs/licenses/LICENSE-docbook.txt b/tools/findbugs/licenses/LICENSE-docbook.txt
deleted file mode 100644
index 6ba2ed1..0000000
--- a/tools/findbugs/licenses/LICENSE-docbook.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-<!-- Copyright 1992-2002 HaL Computer Systems, Inc.,
-     O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
-     Corporation, Norman Walsh, Sun Microsystems, Inc., and the
-     Organization for the Advancement of Structured Information
-     Standards (OASIS).
-
-     $Id: LICENSE-docbook.txt,v 1.1 2005/11/28 21:36:47 daveho Exp $
-
-     Permission to use, copy, modify and distribute the DocBook XML DTD
-     and its accompanying documentation for any purpose and without fee
-     is hereby granted in perpetuity, provided that the above copyright
-     notice and this paragraph appear in all copies.  The copyright
-     holders make no representation about the suitability of the DTD for
-     any purpose.  It is provided "as is" without expressed or implied
-     warranty.
-
-     If you modify the DocBook DTD in any way, except for declaring and
-     referencing additional sets of general entities and declaring
-     additional notations, label your DTD as a variant of DocBook.  See
-     the maintenance documentation for more information.
-
-     Please direct all questions, bug reports, or suggestions for
-     changes to the docbook@lists.oasis-open.org mailing list. For more
-     information, see http://www.oasis-open.org/docbook/.
--->
diff --git a/tools/findbugs/licenses/LICENSE-dom4j.txt b/tools/findbugs/licenses/LICENSE-dom4j.txt
deleted file mode 100644
index 720c83b..0000000
--- a/tools/findbugs/licenses/LICENSE-dom4j.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-BSD style license
-
-Redistribution and use of this software and associated documentation
-("Software"), with or without modification, are permitted provided that
-the following conditions are met:
-
-       1. Redistributions of source code must retain copyright statements
-       and notices. Redistributions must also contain a copy of this
-       document.
-
-       2. Redistributions in binary form must reproduce the above
-       copyright notice, this list of conditions and the following
-       disclaimer in the documentation and/or other materials provided
-       with the distribution.
-
-       3. The name "DOM4J" must not be used to endorse or promote
-       products derived from this Software without prior written
-       permission of MetaStuff, Ltd. For written permission, please
-       contact dom4j-info@metastuff.com.
-
-       4. Products derived from this Software may not be called "DOM4J"
-       nor may "DOM4J" appear in their names without prior written
-       permission of MetaStuff, Ltd. DOM4J is a registered trademark of
-       MetaStuff, Ltd.
-
-       5. Due credit should be given to the DOM4J Project
-       (http://dom4j.org/).
-
-THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``AS IS''
-AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL METASTUFF, LTD. OR ITS
-CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-Copyright 2001 (C) MetaStuff, Ltd. All Rights Reserved.
diff --git a/tools/findbugs/licenses/LICENSE-jFormatString.txt b/tools/findbugs/licenses/LICENSE-jFormatString.txt
deleted file mode 100644
index eeab58c..0000000
--- a/tools/findbugs/licenses/LICENSE-jFormatString.txt
+++ /dev/null
@@ -1,347 +0,0 @@
-The GNU General Public License (GPL)
-
-Version 2, June 1991
-
-Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-Everyone is permitted to copy and distribute verbatim copies of this license
-document, but changing it is not allowed.
-
-Preamble
-
-The licenses for most software are designed to take away your freedom to share
-and change it.  By contrast, the GNU General Public License is intended to
-guarantee your freedom to share and change free software--to make sure the
-software is free for all its users.  This General Public License applies to
-most of the Free Software Foundation's software and to any other program whose
-authors commit to using it.  (Some other Free Software Foundation software is
-covered by the GNU Library General Public License instead.) You can apply it to
-your programs, too.
-
-When we speak of free software, we are referring to freedom, not price.  Our
-General Public Licenses are designed to make sure that you have the freedom to
-distribute copies of free software (and charge for this service if you wish),
-that you receive source code or can get it if you want it, that you can change
-the software or use pieces of it in new free programs; and that you know you
-can do these things.
-
-To protect your rights, we need to make restrictions that forbid anyone to deny
-you these rights or to ask you to surrender the rights.  These restrictions
-translate to certain responsibilities for you if you distribute copies of the
-software, or if you modify it.
-
-For example, if you distribute copies of such a program, whether gratis or for
-a fee, you must give the recipients all the rights that you have.  You must
-make sure that they, too, receive or can get the source code.  And you must
-show them these terms so they know their rights.
-
-We protect your rights with two steps: (1) copyright the software, and (2)
-offer you this license which gives you legal permission to copy, distribute
-and/or modify the software.
-
-Also, for each author's protection and ours, we want to make certain that
-everyone understands that there is no warranty for this free software.  If the
-software is modified by someone else and passed on, we want its recipients to
-know that what they have is not the original, so that any problems introduced
-by others will not reflect on the original authors' reputations.
-
-Finally, any free program is threatened constantly by software patents.  We
-wish to avoid the danger that redistributors of a free program will
-individually obtain patent licenses, in effect making the program proprietary.
-To prevent this, we have made it clear that any patent must be licensed for
-everyone's free use or not licensed at all.
-
-The precise terms and conditions for copying, distribution and modification
-follow.
-
-TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-0. This License applies to any program or other work which contains a notice
-placed by the copyright holder saying it may be distributed under the terms of
-this General Public License.  The "Program", below, refers to any such program
-or work, and a "work based on the Program" means either the Program or any
-derivative work under copyright law: that is to say, a work containing the
-Program or a portion of it, either verbatim or with modifications and/or
-translated into another language.  (Hereinafter, translation is included
-without limitation in the term "modification".) Each licensee is addressed as
-"you".
-
-Activities other than copying, distribution and modification are not covered by
-this License; they are outside its scope.  The act of running the Program is
-not restricted, and the output from the Program is covered only if its contents
-constitute a work based on the Program (independent of having been made by
-running the Program).  Whether that is true depends on what the Program does.
-
-1. You may copy and distribute verbatim copies of the Program's source code as
-you receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice and
-disclaimer of warranty; keep intact all the notices that refer to this License
-and to the absence of any warranty; and give any other recipients of the
-Program a copy of this License along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and you may
-at your option offer warranty protection in exchange for a fee.
-
-2. You may modify your copy or copies of the Program or any portion of it, thus
-forming a work based on the Program, and copy and distribute such modifications
-or work under the terms of Section 1 above, provided that you also meet all of
-these conditions:
-
-    a) You must cause the modified files to carry prominent notices stating
-    that you changed the files and the date of any change.
-
-    b) You must cause any work that you distribute or publish, that in whole or
-    in part contains or is derived from the Program or any part thereof, to be
-    licensed as a whole at no charge to all third parties under the terms of
-    this License.
-
-    c) If the modified program normally reads commands interactively when run,
-    you must cause it, when started running for such interactive use in the
-    most ordinary way, to print or display an announcement including an
-    appropriate copyright notice and a notice that there is no warranty (or
-    else, saying that you provide a warranty) and that users may redistribute
-    the program under these conditions, and telling the user how to view a copy
-    of this License.  (Exception: if the Program itself is interactive but does
-    not normally print such an announcement, your work based on the Program is
-    not required to print an announcement.)
-
-These requirements apply to the modified work as a whole.  If identifiable
-sections of that work are not derived from the Program, and can be reasonably
-considered independent and separate works in themselves, then this License, and
-its terms, do not apply to those sections when you distribute them as separate
-works.  But when you distribute the same sections as part of a whole which is a
-work based on the Program, the distribution of the whole must be on the terms
-of this License, whose permissions for other licensees extend to the entire
-whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest your
-rights to work written entirely by you; rather, the intent is to exercise the
-right to control the distribution of derivative or collective works based on
-the Program.
-
-In addition, mere aggregation of another work not based on the Program with the
-Program (or with a work based on the Program) on a volume of a storage or
-distribution medium does not bring the other work under the scope of this
-License.
-
-3. You may copy and distribute the Program (or a work based on it, under
-Section 2) in object code or executable form under the terms of Sections 1 and
-2 above provided that you also do one of the following:
-
-    a) Accompany it with the complete corresponding machine-readable source
-    code, which must be distributed under the terms of Sections 1 and 2 above
-    on a medium customarily used for software interchange; or,
-
-    b) Accompany it with a written offer, valid for at least three years, to
-    give any third party, for a charge no more than your cost of physically
-    performing source distribution, a complete machine-readable copy of the
-    corresponding source code, to be distributed under the terms of Sections 1
-    and 2 above on a medium customarily used for software interchange; or,
-
-    c) Accompany it with the information you received as to the offer to
-    distribute corresponding source code.  (This alternative is allowed only
-    for noncommercial distribution and only if you received the program in
-    object code or executable form with such an offer, in accord with
-    Subsection b above.)
-
-The source code for a work means the preferred form of the work for making
-modifications to it.  For an executable work, complete source code means all
-the source code for all modules it contains, plus any associated interface
-definition files, plus the scripts used to control compilation and installation
-of the executable.  However, as a special exception, the source code
-distributed need not include anything that is normally distributed (in either
-source or binary form) with the major components (compiler, kernel, and so on)
-of the operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the source
-code from the same place counts as distribution of the source code, even though
-third parties are not compelled to copy the source along with the object code.
-
-4. You may not copy, modify, sublicense, or distribute the Program except as
-expressly provided under this License.  Any attempt otherwise to copy, modify,
-sublicense or distribute the Program is void, and will automatically terminate
-your rights under this License.  However, parties who have received copies, or
-rights, from you under this License will not have their licenses terminated so
-long as such parties remain in full compliance.
-
-5. You are not required to accept this License, since you have not signed it.
-However, nothing else grants you permission to modify or distribute the Program
-or its derivative works.  These actions are prohibited by law if you do not
-accept this License.  Therefore, by modifying or distributing the Program (or
-any work based on the Program), you indicate your acceptance of this License to
-do so, and all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-6. Each time you redistribute the Program (or any work based on the Program),
-the recipient automatically receives a license from the original licensor to
-copy, distribute or modify the Program subject to these terms and conditions.
-You may not impose any further restrictions on the recipients' exercise of the
-rights granted herein.  You are not responsible for enforcing compliance by
-third parties to this License.
-
-7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues), conditions
-are imposed on you (whether by court order, agreement or otherwise) that
-contradict the conditions of this License, they do not excuse you from the
-conditions of this License.  If you cannot distribute so as to satisfy
-simultaneously your obligations under this License and any other pertinent
-obligations, then as a consequence you may not distribute the Program at all.
-For example, if a patent license would not permit royalty-free redistribution
-of the Program by all those who receive copies directly or indirectly through
-you, then the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply and
-the section as a whole is intended to apply in other circumstances.
-
-It is not the purpose of this section to induce you to infringe any patents or
-other property right claims or to contest validity of any such claims; this
-section has the sole purpose of protecting the integrity of the free software
-distribution system, which is implemented by public license practices.  Many
-people have made generous contributions to the wide range of software
-distributed through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing to
-distribute software through any other system and a licensee cannot impose that
-choice.
-
-This section is intended to make thoroughly clear what is believed to be a
-consequence of the rest of this License.
-
-8. If the distribution and/or use of the Program is restricted in certain
-countries either by patents or by copyrighted interfaces, the original
-copyright holder who places the Program under this License may add an explicit
-geographical distribution limitation excluding those countries, so that
-distribution is permitted only in or among countries not thus excluded.  In
-such case, this License incorporates the limitation as if written in the body
-of this License.
-
-9. The Free Software Foundation may publish revised and/or new versions of the
-General Public License from time to time.  Such new versions will be similar in
-spirit to the present version, but may differ in detail to address new problems
-or concerns.
-
-Each version is given a distinguishing version number.  If the Program
-specifies a version number of this License which applies to it and "any later
-version", you have the option of following the terms and conditions either of
-that version or of any later version published by the Free Software Foundation.
-If the Program does not specify a version number of this License, you may
-choose any version ever published by the Free Software Foundation.
-
-10. If you wish to incorporate parts of the Program into other free programs
-whose distribution conditions are different, write to the author to ask for
-permission.  For software which is copyrighted by the Free Software Foundation,
-write to the Free Software Foundation; we sometimes make exceptions for this.
-Our decision will be guided by the two goals of preserving the free status of
-all derivatives of our free software and of promoting the sharing and reuse of
-software generally.
-
-NO WARRANTY
-
-11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
-THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN OTHERWISE
-STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
-PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
-INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND
-PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE,
-YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
-ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
-PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
-INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
-BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER
-OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-END OF TERMS AND CONDITIONS
-
-How to Apply These Terms to Your New Programs
-
-If you develop a new program, and you want it to be of the greatest possible
-use to the public, the best way to achieve this is to make it free software
-which everyone can redistribute and change under these terms.
-
-To do so, attach the following notices to the program.  It is safest to attach
-them to the start of each source file to most effectively convey the exclusion
-of warranty; and each file should have at least the "copyright" line and a
-pointer to where the full notice is found.
-
-    One line to give the program's name and a brief idea of what it does.
-
-    Copyright (C) <year> <name of author>
-
-    This program is free software; you can redistribute it and/or modify it
-    under the terms of the GNU General Public License as published by the Free
-    Software Foundation; either version 2 of the License, or (at your option)
-    any later version.
-
-    This program is distributed in the hope that it will be useful, but WITHOUT
-    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
-    more details.
-
-    You should have received a copy of the GNU General Public License along
-    with this program; if not, write to the Free Software Foundation, Inc., 59
-    Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this when it
-starts in an interactive mode:
-
-    Gnomovision version 69, Copyright (C) year name of author Gnomovision comes
-    with ABSOLUTELY NO WARRANTY; for details type 'show w'.  This is free
-    software, and you are welcome to redistribute it under certain conditions;
-    type 'show c' for details.
-
-The hypothetical commands 'show w' and 'show c' should show the appropriate
-parts of the General Public License.  Of course, the commands you use may be
-called something other than 'show w' and 'show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.  Here
-is a sample; alter the names:
-
-    Yoyodyne, Inc., hereby disclaims all copyright interest in the program
-    'Gnomovision' (which makes passes at compilers) written by James Hacker.
-
-    signature of Ty Coon, 1 April 1989
-
-    Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs.  If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library.  If this is what you want to do, use the GNU Library General Public
-License instead of this License.
-
-
-"CLASSPATH" EXCEPTION TO THE GPL
-
-Certain source files distributed by Sun Microsystems, Inc.  are subject to
-the following clarification and special exception to the GPL, but only where
-Sun has expressly included in the particular source file's header the words
-"Sun designates this particular file as subject to the "Classpath" exception
-as provided by Sun in the LICENSE file that accompanied this code."
-
-    Linking this library statically or dynamically with other modules is making
-    a combined work based on this library.  Thus, the terms and conditions of
-    the GNU General Public License cover the whole combination.
-
-    As a special exception, the copyright holders of this library give you
-    permission to link this library with independent modules to produce an
-    executable, regardless of the license terms of these independent modules,
-    and to copy and distribute the resulting executable under terms of your
-    choice, provided that you also meet, for each linked independent module,
-    the terms and conditions of the license of that module.  An independent
-    module is a module which is not derived from or based on this library.  If
-    you modify this library, you may extend this exception to your version of
-    the library, but you are not obligated to do so.  If you do not wish to do
-    so, delete this exception statement from your version.
diff --git a/tools/findbugs/licenses/LICENSE-jaxen.txt b/tools/findbugs/licenses/LICENSE-jaxen.txt
deleted file mode 100644
index ba31ed9..0000000
--- a/tools/findbugs/licenses/LICENSE-jaxen.txt
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- $Id: LICENSE-jaxen.txt,v 1.1 2008/06/18 18:54:23 wpugh Exp $
-
- Copyright 2003-2006 The Werken Company. All Rights Reserved.
- 
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
-  * Redistributions of source code must retain the above copyright
-    notice, this list of conditions and the following disclaimer.
-
-  * Redistributions in binary form must reproduce the above copyright
-    notice, this list of conditions and the following disclaimer in the
-    documentation and/or other materials provided with the distribution.
-
-  * Neither the name of the Jaxen Project nor the names of its
-    contributors may be used to endorse or promote products derived 
-    from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
-IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
-TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
-PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
-OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
- */
diff --git a/tools/findbugs/licenses/LICENSE-jcip.txt b/tools/findbugs/licenses/LICENSE-jcip.txt
deleted file mode 100644
index ca69758..0000000
--- a/tools/findbugs/licenses/LICENSE-jcip.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-The Java code in the package net.jcip.annotations 
-is copyright (c) 2005 Brian Goetz
-and is released under the Creative Commons Attribution License
-(http://creativecommons.org/licenses/by/2.5)
-Official home: http://www.jcip.net
diff --git a/tools/findbugs/licenses/LICENSE-jdepend.txt b/tools/findbugs/licenses/LICENSE-jdepend.txt
deleted file mode 100644
index 57cc8ef..0000000
--- a/tools/findbugs/licenses/LICENSE-jdepend.txt
+++ /dev/null
@@ -1,33 +0,0 @@
-The jdepend library (lib/jdepend-2.9.jar) is distributed under the terms of the BSD license:

-http://www.clarkware.com/software/JDepend.html#license

-http://www.clarkware.com/software/license.txt

-

-Copyright (C) 2001 Clarkware Consulting, Inc.

-All Rights Reserved.

-

-Redistribution and use in source and binary forms, with or without 

-modification, are permitted provided that the following conditions 

-are met:

-

-   1. Redistributions of source code must retain the above copyright

-      notice, this list of conditions and the following disclaimer.

-

-   2. Redistributions in binary form must reproduce the above copyright 

-      notice, this list of conditions and the following disclaimer in the 

-      documentation and/or other materials provided with the distribution.

-

-   3. Neither the name of Clarkware Consulting, Inc. nor the names of its 

-      contributors may be used to endorse or promote products derived 

-      from this software without prior written permission. For written 

-      permission, please contact clarkware@clarkware.com.

-

-THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,

-INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND

-FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL

-CLARKWARE CONSULTING OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 

-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 

-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 

-OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 

-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 

-NEGLIGENCE OR OTHERWISE) ARISING IN  ANY WAY OUT OF THE USE OF THIS SOFTWARE, 

-EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

diff --git a/tools/findbugs/licenses/LICENSE-jsr305.txt b/tools/findbugs/licenses/LICENSE-jsr305.txt
deleted file mode 100644
index 29fae78..0000000
--- a/tools/findbugs/licenses/LICENSE-jsr305.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-The JSR-305 reference implementation (lib/jsr305.jar) is
-distributed under the terms of the New BSD license:
-
-  http://www.opensource.org/licenses/bsd-license.php
-  
-See the JSR-305 home page for more information:
-
-  http://code.google.com/p/jsr-305/
diff --git a/tools/findbugs/licenses/LICENSE.txt b/tools/findbugs/licenses/LICENSE.txt
deleted file mode 100644
index b1e3f5a..0000000
--- a/tools/findbugs/licenses/LICENSE.txt
+++ /dev/null
@@ -1,504 +0,0 @@
-		  GNU LESSER GENERAL PUBLIC LICENSE
-		       Version 2.1, February 1999
-
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.
-     59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-[This is the first released version of the Lesser GPL.  It also counts
- as the successor of the GNU Library Public License, version 2, hence
- the version number 2.1.]
-
-			    Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-Licenses are intended to guarantee your freedom to share and change
-free software--to make sure the software is free for all its users.
-
-  This license, the Lesser General Public License, applies to some
-specially designated software packages--typically libraries--of the
-Free Software Foundation and other authors who decide to use it.  You
-can use it too, but we suggest you first think carefully about whether
-this license or the ordinary General Public License is the better
-strategy to use in any particular case, based on the explanations below.
-
-  When we speak of free software, we are referring to freedom of use,
-not price.  Our General Public Licenses are designed to make sure that
-you have the freedom to distribute copies of free software (and charge
-for this service if you wish); that you receive source code or can get
-it if you want it; that you can change the software and use pieces of
-it in new free programs; and that you are informed that you can do
-these things.
-
-  To protect your rights, we need to make restrictions that forbid
-distributors to deny you these rights or to ask you to surrender these
-rights.  These restrictions translate to certain responsibilities for
-you if you distribute copies of the library or if you modify it.
-
-  For example, if you distribute copies of the library, whether gratis
-or for a fee, you must give the recipients all the rights that we gave
-you.  You must make sure that they, too, receive or can get the source
-code.  If you link other code with the library, you must provide
-complete object files to the recipients, so that they can relink them
-with the library after making changes to the library and recompiling
-it.  And you must show them these terms so they know their rights.
-
-  We protect your rights with a two-step method: (1) we copyright the
-library, and (2) we offer you this license, which gives you legal
-permission to copy, distribute and/or modify the library.
-
-  To protect each distributor, we want to make it very clear that
-there is no warranty for the free library.  Also, if the library is
-modified by someone else and passed on, the recipients should know
-that what they have is not the original version, so that the original
-author's reputation will not be affected by problems that might be
-introduced by others.
-
-  Finally, software patents pose a constant threat to the existence of
-any free program.  We wish to make sure that a company cannot
-effectively restrict the users of a free program by obtaining a
-restrictive license from a patent holder.  Therefore, we insist that
-any patent license obtained for a version of the library must be
-consistent with the full freedom of use specified in this license.
-
-  Most GNU software, including some libraries, is covered by the
-ordinary GNU General Public License.  This license, the GNU Lesser
-General Public License, applies to certain designated libraries, and
-is quite different from the ordinary General Public License.  We use
-this license for certain libraries in order to permit linking those
-libraries into non-free programs.
-
-  When a program is linked with a library, whether statically or using
-a shared library, the combination of the two is legally speaking a
-combined work, a derivative of the original library.  The ordinary
-General Public License therefore permits such linking only if the
-entire combination fits its criteria of freedom.  The Lesser General
-Public License permits more lax criteria for linking other code with
-the library.
-
-  We call this license the "Lesser" General Public License because it
-does Less to protect the user's freedom than the ordinary General
-Public License.  It also provides other free software developers Less
-of an advantage over competing non-free programs.  These disadvantages
-are the reason we use the ordinary General Public License for many
-libraries.  However, the Lesser license provides advantages in certain
-special circumstances.
-
-  For example, on rare occasions, there may be a special need to
-encourage the widest possible use of a certain library, so that it becomes
-a de-facto standard.  To achieve this, non-free programs must be
-allowed to use the library.  A more frequent case is that a free
-library does the same job as widely used non-free libraries.  In this
-case, there is little to gain by limiting the free library to free
-software only, so we use the Lesser General Public License.
-
-  In other cases, permission to use a particular library in non-free
-programs enables a greater number of people to use a large body of
-free software.  For example, permission to use the GNU C Library in
-non-free programs enables many more people to use the whole GNU
-operating system, as well as its variant, the GNU/Linux operating
-system.
-
-  Although the Lesser General Public License is Less protective of the
-users' freedom, it does ensure that the user of a program that is
-linked with the Library has the freedom and the wherewithal to run
-that program using a modified version of the Library.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.  Pay close attention to the difference between a
-"work based on the library" and a "work that uses the library".  The
-former contains code derived from the library, whereas the latter must
-be combined with the library in order to run.
-
-		  GNU LESSER GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License Agreement applies to any software library or other
-program which contains a notice placed by the copyright holder or
-other authorized party saying it may be distributed under the terms of
-this Lesser General Public License (also called "this License").
-Each licensee is addressed as "you".
-
-  A "library" means a collection of software functions and/or data
-prepared so as to be conveniently linked with application programs
-(which use some of those functions and data) to form executables.
-
-  The "Library", below, refers to any such software library or work
-which has been distributed under these terms.  A "work based on the
-Library" means either the Library or any derivative work under
-copyright law: that is to say, a work containing the Library or a
-portion of it, either verbatim or with modifications and/or translated
-straightforwardly into another language.  (Hereinafter, translation is
-included without limitation in the term "modification".)
-
-  "Source code" for a work means the preferred form of the work for
-making modifications to it.  For a library, complete source code means
-all the source code for all modules it contains, plus any associated
-interface definition files, plus the scripts used to control compilation
-and installation of the library.
-
-  Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running a program using the Library is not restricted, and output from
-such a program is covered only if its contents constitute a work based
-on the Library (independent of the use of the Library in a tool for
-writing it).  Whether that is true depends on what the Library does
-and what the program that uses the Library does.
-  
-  1. You may copy and distribute verbatim copies of the Library's
-complete source code as you receive it, in any medium, provided that
-you conspicuously and appropriately publish on each copy an
-appropriate copyright notice and disclaimer of warranty; keep intact
-all the notices that refer to this License and to the absence of any
-warranty; and distribute a copy of this License along with the
-Library.
-
-  You may charge a fee for the physical act of transferring a copy,
-and you may at your option offer warranty protection in exchange for a
-fee.
-
-  2. You may modify your copy or copies of the Library or any portion
-of it, thus forming a work based on the Library, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) The modified work must itself be a software library.
-
-    b) You must cause the files modified to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    c) You must cause the whole of the work to be licensed at no
-    charge to all third parties under the terms of this License.
-
-    d) If a facility in the modified Library refers to a function or a
-    table of data to be supplied by an application program that uses
-    the facility, other than as an argument passed when the facility
-    is invoked, then you must make a good faith effort to ensure that,
-    in the event an application does not supply such function or
-    table, the facility still operates, and performs whatever part of
-    its purpose remains meaningful.
-
-    (For example, a function in a library to compute square roots has
-    a purpose that is entirely well-defined independent of the
-    application.  Therefore, Subsection 2d requires that any
-    application-supplied function or table used by this function must
-    be optional: if the application does not supply it, the square
-    root function must still compute square roots.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Library,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Library, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote
-it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Library.
-
-In addition, mere aggregation of another work not based on the Library
-with the Library (or with a work based on the Library) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may opt to apply the terms of the ordinary GNU General Public
-License instead of this License to a given copy of the Library.  To do
-this, you must alter all the notices that refer to this License, so
-that they refer to the ordinary GNU General Public License, version 2,
-instead of to this License.  (If a newer version than version 2 of the
-ordinary GNU General Public License has appeared, then you can specify
-that version instead if you wish.)  Do not make any other change in
-these notices.
-
-  Once this change is made in a given copy, it is irreversible for
-that copy, so the ordinary GNU General Public License applies to all
-subsequent copies and derivative works made from that copy.
-
-  This option is useful when you wish to copy part of the code of
-the Library into a program that is not a library.
-
-  4. You may copy and distribute the Library (or a portion or
-derivative of it, under Section 2) in object code or executable form
-under the terms of Sections 1 and 2 above provided that you accompany
-it with the complete corresponding machine-readable source code, which
-must be distributed under the terms of Sections 1 and 2 above on a
-medium customarily used for software interchange.
-
-  If distribution of object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the
-source code from the same place satisfies the requirement to
-distribute the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  5. A program that contains no derivative of any portion of the
-Library, but is designed to work with the Library by being compiled or
-linked with it, is called a "work that uses the Library".  Such a
-work, in isolation, is not a derivative work of the Library, and
-therefore falls outside the scope of this License.
-
-  However, linking a "work that uses the Library" with the Library
-creates an executable that is a derivative of the Library (because it
-contains portions of the Library), rather than a "work that uses the
-library".  The executable is therefore covered by this License.
-Section 6 states terms for distribution of such executables.
-
-  When a "work that uses the Library" uses material from a header file
-that is part of the Library, the object code for the work may be a
-derivative work of the Library even though the source code is not.
-Whether this is true is especially significant if the work can be
-linked without the Library, or if the work is itself a library.  The
-threshold for this to be true is not precisely defined by law.
-
-  If such an object file uses only numerical parameters, data
-structure layouts and accessors, and small macros and small inline
-functions (ten lines or less in length), then the use of the object
-file is unrestricted, regardless of whether it is legally a derivative
-work.  (Executables containing this object code plus portions of the
-Library will still fall under Section 6.)
-
-  Otherwise, if the work is a derivative of the Library, you may
-distribute the object code for the work under the terms of Section 6.
-Any executables containing that work also fall under Section 6,
-whether or not they are linked directly with the Library itself.
-
-  6. As an exception to the Sections above, you may also combine or
-link a "work that uses the Library" with the Library to produce a
-work containing portions of the Library, and distribute that work
-under terms of your choice, provided that the terms permit
-modification of the work for the customer's own use and reverse
-engineering for debugging such modifications.
-
-  You must give prominent notice with each copy of the work that the
-Library is used in it and that the Library and its use are covered by
-this License.  You must supply a copy of this License.  If the work
-during execution displays copyright notices, you must include the
-copyright notice for the Library among them, as well as a reference
-directing the user to the copy of this License.  Also, you must do one
-of these things:
-
-    a) Accompany the work with the complete corresponding
-    machine-readable source code for the Library including whatever
-    changes were used in the work (which must be distributed under
-    Sections 1 and 2 above); and, if the work is an executable linked
-    with the Library, with the complete machine-readable "work that
-    uses the Library", as object code and/or source code, so that the
-    user can modify the Library and then relink to produce a modified
-    executable containing the modified Library.  (It is understood
-    that the user who changes the contents of definitions files in the
-    Library will not necessarily be able to recompile the application
-    to use the modified definitions.)
-
-    b) Use a suitable shared library mechanism for linking with the
-    Library.  A suitable mechanism is one that (1) uses at run time a
-    copy of the library already present on the user's computer system,
-    rather than copying library functions into the executable, and (2)
-    will operate properly with a modified version of the library, if
-    the user installs one, as long as the modified version is
-    interface-compatible with the version that the work was made with.
-
-    c) Accompany the work with a written offer, valid for at
-    least three years, to give the same user the materials
-    specified in Subsection 6a, above, for a charge no more
-    than the cost of performing this distribution.
-
-    d) If distribution of the work is made by offering access to copy
-    from a designated place, offer equivalent access to copy the above
-    specified materials from the same place.
-
-    e) Verify that the user has already received a copy of these
-    materials or that you have already sent this user a copy.
-
-  For an executable, the required form of the "work that uses the
-Library" must include any data and utility programs needed for
-reproducing the executable from it.  However, as a special exception,
-the materials to be distributed need not include anything that is
-normally distributed (in either source or binary form) with the major
-components (compiler, kernel, and so on) of the operating system on
-which the executable runs, unless that component itself accompanies
-the executable.
-
-  It may happen that this requirement contradicts the license
-restrictions of other proprietary libraries that do not normally
-accompany the operating system.  Such a contradiction means you cannot
-use both them and the Library together in an executable that you
-distribute.
-
-  7. You may place library facilities that are a work based on the
-Library side-by-side in a single library together with other library
-facilities not covered by this License, and distribute such a combined
-library, provided that the separate distribution of the work based on
-the Library and of the other library facilities is otherwise
-permitted, and provided that you do these two things:
-
-    a) Accompany the combined library with a copy of the same work
-    based on the Library, uncombined with any other library
-    facilities.  This must be distributed under the terms of the
-    Sections above.
-
-    b) Give prominent notice with the combined library of the fact
-    that part of it is a work based on the Library, and explaining
-    where to find the accompanying uncombined form of the same work.
-
-  8. You may not copy, modify, sublicense, link with, or distribute
-the Library except as expressly provided under this License.  Any
-attempt otherwise to copy, modify, sublicense, link with, or
-distribute the Library is void, and will automatically terminate your
-rights under this License.  However, parties who have received copies,
-or rights, from you under this License will not have their licenses
-terminated so long as such parties remain in full compliance.
-
-  9. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Library or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Library (or any work based on the
-Library), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Library or works based on it.
-
-  10. Each time you redistribute the Library (or any work based on the
-Library), the recipient automatically receives a license from the
-original licensor to copy, distribute, link with or modify the Library
-subject to these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties with
-this License.
-
-  11. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Library at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Library by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Library.
-
-If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply,
-and the section as a whole is intended to apply in other circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  12. If the distribution and/or use of the Library is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Library under this License may add
-an explicit geographical distribution limitation excluding those countries,
-so that distribution is permitted only in or among countries not thus
-excluded.  In such case, this License incorporates the limitation as if
-written in the body of this License.
-
-  13. The Free Software Foundation may publish revised and/or new
-versions of the Lesser General Public License from time to time.
-Such new versions will be similar in spirit to the present version,
-but may differ in detail to address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Library
-specifies a version number of this License which applies to it and
-"any later version", you have the option of following the terms and
-conditions either of that version or of any later version published by
-the Free Software Foundation.  If the Library does not specify a
-license version number, you may choose any version ever published by
-the Free Software Foundation.
-
-  14. If you wish to incorporate parts of the Library into other free
-programs whose distribution conditions are incompatible with these,
-write to the author to ask for permission.  For software which is
-copyrighted by the Free Software Foundation, write to the Free
-Software Foundation; we sometimes make exceptions for this.  Our
-decision will be guided by the two goals of preserving the free status
-of all derivatives of our free software and of promoting the sharing
-and reuse of software generally.
-
-			    NO WARRANTY
-
-  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
-WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
-EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
-OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
-KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
-LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
-THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
-WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
-AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
-FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
-CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
-LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
-RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
-SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGES.
-
-		     END OF TERMS AND CONDITIONS
-
-           How to Apply These Terms to Your New Libraries
-
-  If you develop a new library, and you want it to be of the greatest
-possible use to the public, we recommend making it free software that
-everyone can redistribute and change.  You can do so by permitting
-redistribution under these terms (or, alternatively, under the terms of the
-ordinary General Public License).
-
-  To apply these terms, attach the following notices to the library.  It is
-safest to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least the
-"copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the library's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    This library is free software; you can redistribute it and/or
-    modify it under the terms of the GNU Lesser General Public
-    License as published by the Free Software Foundation; either
-    version 2.1 of the License, or (at your option) any later version.
-
-    This library is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this library; if not, write to the Free Software
-    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-Also add information on how to contact you by electronic and paper mail.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the library, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the
-  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
-
-  <signature of Ty Coon>, 1 April 1990
-  Ty Coon, President of Vice
-
-That's all there is to it!
-
-
diff --git a/tools/findbugs/src/xsl/default.xsl b/tools/findbugs/src/xsl/default.xsl
deleted file mode 100644
index e8f30d4..0000000
--- a/tools/findbugs/src/xsl/default.xsl
+++ /dev/null
@@ -1,376 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-  FindBugs - Find bugs in Java programs
-  Copyright (C) 2004,2005 University of Maryland
-  Copyright (C) 2005, Chris Nappin
-  
-  This library is free software; you can redistribute it and/or
-  modify it under the terms of the GNU Lesser General Public
-  License as published by the Free Software Foundation; either
-  version 2.1 of the License, or (at your option) any later version.
-  
-  This library is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-  Lesser General Public License for more details.
-  
-  You should have received a copy of the GNU Lesser General Public
-  License along with this library; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
--->
-
-<!--
-  A simple XSLT stylesheet to transform FindBugs XML results
-  annotated with messages into HTML.
-
-  If you want to experiment with modifying this stylesheet,
-  or write your own, you need to generate XML output from FindBugs
-  using a special option which lets it know to include
-  human-readable messages in the XML.  Invoke the findbugs script
-  as follows:
-
-    findbugs -textui -xml:withMessages -project myProject.fb > results.xml
-
-  Then you can use your favorite XSLT implementation to transform
-  the XML output into HTML. (But don't use xsltproc. It generates well-nigh
-  unreadable output, and generates incorrect output for the
-  <script> element.)
-
-  Authors:
-  David Hovemeyer
-  Chris Nappin (summary table)
--->
-
-<xsl:stylesheet
-	version="1.0"
-	xmlns="http://www.w3.org/1999/xhtml"
-	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-
-<xsl:output
-	method="xml"
-	indent="yes"
-	omit-xml-declaration="yes"
-	standalone="yes"
-    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
-	doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
-	encoding="UTF-8"/>
-
-<xsl:variable name="literalNbsp">&amp;nbsp;</xsl:variable>
-
-<!--xsl:key name="bug-category-key" match="/BugCollection/BugInstance" use="@category"/-->
-
-<xsl:variable name="bugTableHeader">
-	<tr class="tableheader">
-		<th align="left">Code</th>
-		<th align="left">Warning</th>
-	</tr>
-</xsl:variable>
-
-<xsl:template match="/">
-	<html>
-	<head>
-		<title>FindBugs Report</title>
-		<style type="text/css">
-		.tablerow0 {
-			background: #EEEEEE;
-		}
-
-		.tablerow1 {
-			background: white;
-		}
-
-		.detailrow0 {
-			background: #EEEEEE;
-		}
-
-		.detailrow1 {
-			background: white;
-		}
-
-		.tableheader {
-			background: #b9b9fe;
-			font-size: larger;
-		}
-
-		.tablerow0:hover, .tablerow1:hover {
-			background: #aaffaa;
-		}
-
-		.priority-1 {
-		    color: red;
-		    font-weight: bold;
-		}
-		.priority-2 {
-		    color: orange;
-		    font-weight: bold;
-		}
-		.priority-3 {
-		    color: green;
-		    font-weight: bold;
-		}
-		.priority-4 {
-		    color: blue;
-		    font-weight: bold;
-		}
-		</style>
-		<script type="text/javascript">
-			function toggleRow(elid) {
-				if (document.getElementById) {
-					element = document.getElementById(elid);
-					if (element) {
-						if (element.style.display == 'none') {
-							element.style.display = 'block';
-							//window.status = 'Toggle on!';
-						} else {
-							element.style.display = 'none';
-							//window.status = 'Toggle off!';
-						}
-					}
-				}
-			}
-		</script>
-	</head>
-
-	<xsl:variable name="unique-catkey" select="/BugCollection/BugCategory/@category"/>
-	<!--xsl:variable name="unique-catkey" select="/BugCollection/BugInstance[generate-id() = generate-id(key('bug-category-key',@category))]/@category"/-->
-
-	<body>
-
-		<h1><a href="http://findbugs.sourceforge.net">FindBugs</a> Report</h1>
-
-	<h2>Project Information</h2>	
-	<xsl:apply-templates select="/BugCollection/Project"/>
-
-	<h2>Metrics</h2>
-	<xsl:apply-templates select="/BugCollection/FindBugsSummary"/>
-
-	<h2>Contents</h2>
-	<ul>
-		<xsl:for-each select="$unique-catkey">
-			<xsl:sort select="." order="ascending"/>
-			<xsl:variable name="catkey" select="."/>
-			<xsl:variable name="catdesc" select="/BugCollection/BugCategory[@category=$catkey]/Description"/>
-			
-			<li><a href="#Warnings_{$catkey}"><xsl:value-of select="$catdesc"/> Warnings</a></li>
-		</xsl:for-each>
-
-		<li><a href="#Details">Details</a></li>
-	</ul>
-
-	<h1>Summary</h1>
-	<table width="500" cellpadding="5" cellspacing="2">
-	    <tr class="tableheader">
-			<th align="left">Warning Type</th>
-			<th align="right">Number</th>
-		</tr>
-
-		<xsl:for-each select="$unique-catkey">
-			<xsl:sort select="." order="ascending"/>
-			<xsl:variable name="catkey" select="."/>
-			<xsl:variable name="catdesc" select="/BugCollection/BugCategory[@category=$catkey]/Description"/>
-			<xsl:variable name="styleclass">
-				<xsl:choose><xsl:when test="position() mod 2 = 1">tablerow0</xsl:when>
-					<xsl:otherwise>tablerow1</xsl:otherwise>
-				</xsl:choose>
-			</xsl:variable>
-			
-		<tr class="{$styleclass}">
-			<td><a href="#Warnings_{$catkey}"><xsl:value-of select="$catdesc"/> Warnings</a></td>
-			<td align="right"><xsl:value-of select="count(/BugCollection/BugInstance[(@category=$catkey) and not(@last)])"/></td>
-		</tr>
-		</xsl:for-each>
-
-		<xsl:variable name="styleclass">
-			<xsl:choose><xsl:when test="count($unique-catkey) mod 2 = 0">tablerow0</xsl:when>
-				<xsl:otherwise>tablerow1</xsl:otherwise>
-			</xsl:choose>
-		</xsl:variable>
-		<tr class="{$styleclass}">
-		    <td><b>Total</b></td>
-		    <td align="right"><b><xsl:value-of select="count(/BugCollection/BugInstance[not(@last)])"/></b></td>
-		</tr>
-	</table>
-
-	<h1>Warnings</h1>
-
-	<p>Click on a warning row to see full context information.</p>
-
-	<xsl:for-each select="$unique-catkey">
-		<xsl:sort select="." order="ascending"/>
-		<xsl:variable name="catkey" select="."/>
-		<xsl:variable name="catdesc" select="/BugCollection/BugCategory[@category=$catkey]/Description"/>
-			
-		<xsl:call-template name="generateWarningTable">
-			<xsl:with-param name="warningSet" select="/BugCollection/BugInstance[(@category=$catkey) and not(@last)]"/>
-			<xsl:with-param name="sectionTitle"><xsl:value-of select="$catdesc"/> Warnings</xsl:with-param>
-			<xsl:with-param name="sectionId">Warnings_<xsl:value-of select="$catkey"/></xsl:with-param>
-		</xsl:call-template>
-	</xsl:for-each>
-
-	<h1><a name="Details">Details</a></h1>
-
-	<xsl:apply-templates select="/BugCollection/BugPattern">
-		<xsl:sort select="@abbrev"/>
-		<xsl:sort select="ShortDescription"/>
-	</xsl:apply-templates>
-
-	</body>
-	</html>
-</xsl:template>
-
-<xsl:template match="Project">
-	<p>Project: 
-		<xsl:choose>
-			<xsl:when test='string-length(/BugCollection/Project/@projectName)>0'><xsl:value-of select="/BugCollection/Project/@projectName" /></xsl:when>
-			<xsl:otherwise><xsl:value-of select="/BugCollection/Project/@filename" /></xsl:otherwise>
-		</xsl:choose>
-	</p>
-	<p>FindBugs version: <xsl:value-of select="/BugCollection/@version"/></p>
-	
-	<p>Code analyzed:</p>
-	<ul>
-		<xsl:for-each select="./Jar">
-			<li><xsl:value-of select="text()"/></li>
-		</xsl:for-each>
-	</ul>
-	<p><br/><br/></p>
-</xsl:template>
-
-<xsl:template match="BugInstance[not(@last)]">
-	<xsl:variable name="warningId"><xsl:value-of select="generate-id()"/></xsl:variable>
-
-	<tr class="tablerow{position() mod 2}" onclick="toggleRow('{$warningId}');">
-
-	<td>
-	    <span><xsl:attribute name="class">priority-<xsl:value-of select="@priority"/></xsl:attribute>
-	        <xsl:value-of select="@abbrev"/>
-        </span>
-	</td>
-
-	<td>
-	<xsl:value-of select="LongMessage"/>
-	</td>
-
-	</tr>
-
-	<!-- Add bug annotation elements: Class, Method, Field, SourceLine, Field -->
-	<tr class="detailrow{position() mod 2}">
-		<td/>
-		<td>
-			<p id="{$warningId}" style="display: none;">
-				<a href="#{@type}">Bug type <xsl:value-of select="@type"/> (click for details)</a>
-				<xsl:for-each select="./*/Message">
-					<br/><xsl:value-of select="text()" disable-output-escaping="no"/>
-				</xsl:for-each>
-			</p>
-		</td>
-	</tr>
-</xsl:template>
-
-<xsl:template match="BugPattern">
-	<h2><a name="{@type}"><xsl:value-of select="@type"/>: <xsl:value-of select="ShortDescription"/></a></h2>
-	<xsl:value-of select="Details" disable-output-escaping="yes"/>
-</xsl:template>
-
-<xsl:template name="generateWarningTable">
-	<xsl:param name="warningSet"/>
-	<xsl:param name="sectionTitle"/>
-	<xsl:param name="sectionId"/>
-
-	<h2><a name="{$sectionId}"><xsl:value-of select="$sectionTitle"/></a></h2>
-	<table class="warningtable" width="100%" cellspacing="0">
-		<xsl:copy-of select="$bugTableHeader"/>
-		<xsl:apply-templates select="$warningSet">
-			<xsl:sort select="@abbrev"/>
-			<xsl:sort select="Class/@classname"/>
-		</xsl:apply-templates>
-	</table>
-</xsl:template>
-
-<xsl:template match="FindBugsSummary">
-    <xsl:variable name="kloc" select="@total_size div 1000.0"/>
-    <xsl:variable name="format" select="'#######0.00'"/>
-
-	<p><xsl:value-of select="@total_size"/> lines of code analyzed,
-	in <xsl:value-of select="@total_classes"/> classes, 
-	in <xsl:value-of select="@num_packages"/> packages.</p>
-	<table width="500" cellpadding="5" cellspacing="2">
-	    <tr class="tableheader">
-			<th align="left">Metric</th>
-			<th align="right">Total</th>
-			<th align="right">Density*</th>
-		</tr>
-		<tr class="tablerow0">
-			<td>High Priority Warnings</td>
-			<td align="right"><xsl:value-of select="@priority_1"/></td>
-			<td align="right">
-			    <xsl:choose>
-                    <xsl:when test= "number($kloc) &gt; 0.0 and number(@priority_1) &gt; 0.0">
-        			    <xsl:value-of select="format-number(@priority_1 div $kloc, $format)"/>
-                    </xsl:when>
-                    <xsl:otherwise>
-        			    <xsl:value-of select="format-number(0.0, $format)"/>
-                    </xsl:otherwise>
-			    </xsl:choose>
-			</td>
-		</tr>
-		<tr class="tablerow1">
-			<td>Medium Priority Warnings</td>
-			<td align="right"><xsl:value-of select="@priority_2"/></td>
-			<td align="right">
-			    <xsl:choose>
-                    <xsl:when test= "number($kloc) &gt; 0.0 and number(@priority_2) &gt; 0.0">
-        			    <xsl:value-of select="format-number(@priority_2 div $kloc, $format)"/>
-                    </xsl:when>
-                    <xsl:otherwise>
-        			    <xsl:value-of select="format-number(0.0, $format)"/>
-                    </xsl:otherwise>
-			    </xsl:choose>
-			</td>
-		</tr>
-
-    <xsl:choose>
-		<xsl:when test="@priority_3">
-			<tr class="tablerow1">
-				<td>Low Priority Warnings</td>
-				<td align="right"><xsl:value-of select="@priority_3"/></td>
-				<td align="right">
-                    <xsl:choose>
-                        <xsl:when test= "number($kloc) &gt; 0.0 and number(@priority_3) &gt; 0.0">
-        			        <xsl:value-of select="format-number(@priority_3 div $kloc, $format)"/>
-                        </xsl:when>
-                        <xsl:otherwise>
-        		            <xsl:value-of select="format-number(0.0, $format)"/>
-                        </xsl:otherwise>
-			        </xsl:choose>
-				</td>
-			</tr>
-			<xsl:variable name="totalClass" select="tablerow0"/>
-		</xsl:when>
-		<xsl:otherwise>
-		    <xsl:variable name="totalClass" select="tablerow1"/>
-		</xsl:otherwise>
-	</xsl:choose>
-
-		<tr class="$totalClass">
-			<td><b>Total Warnings</b></td>
-			<td align="right"><b><xsl:value-of select="@total_bugs"/></b></td>
-            <xsl:choose>
-                <xsl:when test="number($kloc) &gt; 0.0">
-  					<td align="right"><b><xsl:value-of select="format-number(@total_bugs div $kloc, $format)"/></b></td>
-                </xsl:when>
-                <xsl:otherwise>
-					<td align="right"><b><xsl:value-of select="format-number(0.0, $format)"/></b></td>
-                </xsl:otherwise>
-	        </xsl:choose>
-		</tr>
-	</table>
-	<p><i>(* Defects per Thousand lines of non-commenting source statements)</i></p>
-	<p><br/><br/></p>
-
-</xsl:template>
-
-</xsl:stylesheet>
-
-<!-- vim:set ts=4: -->
diff --git a/tools/findbugs/src/xsl/fancy-hist.xsl b/tools/findbugs/src/xsl/fancy-hist.xsl
deleted file mode 100644
index faa1b81..0000000
--- a/tools/findbugs/src/xsl/fancy-hist.xsl
+++ /dev/null
@@ -1,1197 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>

-<!--

-  Copyright (C) 2005, 2006 Etienne Giraudy, InStranet Inc

-  Copyright (C) 2005, 2007 Etienne Giraudy

-

-  This library is free software; you can redistribute it and/or

-  modify it under the terms of the GNU Lesser General Public

-  License as published by the Free Software Foundation; either

-  version 2.1 of the License, or (at your option) any later version.

-

-  This library is distributed in the hope that it will be useful,

-  but WITHOUT ANY WARRANTY; without even the implied warranty of

-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU

-  Lesser General Public License for more details.

-

-  You should have received a copy of the GNU Lesser General Public

-  License along with this library; if not, write to the Free Software

-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

--->

-

-<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" >

-   <xsl:output

-         method="xml" indent="yes"

-         doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"

-         doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"

-         encoding="UTF-8"/>

-

-   <xsl:variable name="apos" select="&quot;'&quot;"/>

-   <xsl:key name="lbc-code-key"        match="/BugCollection/BugInstance" use="concat(@category,@abbrev)" />

-   <xsl:key name="lbc-bug-key"         match="/BugCollection/BugInstance" use="concat(@category,@abbrev,@type)" />

-   <xsl:key name="lbp-class-b-t"  match="/BugCollection/BugInstance" use="concat(Class/@classname,@type)" />

-

-<xsl:template match="/" >

-

-<html>

-   <head>

-      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>

-      <title>

-         FindBugs (<xsl:value-of select="/BugCollection/@version" />) 

-         Analysis for 

-         <xsl:choose>

-            <xsl:when test='string-length(/BugCollection/Project/@projectName)>0'><xsl:value-of select="/BugCollection/Project/@projectName" /></xsl:when>

-            <xsl:otherwise><xsl:value-of select="/BugCollection/Project/@filename" /></xsl:otherwise>

-         </xsl:choose>

-      </title>

-      <style type="text/css">

-         html, body, div, form {

-            margin:0px;

-            padding:0px;

-         }

-         body {

-            padding:3px;

-         }

-         a, a:link , a:active, a:visited, a:hover {

-            text-decoration: none; color: black;

-         }

-         #navlist {

-                 padding: 3px 0;

-                 margin-left: 0;

-                 border-bottom: 1px solid #778;

-                 font: bold 12px Verdana, sans-serif;

-         }

-         #navlist li {

-                 list-style: none;

-                 margin: 0;

-                 display: inline;

-         }

-         #navlist li a {

-                 padding: 3px 0.5em;

-                 margin-left: 3px;

-                 border: 1px solid #778;

-                 border-bottom: none;

-                 background: #DDE;

-                 text-decoration: none;

-         }

-         #navlist li a:link { color: #448; }

-         #navlist li a:visited { color: #667; }

-         #navlist li a:hover {

-                 color: #000;

-                 background: #AAE;

-                 border-color: #227;

-         }

-         #navlist li a.current {

-                 background: white;

-                 border-bottom: 1px solid white;

-         }

-         #filterWrapper {

-            margin-bottom:5px;

-         }

-         #displayWrapper {

-            margin-top:5px;

-         }

-         .message {

-            background:#BBBBBB;

-           border: 1px solid #778;

-         }

-         .displayContainer {

-            border:1px solid #555555;

-            margin-top:3px;

-            padding: 3px;

-            display:none;

-         }

-         #summaryContainer table,

-         #historyContainer table {

-            border:1px solid black;

-         }

-         #summaryContainer th,

-         #historyContainer th {

-            background: #aaaaaa;

-            color: white;

-         }

-         #summaryContainer th, #summaryContainer td,

-         #historyContainer th, #historyContainer td {

-            padding: 2px 4px 2px 4px;

-         }

-         .summary-name {

-            background: #eeeeee;

-            text-align:left;

-         }

-         .summary-size {

-            background: #eeeeee;

-            text-align:center;

-         }

-         .summary-priority-all {

-            background: #dddddd;

-            text-align:center;

-         }

-         .summary-priority-1 {

-            background: red;

-            text-align:center;

-         }

-         .summary-priority-2 {

-            background: orange;

-            text-align:center;

-         }

-         .summary-priority-3 {

-            background: green;

-            text-align:center;

-         }

-         .summary-priority-4 {

-            background: blue;

-            text-align:center;

-         }

-

-         .bugList-level1 {

-            margin-bottom:5px;

-         }

-         .bugList-level1, .bugList-level2, .bugList-level3, .bugList-level4 {

-            background-color: #ffffff;

-            margin-left:15px;

-            padding-left:10px;

-         }

-         .bugList-level1-label, .bugList-level2-label, .bugList-level3-label, .bugList-level4-label {

-            background-color: #bbbbbb;

-            border: 1px solid black;

-            padding: 1px 3px 1px 3px;;

-         }

-         .bugList-level2-label, .bugList-level3-label, .bugList-level4-label {

-            border-width: 0px 1px 1px 1px;

-         }

-         .bugList-level4-label {

-            background-color: #ffffff;

-            border: 0px 0px 1px 0px;

-         }

-         .bugList-level4 {

-            border: 0px 1px 1px 1px;

-         }

-

-         .bugList-level4-inner {

-            border-style: solid;

-            border-color: black;

-            border-width: 0px 1px 1px 1px;

-         }

-         .b-r {

-            font-size: 10pt; font-weight: bold; padding: 0 0 0 60px;

-         }

-         .b-d {

-            font-weight: normal; background: #ccccc0;

-            padding: 0 5px 0 5px; margin: 0px;

-         }

-         .b-1 {

-            background: red; height: 0.5em; width: 1em;

-            margin-right: 0.5em;

-         }

-         .b-2 {

-            background: orange; height: 0.5em; width: 1em;

-            margin-right: 0.5em;

-         }

-         .b-3 {

-            background: green; height: 0.5em; width: 1em;

-            margin-right: 0.5em;

-         }

-         .b-4 {

-            background: blue; height: 0.5em; width: 1em;

-            margin-right: 0.5em;

-         }

-

-      </style>

-      <script type='text/javascript'><xsl:text disable-output-escaping='yes'><![CDATA[

-         var menus            = new Array('summary','info','history','listByCategories','listByPackages');

-         var selectedMenuId   = "summary";

-         var selectedVersion  = -1;

-         var selectedPriority = 4;

-         var lastVersion      = 0;

-         var includeFixedIntroducedBugs;

-

-         var bPackageNamesPopulated = false;

-

-         var filterContainerId              = "filterWrapper";

-         var historyControlContainerId      = "historyControlWrapper";

-         var messageContainerId             = "messageContainer";

-         var summaryContainerId             = "summaryContainer";

-         var infoContainerId                = "infoContainer";

-         var historyContainerId             = "historyContainer";

-         var listByCategoriesContainerId    = "listByCategoriesContainer";

-         var listByPackagesContainerId      = "listByPackagesContainer";

-

-         var idxCatKey = 0; var idxCatDescr = 1; var idxBugCat = 1;

-         var idxCodeKey = 0; var idxCodeDescr = 1; var idxBugCode = 2;

-         var idxPatternKey = 2; var idxPatternDescr = 3; var idxBugPattern = 3;

-         var idxBugKey = 0; var idxBugDescr = 6;

-         var idxBugClass = 6, idxBugPackage = 7;

-

-         // main init function

-         function init() {

-            loadFilter();

-            selectMenu(selectedMenuId);

-            lastVersion = versions.length - 1;

-         }

-

-         // menu callback function

-         function selectMenu(menuId) {

-            document.getElementById(selectedMenuId).className="none";

-            document.getElementById(menuId).className="current";

-            if (menuId!=selectedMenuId) {

-               hideMenu(selectedMenuId);

-               selectedMenuId = menuId;

-            }

-            if (menuId=="summary")           displaySummary();

-            if (menuId=="info")              displayInfo();

-            if (menuId=="history")           displayHistory();

-            if (menuId=="listByCategories")  displayListByCategories();

-            if (menuId=="listByPackages")    displayListByPackages();

-         }

-

-         // display filter

-         function loadFilter() {

-            var versionsBox = document.findbugsForm.versions.options;

-            versionsBox[0] = new Option(" -- All Versions -- ","-1");

-            versionsBox.selectedIndex = 0;

-            if (versions.length>=1) {

-               for (x=0; versions.length>1 && x<versions.length; x++) {

-                  versionsBox[x+1] = new Option(" Bugs at release: "+versions[versions.length-x-1][1], versions[versions.length-x-1][0]);

-               }

-            }

-

-            var prioritiesBox = document.findbugsForm.priorities.options;

-            prioritiesBox[0] = new Option(" -- All priorities -- ", "4");

-            prioritiesBox[1] = new Option(" P1 bugs ", "1");

-            prioritiesBox[2] = new Option(" P1 and P2 bugs ", "2");

-            prioritiesBox[3] = new Option(" P1, P2 and P3 bugs ", "3");

-         }

-

-         // display a message

-         function displayMessage(msg) {

-            var container = document.getElementById(messageContainerId);

-            container.innerHTML = "<div class='message'>"+msg+"</div>";

-         }

-

-         // reset displayed message

-         function resetMessage() {

-            var container = document.getElementById(messageContainerId);

-            container.innerHTML = "";

-         }

-

-         function hideMenu(menuId) {

-            var container = menuId+"Container";

-            document.getElementById(container).style.display="none";

-         }

-

-         // filter callback function

-         function filter() {

-            var versionsBox = document.findbugsForm.versions.options;

-            selectedVersion = versionsBox[versionsBox.selectedIndex].value;

-

-            var prioritiesBox = document.findbugsForm.priorities.options;

-            selectedPriority = prioritiesBox[prioritiesBox.selectedIndex].value;

-

-            selectMenu(selectedMenuId);

-         }

-

-         // includeFixedBugs callback function

-         function includeFixedIntroducedBugsInHistory() {

-            includeFixedIntroducedBugs =

-              document.findbugsHistoryControlForm.includeFixedIntroducedBugs.checked;

-

-            selectMenu(selectedMenuId);

-         }

-

-         // display summary tab

-         function displaySummary() {

-            resetMessage();

-            hide(filterContainerId);

-            hide(historyControlContainerId);

-            var container = document.getElementById(summaryContainerId);

-            container.style.display="block";

-         }

-

-         // display info tab

-         function displayInfo() {

-            resetMessage();

-            hide(filterContainerId);

-            hide(historyControlContainerId);

-            var container = document.getElementById(infoContainerId);

-            container.style.display="block";

-         }

-

-         // display history tab

-         function displayHistory() {

-            displayMessage("Loading history...");

-            hide(filterContainerId);

-            show(historyControlContainerId);

-            var container = document.getElementById(historyContainerId);

-            var content = "";

-            var i=0;

-            var p = [0,0,0,0,0];

-            var f = [0,0,0,0,0];

-

-            content += "<table><tr><th>Release</th><th>Bugs</th><th>Bugs p1</th><th>Bugs p2</th><th>Bugs p3</th><th>Bugs Exp.</th></tr>";

-

-            var aSpan   = "<span title='Bugs introduced in this release that have not been fixed.'>";

-            var fSpan   = "<span title='Bugs fixed in this release.'>";

-            var fiSpan  = "<span title='Bugs introduced in this release that were fixed in later releases.'>";

-            var afiSpan = "<span title='Total number of bugs introduced in this release.'>";

-            var eSpan   = "</span>";

-

-            if(includeFixedIntroducedBugs) {

-                for (i=(versions.length-1); i>0; i--) {

-                    v = countBugsVersion(i, 4);

-                    t = countTotalBugsVersion(i);

-                    o = countFixedButActiveBugsVersion(i);

-                    f = countFixedBugsInVersion(i);

-                    fi = countFixedBugsIntroducedInVersion(i);

-                    content += "<tr>";

-                    content += "<td class='summary-name'>" + versions[i][1] + "</td>";

-                    content += "<td class='summary-priority-all'> " + (t[0] + o[0]) + " (+" + afiSpan + (v[0] + fi[0]) + eSpan +

-                      " [" + aSpan + v[0] + eSpan + " / " + fiSpan + fi[0] + eSpan + "] " + eSpan + " / -" + fSpan + f[0] + eSpan + ") </td>";

-                    content += "<td class='summary-priority-1'> " + (t[1] + o[1]) + " (+" + afiSpan + (v[1] + fi[1]) + eSpan +

-                      " [" + aSpan + v[1] + eSpan + " / " + fiSpan + fi[1] + eSpan + "] " + eSpan + " / -" + fSpan + f[1] + eSpan + ") </td>";

-                    content += "<td class='summary-priority-2'> " + (t[2] + o[2]) + " (+" + afiSpan + (v[2] + fi[2]) + eSpan +

-                      " [" + aSpan + v[2] + eSpan + " / " + fiSpan + fi[2] + eSpan + "] " + eSpan + " / -" + fSpan + f[2] + eSpan + ") </td>";

-                    content += "<td class='summary-priority-3'> " + (t[3] + o[3]) + " (+" + afiSpan + (v[3] + fi[3]) + eSpan +

-                      " [" + aSpan + v[3] + eSpan + " / " + fiSpan + fi[3] + eSpan + "] " + eSpan + " / -" + fSpan + f[3] + eSpan + ") </td>";

-                    content += "<td class='summary-priority-4'> " + (t[4] + o[4]) + " (+" + afiSpan + (v[4] + fi[4]) + eSpan +

-                      " [" + aSpan + v[4] + eSpan + " / " + fiSpan + fi[4] + eSpan + "] " + eSpan + " / -" + fSpan + f[4] + eSpan + ") </td>";

-                    content += "</tr>";

-                }

-            } else {

-                for (i=(versions.length-1); i>0; i--) {

-                    v = countBugsVersion(i, 4);

-                    t = countTotalBugsVersion(i);

-                    o = countFixedButActiveBugsVersion(i);

-                    f = countFixedBugsInVersion(i);

-                    content += "<tr>";

-                    content += "<td class='summary-name'>" + versions[i][1] + "</td>";

-                    content += "<td class='summary-priority-all'> " + (t[0] + o[0]) + " (+" + aSpan + v[0] + eSpan + " / -" + fSpan + f[0] + eSpan + ") </td>";

-                    content += "<td class='summary-priority-1'  > " + (t[1] + o[1]) + " (+" + aSpan + v[1] + eSpan + " / -" + fSpan + f[1] + eSpan + ") </td>";

-                    content += "<td class='summary-priority-2'  > " + (t[2] + o[2]) + " (+" + aSpan + v[2] + eSpan + " / -" + fSpan + f[2] + eSpan + ") </td>";

-                    content += "<td class='summary-priority-3'  > " + (t[3] + o[3]) + " (+" + aSpan + v[3] + eSpan + " / -" + fSpan + f[3] + eSpan + ") </td>";

-                    content += "<td class='summary-priority-4'  > " + (t[4] + o[4]) + " (+" + aSpan + v[4] + eSpan + " / -" + fSpan + f[4] + eSpan + ") </td>";

-                    content += "</tr>";

-                }

-            }

-

-            t = countTotalBugsVersion(0);

-            o = countFixedButActiveBugsVersion(0);

-            content += "<tr>";

-            content += "<td class='summary-name'>" + versions[0][1] + "</td>";

-            content += "<td class='summary-priority-all'> " + (t[0] + o[0]) + " </td>";

-            content += "<td class='summary-priority-1'  > " + (t[1] + o[1]) + " </td>";

-            content += "<td class='summary-priority-2'  > " + (t[2] + o[2]) + " </td>";

-            content += "<td class='summary-priority-3'  > " + (t[3] + o[3]) + " </td>";

-            content += "<td class='summary-priority-4'  > " + (t[4] + o[4]) + " </td>";

-            content += "</tr>";

-

-            content += "</table>";

-            container.innerHTML = content;

-            container.style.display="block";

-            resetMessage();

-         }

-

-         // display list by cat tab

-         function displayListByCategories() {

-            hide(historyControlContainerId);

-            show(filterContainerId);

-            var container = document.getElementById(listByCategoriesContainerId);

-            container.innerHTML = "";

-            container.style.display="block";

-            displayMessage("Loading stats (categories)...");

-            container.innerHTML = displayLevel1("lbc", "Stats by Bug Categories");

-            resetMessage();

-         }

-

-         // display list by package tab

-         function displayListByPackages() {

-            hide(historyControlContainerId);

-            show(filterContainerId);

-            var container = document.getElementById(listByPackagesContainerId);

-            container.style.display="block";

-            if (!bPackageNamesPopulated) {

-               displayMessage("Initializing...");

-               populatePackageNames();

-            }

-            displayMessage("Loading stats (packages)...");

-            container.innerHTML = displayLevel1("lbp", "Stats by Bug Package");

-            resetMessage();

-         }

-

-         // callback function for list item click

-         function toggleList(listType, containerId, id1, id2, id3) {

-            var container = document.getElementById(containerId);

-            if (container.style.display=="block") {

-               container.style.display="none";

-            } else {

-               if (listType=="lbc") {

-                  if (id1.length>0 && id2.length==0 && id3.length==0) {

-                     displayCategoriesCodes(containerId, id1);

-                  } else if (id1.length>0 && id2.length>0 && id3.length==0) {

-                     displayCategoriesCodesPatterns(containerId, id1, id2);

-                  } else if (id1.length>0 && id2.length>0 && id3.length>0) {

-                     displayCategoriesCodesPatternsBugs(containerId, id1, id2, id3);

-                  } else {

-                     // ???

-                  }

-               } else if (listType=="lbp") {

-                  if (id1.length>0 && id2.length==0 && id3.length==0) {

-                     displayPackageCodes(containerId, id1);

-                  } else if (id1.length>0 && id2.length>0 && id3.length==0) {

-                     displayPackageClassPatterns(containerId, id1, id2);

-                  } else if (id1.length>0 && id2.length>0 && id3.length>0) {

-                     displayPackageClassPatternsBugs(containerId, id1, id2, id3);

-                  } else {

-                     // ???

-                  }

-               } else {

-                  // ????

-               }

-            }

-         }

-

-         // list by categories, display bug cat>codes

-         function displayCategoriesCodes(containerId, catId) {

-            displayMessage("Loading stats (codes)...");

-            var container = document.getElementById(containerId);

-            container.style.display="block";

-            if (container.innerHTML=="Loading..." || container.innerHTML=="") {

-               container.innerHTML = displayLevel2("lbc", catId);

-            }

-            resetMessage();

-         }

-

-         // list by categories, display bug package>codes

-         function displayPackageCodes(containerId, packageId) {

-            displayMessage("Loading stats (codes)...");

-            var container = document.getElementById(containerId);

-            container.style.display="block";

-            if (container.innerHTML=="Loading..." || container.innerHTML=="") {

-               container.innerHTML = displayLevel2("lbp", packageId);

-            }

-            resetMessage();

-         }

-

-         // list by categories, display bug cat>codes>patterns

-         function displayCategoriesCodesPatterns(containerId, catId, codeId) {

-            displayMessage("Loading stats (patterns)...");

-            var container = document.getElementById(containerId);

-            container.style.display="block";

-            if (container.innerHTML=="Loading..." || container.innerHTML=="")

-               container.innerHTML = displayLevel3("lbc", catId, codeId);

-            resetMessage();

-         }

-

-         // list by package, display bug package>class>patterns

-         function displayPackageClassPatterns(containerId, packageId, classId) {

-            displayMessage("Loading stats (patterns)...");

-            var container = document.getElementById(containerId);

-            container.style.display="block";

-            if (container.innerHTML=="Loading..." || container.innerHTML=="")

-               container.innerHTML = displayLevel3("lbp", packageId, classId);

-            resetMessage();

-         }

-

-         // list by categories, display bug cat>codes>patterns>bugs

-         function displayCategoriesCodesPatternsBugs(containerId, catId, codeId, patternId) {

-            displayMessage("Loading stats (bugs)...");

-            var container = document.getElementById(containerId);

-            container.style.display="block";

-            if (container.innerHTML=="Loading..." || container.innerHTML=="")

-               container.innerHTML = displayLevel4("lbc", catId, codeId, patternId);

-            resetMessage();

-         }

-

-         // list by package, display bug package>class>patterns>bugs

-         function displayPackageClassPatternsBugs(containerId, packageId, classId, patternId) {

-            displayMessage("Loading stats (bugs)...");

-            var container = document.getElementById(containerId);

-            container.style.display="block";

-            if (container.innerHTML=="Loading..." || container.innerHTML=="")

-               container.innerHTML = displayLevel4("lbp",  packageId, classId, patternId);

-            resetMessage();

-         }

-

-         // generate level 1 list

-         function displayLevel1(list, title) {

-            var content = "";

-            var content2 = "";

-

-            content += "<h3>"+title+"</h3>";

-            content += getPriorityLegend();

-            content2 += "<div class='bugList'>";

-

-            var id = "";

-            var containerId = "";

-            var subContainerId = "";

-            var prefixSub = "";

-            var prefixId = "";

-            var p = [0,0,0,0,0];

-            var numberOfBugs = 0;

-            var label = "";

-            var max = 0;

-            if (list=="lbc") {

-               max = categories.length;

-            } else if (list=="lbp") {

-               max = packageStats.length;

-            }

-

-            for (var x=0; x<max -1; x++) {

-               if (list=="lbp" && packageStats[x][1]=="0") continue;

-

-               if (list=="lbc") {

-                  id = categories[x][idxCatKey];

-                  label = categories[x][idxCatDescr];

-                  containerId = "categories-" + id;

-                  subContainerId = "cat-"+id;

-                  p = countBugsCat(selectedVersion, selectedPriority, id, idxBugCat);

-               }

-               if (list=="lbp") {

-                  id = packageStats[x][0];

-                  label = packageStats[x][0];

-                  containerId = "packages-" + id;

-                  subContainerId = "package-"+id;

-                  p = countBugsPackage(selectedVersion, selectedPriority, id, idxBugPackage);

-               }

-

-               subContainerId = prefixSub+id;

-

-               var total = p[1]+p[2]+p[3]+p[4];

-               if (total > 0) {

-                  content2 += addListItem( 1, containerId, label, total, p, subContainerId,

-                                          "toggleList('" + list + "', '" + subContainerId + "', '"+ id + "', '', '')"

-                                          );

-               }

-               numberOfBugs += total;

-            }

-            content2 += "</div>";

-            content += "<h4>Total number of bugs";

-            if (selectedVersion!=-1) {

-               content += " (introduced in release " + versions[selectedVersion][1] +")";

-            }

-            content += ": "+numberOfBugs+"</h4>";

-            return content+content2;

-         }

-

-         // generate level 2 list

-        function displayLevel2(list, id1) {

-            var content = "";

-            var code = "";

-            var containerId = "";

-            var subContainerId = "";

-            var p = [0,0,0,0,0];

-            var max = 0;

-            var id2 = "";

-            if (list=="lbc") {

-               max = codes.length;

-            } else if (list=="lbp") {

-               max = classStats.length;

-            }

-

-            for (var x=0; x<max -1; x++) {

-               if (list=="lbp" && classStats[x][3]=="0") continue;

-

-               if (list=="lbc") {

-                  id2 = codes[x][idxCodeKey];

-                  label = codes[x][idxCodeDescr];

-                  containerId = "codes-"+id1;

-                  subContainerId = "cat-" + id1 + "-code-" + id2;

-                  p = countBugsCode(selectedVersion, selectedPriority, id1, idxBugCat, id2, idxBugCode);

-               }

-               if (list=="lbp") {

-                  id2 = classStats[x][0];

-                  label = classStats[x][0];

-                  containerId = "packages-"+id1;

-                  subContainerId = "package-" + id1 + "-class-" + id2;

-                  p = countBugsClass(selectedVersion, selectedPriority, id1, idxBugPackage, id2, idxBugClass);

-               }

-

-               var total = p[1]+p[2]+p[3]+p[4];

-               if (total > 0) {

-                  content += addListItem( 2, containerId, label, total, p, subContainerId,

-                                          "toggleList('"+ list + "', '" + subContainerId + "', '"+ id1 + "', '"+ id2 + "', '')"

-                                          );

-               }

-            }

-            return content;

-         }

-

-         // generate level 3 list

-        function displayLevel3(list, id1, id2) {

-            var content = "";

-            var containerId = "";

-            var subContainerId = "";

-            var p = [0,0,0,0,0];

-            var max = 0;

-            var label = "";

-            var id3 = "";

-

-            if (list=="lbc") {

-               max = patterns.length;

-            } else if (list=="lbp") {

-               max = patterns.length;

-            }

-

-            for (var x=0; x<max -1; x++) {

-               //if (list=="lbp" && (patterns[x][0]!=id1 || patterns[x][1]!=id2)) continue;

-               //if (list=="lbp" && classStats[x][3]=="0") continue;

-

-               if (list=="lbc") {

-                  id3 = patterns[x][idxPatternKey];;

-                  label = patterns[x][idxPatternDescr];

-                  containerId = "patterns-"+id1;

-                  subContainerId = "cat-" + id1 + "-code-" + id2 + "-pattern-" + id3;

-                  p = countBugsPattern(selectedVersion, selectedPriority, id1, idxBugCat, id2, idxBugCode, id3, idxBugPattern);

-               }

-               if (list=="lbp") {

-                  id3 = patterns[x][idxPatternKey];;

-                  label = patterns[x][idxPatternDescr];

-                  containerId = "classpatterns-"+id1;

-                  subContainerId = "package-" + id1 + "-class-" + id2 + "-pattern-" + id3;

-                  p = countBugsClassPattern(selectedVersion, selectedPriority, id2, idxBugClass, id3, idxBugPattern);

-               }

-

-               var total = p[1]+p[2]+p[3]+p[4];

-               if (total > 0) {

-                  content += addListItem( 3, containerId, label, total, p, subContainerId,

-                                          "toggleList('" + list + "', '" + subContainerId + "', '"+ id1 + "', '"+ id2 + "', '"+ id3 + "')"

-                                          );

-               }

-            }

-            return content;

-         }

-

-         // generate level 4 list

-        function displayLevel4(list, id1, id2, id3) {

-            var content = "";

-            var bug = "";

-            var bugP = 0;

-            var containerId = "";

-            var subContainerId = "";

-            var bugId = "";

-            var label = "";

-            var p = [0,0,0,0,0];

-            for (var x=0; x<bugs.length -1; x++) {

-               bug = bugs[x];

-               if (list=="lbc") {

-                  if ( bug[1]!=id1 || bug[2]!=id2 || bug[3]!=id3 ) continue;

-                  if ( selectedVersion!=-1

-                     && selectedVersion!=bug[5]) continue;

-                  if ( selectedPriority!=4

-                     && selectedPriority<bug[4]) continue;

-

-                  subContainerId = "cat-" + id1 + "-code-" + id2 + "-pattern-" + id3 + "-bug-" + bug[0];

-               }

-               if (list=="lbp") {

-                  if ( bug[7]!=id1 || bug[6]!=id2 || bug[3]!=id3 ) continue;

-                  if ( selectedVersion!=-1

-                     && selectedVersion!=bug[5]) continue;

-                  if ( selectedPriority!=4

-                     && selectedPriority<bug[4]) continue;

-

-                  subContainerId = "package-" + id1 + "-class-" + id2 + "-pattern-" + id3 + "-bug-" + bug[0];

-               }

-

-               bugId = "b-uid-" + bug[0];

-               label = bug[idxBugDescr];

-               containerId = "bugs-"+bugId;

-               bugP = bug[4];

-               p[bugP]++;

-               var total = p[1]+p[2]+p[3]+p[4];

-               if (total > 0) {

-                  content += addBug(   4, containerId, label, bugP, bug[5], subContainerId,

-                                       "showbug('" + bugId + "', '" + subContainerId + "', '"+id3+"')");

-               }

-            }

-            return content;

-         }

-

-

-         function addListItem(level, id, label, total, p, subId, onclick) {

-            var content = "";

-

-            content += "<div class='bugList-level"+level+"' >";

-            content += "<div class='bugList-level"+level+"-label' id='"+id+"' >";

-            content += "<a href='' onclick=\"" + onclick + ";return false;\" ";

-            content += ">";

-            content += "<strong>"+label+"</strong>";

-            content += " "+total+" bugs";

-            if (selectedPriority>1)

-               content += " <em>("+p[1];

-            if (selectedPriority>=2)

-               content += "/"+p[2];

-            if (selectedPriority>=3)

-               content += "/"+p[3];

-            if (selectedPriority>=4)

-               content += "/"+p[4];

-            if (selectedPriority>1)

-               content += ")</em>";

-            content += "</a>";

-            content += "</div>";

-            content += "<div class='bugList-level"+level+"-inner' id='"+subId+"' style='display:none;'>Loading...</div>";

-            content += "</div>";

-            return content;

-         }

-

-         function addBug( level, id, label, p, version, subId, onclick) {

-            var content = "";

-

-            content += "<div class='bugList-level" + level + "' id='" + id + "'>";

-            content += "<div class='bugList-level" + level + "-label' id='" + id + "'>";

-            content += "<span class='b-" + p + "'>&nbsp;&nbsp;&nbsp;</span>";

-            content += "<a href='' onclick=\"" + onclick + ";return false;\">";

-            if (version==lastVersion) {

-               content += "<span style='color:red;font-weight:bold;'>NEW!</span> ";

-            }

-            content += "<strong>" + label + "</strong>";

-            if (version==0) {

-               content += " <em>since release first historized release</em>";

-            } else {

-               content += " <em>since release " + versions[version][1] + "</em>";

-            }

-            content += "</a>";

-            content += "</div>";

-            content += "<div class='bugList-level" + level + "-inner' id='" + subId + "' style='display:none;'>Loading...</div>";

-            content += "</div>";

-            return content;

-         }

-

-         function countBugsVersion(version, priority) {

-            return countBugs(version, priority, "", -1, "", -1, "", -1, "", -1, "", -1);

-         }

-

-         function countBugsCat(version, priority, cat, idxCat) {

-            return countBugs(version, priority, cat, idxCat, "", -1, "", -1, "", -1, "", -1);

-         }

-

-         function countBugsPackage(version, priority, packageId, idxPackage) {

-            return countBugs(version, priority, "", -1, "", -1, "", -1, packageId, idxPackage, "", -1);

-         }

-

-         function countBugsCode(version, priority, cat, idxCat, code, idxCode) {

-            return countBugs(version, priority, cat, idxCat, code, idxCode, "", -1, "", -1, "", -1);

-         }

-

-         function countBugsPattern(version, priority, cat, idxCat, code, idxCode, packageId, idxPattern) {

-            return countBugs(version, priority, cat, idxCat, code, idxCode, packageId, idxPattern, "", -1, "", -1);

-         }

-

-         function countBugsClass(version, priority, id1, idxBugPackage, id2, idxBugClass) {

-            return countBugs(version, priority, "", -1, "", -1, "", -1, id1, idxBugPackage, id2, idxBugClass);

-         }

-

-         function countBugsClassPattern(version, priority, id2, idxBugClass, id3, idxBugPattern) {

-            return countBugs(version, priority, "", -1, "", -1, id3, idxBugPattern, "", -1, id2, idxBugClass);

-         }

-

-         function countBugs(version, priority, cat, idxCat, code, idxCode, pattern, idxPattern, packageId, idxPackage, classId, idxClass) {

-            var count = [0,0,0,0,0];

-            var last=1000000;

-            for (var x=0; x<bugs.length-1; x++) {

-               var bug = bugs[x];

-

-               var bugCat = bug[idxCat];

-               var bugP = bug[4];

-               var bugCode = bug[idxCode];

-               var bugPattern = bug[idxPattern];

-

-               if (     (version==-1    || version==bug[5])

-                     && (priority==4    || priority>=bug[4])

-                     && (idxCat==-1     || bug[idxCat]==cat)

-                     && (idxCode==-1    || bug[idxCode]==code)

-                     && (idxPattern==-1 || bug[idxPattern]==pattern)

-                     && (idxPackage==-1 || bug[idxPackage]==packageId)

-                     && (idxClass==-1   || bug[idxClass]==classId)

-                     ) {

-                  count[bug[4]]++;

-               }

-            }

-            count[0] = count[1] + count[2] + count[3] + count[4];

-            return count;

-         }

-

-         function countFixedBugsInVersion(version) {

-            var count = [0,0,0,0,0];

-            var last=1000000;

-            for (var x=0; x<fixedBugs.length-1; x++) {

-               var bug = fixedBugs[x];

-

-               var bugP = bug[4];

-

-               if ( version==-1 || version==(bug[6]+1)) {

-                  count[bug[4]]++;

-               }

-            }

-            count[0] = count[1] + count[2] + count[3] + count[4];

-            return count;

-         }

-

-         function countFixedBugsIntroducedInVersion(version) {

-            var count = [0,0,0,0,0];

-            var last=1000000;

-            for (var x=0; x<fixedBugs.length-1; x++) {

-               var bug = fixedBugs[x];

-

-               var bugP = bug[4];

-

-               if ( version==-1 || version==(bug[5])) {

-                  count[bug[4]]++;

-               }

-            }

-            count[0] = count[1] + count[2] + count[3] + count[4];

-            return count;

-         }

-

-         function countFixedButActiveBugsVersion(version) {

-            var count = [0,0,0,0,0];

-            var last=1000000;

-            for (var x=0; x<fixedBugs.length-1; x++) {

-               var bug = fixedBugs[x];

-

-               var bugP = bug[4];

-

-               if ( version==-1 || (version >=bug[5] && version<=bug[6]) ) {

-                  count[bug[4]]++;

-               }

-            }

-            count[0] = count[1] + count[2] + count[3] + count[4];

-            return count;

-         }

-

-         function countTotalBugsVersion(version) {

-            var count = [0,0,0,0,0];

-            var last=1000000;

-            for (var x=0; x<bugs.length-1; x++) {

-               var bug = bugs[x];

-

-               var bugP = bug[4];

-

-               if (version==-1 || version>=bug[5]) {

-                  count[bug[4]]++;

-               }

-            }

-            count[0] = count[1] + count[2] + count[3] + count[4];

-            return count;

-         }

-

-         function getPriorityLegend() {

-            var content = "";

-            content += "<h5><span class='b-1'>&nbsp;&nbsp;&nbsp;</span> P1 ";

-            content += "<span class='b-2'>&nbsp;&nbsp;&nbsp;</span> P2 ";

-            content += "<span class='b-3'>&nbsp;&nbsp;&nbsp;</span> P3 ";

-            content += "<span class='b-4'>&nbsp;&nbsp;&nbsp;</span> Exp ";

-            content += "</h5>";

-            return content;

-         }

-

-         function populatePackageNames() {

-            for (var i=0; i<bugs.length; i++) {

-               var classId = bugs[i][6];

-               var idx = classId.lastIndexOf('.');

-               var packageId = "";

-

-               if (idx>0) {

-                  packageId = classId.substring(0, idx);

-               }

-

-               bugs[i][7] = packageId;

-            }

-         }

-

-         function showbug(bugId, containerId, patternId) {

-            var bugplaceholder   = document.getElementById(containerId);

-            var bug              = document.getElementById(bugId);

-

-            if ( bugplaceholder==null) {

-               alert(buguid+'-ph-'+list+' - '+buguid+' - bugplaceholder==null');

-               return;

-            }

-            if ( bug==null) {

-               alert(buguid+'-ph-'+list+' - '+buguid+' - bug==null');

-               return;

-            }

-

-            var newBug = bug.innerHTML;

-            var pattern = document.getElementById('tip-'+patternId).innerHTML;

-            toggle(containerId);

-            bugplaceholder.innerHTML = newBug + pattern;

-         }

-         function toggle(foo) {

-            if( document.getElementById(foo).style.display == "none") {

-               show(foo);

-            } else {

-               if( document.getElementById(foo).style.display == "block") {

-                  hide(foo);

-               } else {

-                  show(foo);

-               }

-            }

-         }

-         function show(foo) {

-            document.getElementById(foo).style.display="block";

-         }

-         function hide(foo) {

-            document.getElementById(foo).style.display="none";

-         }

-

-         window.onload = function(){

-            init();

-         };

-      ]]></xsl:text></script>

-      <script type='text/javascript'>

-         // versions fields: release id, release label

-         var versions = new Array(

-            <xsl:for-each select="/BugCollection/History/AppVersion">

-               [ "<xsl:value-of select="@sequence" />", "<xsl:value-of select="@release" />" ],

-            </xsl:for-each>

-               [ "<xsl:value-of select="/BugCollection/@sequence" />", "<xsl:value-of select="/BugCollection/@release" />" ]

-            );

-

-         // categories fields: category id, category label

-         var categories = new Array(

-            <xsl:for-each select="/BugCollection/BugCategory">

-               <xsl:sort select="@category" order="ascending" />

-               [ "<xsl:value-of select="@category" />", "<xsl:value-of select="Description" />" ],

-            </xsl:for-each>

-               [ "", "" ]

-            );

-

-         // codes fields: code id, code label

-         var codes = new Array(

-            <xsl:for-each select="/BugCollection/BugCode">

-               <xsl:sort select="@abbrev" order="ascending" />

-               [ "<xsl:value-of select="@abbrev" />", "<xsl:value-of select="Description" />" ],

-            </xsl:for-each>

-               [ "", "" ]

-            );

-

-         // patterns fields: category id, code id, pattern id, pattern label

-         var patterns = new Array(

-            <xsl:for-each select="/BugCollection/BugPattern">

-               <xsl:sort select="@type" order="ascending" />

-               [ "<xsl:value-of select="@category" />", "<xsl:value-of select="@abbrev" />", "<xsl:value-of select="@type" />", "<xsl:value-of select="translate(ShortDescription, '&quot;', $apos)" />" ],

-

-            </xsl:for-each>

-               [ "", "", "", "" ]

-            );

-

-         // class stats fields: class name, package name, isInterface, total bugs, bugs p1, bugs p2, bugs p3, bugs p4

-         var classStats = new Array(

-            <xsl:for-each select="/BugCollection/FindBugsSummary/PackageStats/ClassStats">

-               <xsl:sort select="@class" order="ascending" />

-               [ "<xsl:value-of select="@class" />", "<xsl:value-of select="../@package" />", "<xsl:value-of select="@interface" />", "<xsl:value-of select="@bugs" />", "<xsl:value-of select="@priority_1" />", "<xsl:value-of select="@priority_2" />", "<xsl:value-of select="@priority_3" />", "<xsl:value-of select="@priority_4" />" ],

-            </xsl:for-each>

-               [ "", "", "", "", "", "", "", "" ]

-            );

-

-         // package stats fields: package name, total bugs, bugs p1, bugs p2, bugs p3, bugs p4

-         var packageStats = new Array(

-            <xsl:for-each select="/BugCollection/FindBugsSummary/PackageStats">

-               <xsl:sort select="@package" order="ascending" />

-               [ "<xsl:value-of select="@package" />", "<xsl:value-of select="@total_bugs" />", "<xsl:value-of select="@priority_1" />", "<xsl:value-of select="@priority_2" />", "<xsl:value-of select="@priority_3" />", "<xsl:value-of select="@priority_4" />" ],

-            </xsl:for-each>

-               [ "", "", "", "", "", "" ]

-            );

-

-

-         // bugs fields: bug id, category id, code id, pattern id, priority, release id, class name, packagename (populated by javascript)

-         var bugs = new Array(

-            <xsl:for-each select="/BugCollection/BugInstance[string-length(@last)=0]">

-

-               [ "<xsl:value-of select="@instanceHash" />-<xsl:value-of select="@instanceOccurrenceNum" />",

-                 "<xsl:value-of select="@category" />",

-                 "<xsl:value-of select="@abbrev" />",

-                 "<xsl:value-of select="@type" />",

-                 <xsl:value-of select="@priority" />,

-                 <xsl:choose><xsl:when test='string-length(@first)=0'>0</xsl:when><xsl:otherwise><xsl:value-of select="@first" /></xsl:otherwise></xsl:choose>,

-                 "<xsl:value-of select="Class/@classname" />",

-                 ""],

-            </xsl:for-each>

-               [ "", "", "", "", 0, 0, "", "" ]

-            );

-

-         // bugs fields: bug id, category id, code id, pattern id, priority, first release id, fixed release id, class name

-         var fixedBugs = new Array(

-            <xsl:for-each select="/BugCollection/BugInstance[string-length(@last)>0]">

-

-               [ "<xsl:value-of select="@instanceHash" />-<xsl:value-of select="@instanceOccurrenceNum" />",

-                 "<xsl:value-of select="@category" />",

-                 "<xsl:value-of select="@abbrev" />",

-                 "<xsl:value-of select="@type" />",

-                 <xsl:value-of select="@priority" />,

-                 <xsl:choose><xsl:when test='string-length(@first)=0'>0</xsl:when><xsl:otherwise><xsl:value-of select="@first" /></xsl:otherwise></xsl:choose>,

-                 <xsl:choose><xsl:when test='string-length(@last)>0'><xsl:value-of select="@last" /></xsl:when><xsl:otherwise>-42</xsl:otherwise></xsl:choose>,

-                 "<xsl:value-of select="Class/@classname" />" ],

-            </xsl:for-each>

-               [ "", "", "", "", 0, 0, 0, "" ]

-            );

-

-      </script>

-   </head>

-   <body>

-      <h3>

-         <a href="http://findbugs.sourceforge.net">FindBugs</a> (<xsl:value-of select="/BugCollection/@version" />) 

-         Analysis for 

-         <xsl:choose>

-            <xsl:when test='string-length(/BugCollection/Project/@projectName)>0'><xsl:value-of select="/BugCollection/Project/@projectName" /></xsl:when>

-            <xsl:otherwise><xsl:value-of select="/BugCollection/Project/@filename" /></xsl:otherwise>

-         </xsl:choose>

-      </h3>

-

-      <div id='menuWrapper' style=''>

-         <div id="navcontainer">

-            <ul id="navlist">

-               <li><a id='summary'           class="current" href="#" onclick="selectMenu('summary'); return false;"         >Summary</a></li>

-               <li><a id='history'           class="none"    href="#" onclick="selectMenu('history'); return false;"         >History</a></li>

-               <li><a id='listByCategories'  class="none"    href="#" onclick="selectMenu('listByCategories'); return false;">Browse By Categories</a></li>

-               <li><a id='listByPackages'    class="none"    href="#" onclick="selectMenu('listByPackages'); return false;"  >Browse by Packages</a></li>

-               <li><a id='info'              class="none"    href="#" onclick="selectMenu('info'); return false;"            >Info</a></li>

-            </ul>

-         </div>

-      </div>

-

-      <div id='displayWrapper'>

-

-      <div style='height:25px;'>

-         <div id='messageContainer' style='float:right;'>

-            Computing data...

-         </div>

-         <div id='filterWrapper' style='display:none;'>

-            <form name='findbugsForm'>

-               <div id='filterContainer' >

-                  <select name='versions' onchange='filter()'>

-                     <option value="loading">Loading filter...</option>

-                  </select>

-                  <select name='priorities' onchange='filter()'>

-                     <option value="loading">Loading filter...</option>

-                  </select>

-               </div>

-            </form>

-         </div>

-         <div id='historyControlWrapper' style='display:none;'>

-           <form name="findbugsHistoryControlForm">

-             <div id='historyControlContainer'>

-               <input type='checkbox' name='includeFixedIntroducedBugs'

-                      value='checked' alt='Include fixed introduced bugs.'

-                      onclick='includeFixedIntroducedBugsInHistory()' />

-               Include counts of introduced bugs that were fixed in later releases.

-             </div>

-           </form>

-         </div>

-      </div>

-         <div id='summaryContainer'          class='displayContainer'>

-            <h3>Package Summary</h3>

-            <table>

-               <tr>

-                  <th>Package</th>

-                  <th>Code Size</th>

-                  <th>Bugs</th>

-                  <th>Bugs p1</th>

-                  <th>Bugs p2</th>

-                  <th>Bugs p3</th>

-                  <th>Bugs Exp.</th>

-               </tr>

-               <tr>

-                  <td class='summary-name'>

-                     Overall

-                     (<xsl:value-of select="/BugCollection/FindBugsSummary/@num_packages" /> packages),

-                     (<xsl:value-of select="/BugCollection/FindBugsSummary/@total_classes" /> classes)

-                  </td>

-                  <td class='summary-size'><xsl:value-of select="/BugCollection/FindBugsSummary/@total_size" /></td>

-                  <td class='summary-priority-all'><xsl:value-of select="/BugCollection/FindBugsSummary/@total_bugs" /></td>

-                  <td class='summary-priority-1'><xsl:value-of select="/BugCollection/FindBugsSummary/@priority_1" /></td>

-                  <td class='summary-priority-2'><xsl:value-of select="/BugCollection/FindBugsSummary/@priority_2" /></td>

-                  <td class='summary-priority-3'><xsl:value-of select="/BugCollection/FindBugsSummary/@priority_3" /></td>

-                  <td class='summary-priority-4'><xsl:value-of select="/BugCollection/FindBugsSummary/@priority_4" /></td>

-               </tr>

-               <xsl:for-each select="/BugCollection/FindBugsSummary/PackageStats">

-                  <xsl:sort select="@package" order="ascending" />

-                  <xsl:if test="@total_bugs!='0'" >

-                     <tr>

-                        <td class='summary-name'><xsl:value-of select="@package" /></td>

-                        <td class='summary-size'><xsl:value-of select="@total_size" /></td>

-                        <td class='summary-priority-all'><xsl:value-of select="@total_bugs" /></td>

-                        <td class='summary-priority-1'><xsl:value-of select="@priority_1" /></td>

-                        <td class='summary-priority-2'><xsl:value-of select="@priority_2" /></td>

-                        <td class='summary-priority-3'><xsl:value-of select="@priority_3" /></td>

-                        <td class='summary-priority-4'><xsl:value-of select="@priority_4" /></td>

-                     </tr>

-                  </xsl:if>

-               </xsl:for-each>

-            </table>

-         </div>

-

-         <div id='infoContainer'             class='displayContainer'>

-            <div id='analyzed-files'>

-               <h3>Analyzed Files:</h3>

-               <ul>

-                  <xsl:for-each select="/BugCollection/Project/Jar">

-                     <li><xsl:apply-templates /></li>

-                  </xsl:for-each>

-               </ul>

-            </div>

-            <div id='used-libraries'>

-               <h3>Used Libraries:</h3>

-               <ul>

-                  <xsl:for-each select="/BugCollection/Project/AuxClasspathEntry">

-                     <li><xsl:apply-templates /></li>

-                  </xsl:for-each>

-                  <xsl:if test="count(/BugCollection/Project/AuxClasspathEntry)=0" >

-                     <li>None</li>

-                  </xsl:if>

-               </ul>

-            </div>

-            <div id='analysis-error'>

-               <h3>Analysis Errors:</h3>

-               <ul>

-                  <xsl:variable name="error-count"

-                                select="count(/BugCollection/Errors/MissingClass)" />

-                  <xsl:if test="$error-count=0" >

-                     <li>None</li>

-                  </xsl:if>

-                  <xsl:if test="$error-count>0" >

-                     <li>Missing ref classes for analysis:

-                        <ul>

-                           <xsl:for-each select="/BugCollection/Errors/MissingClass">

-                              <li><xsl:apply-templates /></li>

-                           </xsl:for-each>

-                        </ul>

-                     </li>

-                  </xsl:if>

-               </ul>

-            </div>

-         </div>

-         <div id='historyContainer'          class='displayContainer'>Loading...</div>

-         <div id='listByCategoriesContainer' class='displayContainer'>Loading...</div>

-         <div id='listByPackagesContainer'   class='displayContainer'>Loading...</div>

-      </div>

-

-      <div id='bug-collection' style='display:none;'>

-      <!-- advanced tooltips -->

-      <xsl:for-each select="/BugCollection/BugPattern">

-         <xsl:variable name="b-t"><xsl:value-of select="@type" /></xsl:variable>

-         <div>

-            <xsl:attribute name="id">tip-<xsl:value-of select="$b-t" /></xsl:attribute>

-            <xsl:attribute name="class">tip</xsl:attribute>

-            <xsl:value-of select="/BugCollection/BugPattern[@type=$b-t]/Details" disable-output-escaping="yes" />

-         </div>

-      </xsl:for-each>

-

-      <!-- bug descriptions - hidden -->

-      <xsl:for-each select="/BugCollection/BugInstance[not(@last)]">

-            <div style="display:none;" class='bug'>

-               <xsl:attribute name="id">b-uid-<xsl:value-of select="@instanceHash" />-<xsl:value-of select="@instanceOccurrenceNum" /></xsl:attribute>

-               <xsl:for-each select="*/Message">

-                  <div class="b-r"><xsl:apply-templates /></div>

-               </xsl:for-each>

-               <div class="b-d">

-                  <xsl:value-of select="LongMessage" disable-output-escaping="no" />

-               </div>

-            </div>

-      </xsl:for-each>

-      </div>

-   </body>

-</html>

-</xsl:template>

-

-

-</xsl:transform>

-

diff --git a/tools/findbugs/src/xsl/fancy.xsl b/tools/findbugs/src/xsl/fancy.xsl
deleted file mode 100644
index c6f43c5..0000000
--- a/tools/findbugs/src/xsl/fancy.xsl
+++ /dev/null
@@ -1,848 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!--
-  Copyright (C) 2005, 2006 Etienne Giraudy, InStranet Inc
-
-  This library is free software; you can redistribute it and/or
-  modify it under the terms of the GNU Lesser General Public
-  License as published by the Free Software Foundation; either
-  version 2.1 of the License, or (at your option) any later version.
-
-  This library is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-  Lesser General Public License for more details.
-
-  You should have received a copy of the GNU Lesser General Public
-  License along with this library; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
--->
-
-<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" >
-   <xsl:output
-         method="xml" indent="yes"
-         doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
-         doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
-         encoding="UTF-8"/>
-
-    <!--
-        Parameter for specifying HTMLized sources location; if current dir, use "./"
-        If not passed, no links to sources are generated.
-        because of back-compatibility reasons.
-        The source filename should be package.class.java.html
-        The source can have line no anchors like #11 -->
-    <xsl:param name="htmlsrcpath"></xsl:param>
-
-   <!--xsl:key name="lbc-category-key"    match="/BugCollection/BugInstance" use="@category" /-->
-   <xsl:key name="lbc-code-key"        match="/BugCollection/BugInstance" use="concat(@category,@abbrev)" />
-   <xsl:key name="lbc-bug-key"         match="/BugCollection/BugInstance" use="concat(@category,@abbrev,@type)" />
-   <xsl:key name="lbp-class-b-t"  match="/BugCollection/BugInstance" use="concat(Class/@classname,@type)" />
-
-<xsl:template match="/" >
-
-<html>
-   <head>
-      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-      <title>
-        FindBugs (<xsl:value-of select="/BugCollection/@version" />)
-         Analysis for
-         <xsl:choose>
-            <xsl:when test='string-length(/BugCollection/Project/@projectName)>0'><xsl:value-of select="/BugCollection/Project/@projectName" /></xsl:when>
-            <xsl:otherwise><xsl:value-of select="/BugCollection/Project/@filename" /></xsl:otherwise>
-         </xsl:choose>
-      </title>
-      <script type="text/javascript">
-         function show(foo) {
-            document.getElementById(foo).style.display="block";
-         }
-         function hide(foo) {
-            document.getElementById(foo).style.display="none";
-         }
-         function toggle(foo) {
-            if( document.getElementById(foo).style.display == "none") {
-               show(foo);
-            } else {
-               if( document.getElementById(foo).style.display == "block") {
-                  hide(foo);
-               } else {
-                  show(foo);
-               }
-            }
-         }
-
-         function showmenu(foo) {
-            if( document.getElementById(foo).style.display == "none") {
-               hide("bug-summary");
-               document.getElementById("bug-summary-tab").className="menu-tab";
-               hide("analysis-data");
-               document.getElementById("analysis-data-tab").className="menu-tab";
-               //hide("list-by-b-t");
-               //document.getElementById("list-by-b-t-tab").className="menu-tab";
-               hide("list-by-package");
-               document.getElementById("list-by-package-tab").className="menu-tab";
-               hide("list-by-category");
-               document.getElementById("list-by-category-tab").className="menu-tab";
-               document.getElementById(foo+"-tab").className="menu-tab-selected";
-               show(foo);
-
-            }
-            // else menu already selected!
-         }
-         function showbug(buguid, list) {
-            var bugplaceholder   = document.getElementById(buguid+'-ph-'+list);
-            var bug              = document.getElementById(buguid);
-
-            if ( bugplaceholder==null) {
-               alert(buguid+'-ph-'+list+' - '+buguid+' - bugplaceholder==null');
-               return;
-            }
-            if ( bug==null) {
-               alert(buguid+'-ph-'+list+' - '+buguid+' - bug==null');
-               return;
-            }
-
-            var oldBug = bugplaceholder.innerHTML;
-            var newBug = bug.innerHTML;
-            //alert(oldBug);
-            //alert(newBug);
-            toggle(buguid+'-ph-'+list);
-            bugplaceholder.innerHTML = newBug;
-         }
-      </script>
-      <script type='text/javascript'><xsl:text disable-output-escaping='yes'>
-     /* <![CDATA[ */
-         // Extended Tooltip Javascript
-         // copyright 9th August 2002, 3rd July 2005
-         // by Stephen Chapman, Felgall Pty Ltd
-
-         // permission is granted to use this javascript provided that the below code is not altered
-         var DH = 0;var an = 0;var al = 0;var ai = 0;if (document.getElementById) {ai = 1; DH = 1;}else {if (document.all) {al = 1; DH = 1;} else { browserVersion = parseInt(navigator.appVersion); if (navigator.appName.indexOf('Netscape') != -1) if (browserVersion == 4) {an = 1; DH = 1;}}}
-         function fd(oi, wS) {if (ai) return wS ? document.getElementById(oi).style:document.getElementById(oi); if (al) return wS ? document.all[oi].style: document.all[oi]; if (an) return document.layers[oi];}
-         function pw() {return window.innerWidth != null? window.innerWidth: document.body.clientWidth != null? document.body.clientWidth:null;}
-         function mouseX(evt) {if (evt.pageX) return evt.pageX; else if (evt.clientX)return evt.clientX + (document.documentElement.scrollLeft ?  document.documentElement.scrollLeft : document.body.scrollLeft); else return null;}
-         function mouseY(evt) {if (evt.pageY) return evt.pageY; else if (evt.clientY)return evt.clientY + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop); else return null;}
-         function popUp(evt,oi) {if (DH) {var wp = pw(); ds = fd(oi,1); dm = fd(oi,0); st = ds.visibility; if (dm.offsetWidth) ew = dm.offsetWidth; else if (dm.clip.width) ew = dm.clip.width; if (st == "visible" || st == "show") { ds.visibility = "hidden"; } else {tv = mouseY(evt) + 20; lv = mouseX(evt) - (ew/4); if (lv < 2) lv = 2; else if (lv + ew > wp) lv -= ew/2; if (!an) {lv += 'px';tv += 'px';} ds.left = lv; ds.top = tv; ds.visibility = "visible";}}}
-  /* ]]> */
-</xsl:text></script>
-      <style type='text/css'>
-         html, body {
-            background-color: #ffffff;
-         }
-         a, a:link , a:active, a:visited, a:hover {
-            text-decoration: none; color: black;
-         }
-         .b-r a {
-            text-decoration: underline; color: blue;
-         }
-         div, span {
-            vertical-align: top;
-         }
-         p {
-            margin: 0px;
-         }
-         h1 {
-            /*font-size: 14pt;*/
-            color: red;
-         }
-         #menu {
-            margin-bottom: 10px;
-         }
-         #menu ul {
-            margin-left: 0;
-            padding-left: 0;
-            display: inline;
-         }
-         #menu ul li {
-            margin-left: 0;
-            margin-bottom: 0;
-            padding: 2px 15px 5px;
-            border: 1px solid #000;
-            list-style: none;
-            display: inline;
-         }
-         #menu ul li.here {
-            border-bottom: 1px solid #ffc;
-            list-style: none;
-            display: inline;
-         }
-         .menu-tab {
-            background: white;
-         }
-         .menu-tab:hover {
-            background: grey;
-         }
-         .menu-tab-selected {
-            background: #aaaaaa;
-         }
-         #analysis-data ul {
-            margin-left: 15px;
-         }
-         #analyzed-files, #used-libraries, #analysis-error {
-           margin: 2px;
-           border: 1px black solid;
-           padding: 2px;
-           float: left;
-           overflow:auto;
-         }
-         #analyzed-files {
-           width: 25%;
-         }
-         #used-libraries {
-           width: 25%;
-         }
-         #analysis-error {
-           width: 40%;
-         }
-         div.summary {
-            width:100%;
-            text-align:left;
-         }
-         .summary table {
-            border:1px solid black;
-         }
-         .summary th {
-            background: #aaaaaa;
-            color: white;
-         }
-         .summary th, .summary td {
-            padding: 2px 4px 2px 4px;
-         }
-         .summary-name {
-            background: #eeeeee;
-            text-align:left;
-         }
-         .summary-size {
-            background: #eeeeee;
-            text-align:center;
-         }
-         .summary-ratio {
-            background: #eeeeee;
-            text-align:center;
-         }
-         .summary-priority-all {
-            background: #dddddd;
-            text-align:center;
-         }
-         .summary-priority-1 {
-            background: red;
-            text-align:center;
-         }
-         .summary-priority-2 {
-            background: orange;
-            text-align:center;
-         }
-         .summary-priority-3 {
-            background: green;
-            text-align:center;
-         }
-         .summary-priority-4 {
-            background: blue;
-            text-align:center;
-         }
-         .ob {
-            border: 1px solid black;
-            margin: 10px;
-         }
-         .ob-t {
-            border-bottom: 1px solid #000000; font-size: 12pt; font-weight: bold;
-            background: #cccccc; margin: 0; padding: 0 5px 0 5px;
-         }
-         .t-h {
-            font-weight: normal;
-         }
-         .ib-1, .ib-2 {
-            margin: 0 0 0 10px;
-         }
-         .ib-1-t, .ib-2-t {
-            border-bottom: 1px solid #000000; border-left: 1px solid #000000;
-            margin: 0; padding: 0 5px 0 5px;
-            font-size: 12pt; font-weight: bold; background: #cccccc;
-         }
-         .bb {
-            border-bottom: 1px solid #000000; border-left: 1px solid #000000;
-         }
-         .b-1 {
-            background: red; height: 0.5em; width: 1em;
-            margin-right: 0.5em;
-         }
-         .b-2 {
-            background: orange; height: 0.5em; width: 1em;
-            margin-right: 0.5em;
-         }
-         .b-3 {
-            background: green; height: 0.5em; width: 1em;
-            margin-right: 0.5em;
-         }
-         .b-4 {
-            background: blue; height: 0.5em; width: 1em;
-            margin-right: 0.5em;
-         }
-         .b-t {
-         }
-         .b-r {
-            font-size: 10pt; font-weight: bold; padding: 0 0 0 60px;
-         }
-         .b-d {
-            font-weight: normal; background: #eeeee0;
-            padding: 0 5px 0 5px; margin: 0px;
-         }
-         .bug-placeholder {
-            top:140px;
-            border:1px solid black;
-            display:none;
-         }
-         .tip {
-            border:solid 1px #666666;
-            width:600px;
-            padding:3px;
-            position:absolute;
-            z-index:100;
-            visibility:hidden;
-            color:#333333;
-            top:20px;
-            left:90px;
-            background-color:#ffffcc;
-            layer-background-color:#ffffcc;
-         }
-
-
-      </style>
-   </head>
-   <body>
-   <div id='content'>
-      <h1>
-         FindBugs (<xsl:value-of select="/BugCollection/@version" />)
-         Analysis for
-         <xsl:choose>
-            <xsl:when test='string-length(/BugCollection/Project/@projectName)>0'><xsl:value-of select="/BugCollection/Project/@projectName" /></xsl:when>
-            <xsl:otherwise><xsl:value-of select="/BugCollection/Project/@filename" /></xsl:otherwise>
-         </xsl:choose>
-      </h1>
-      <div id="menu">
-         <ul>
-            <li id='bug-summary-tab' class='menu-tab-selected'>
-               <xsl:attribute name="onclick">showmenu('bug-summary');return false;</xsl:attribute>
-               <a href='' onclick='return false;'>Bug Summary</a>
-            </li>
-            <li id='analysis-data-tab' class='menu-tab'>
-               <xsl:attribute name="onclick">showmenu('analysis-data');return false;</xsl:attribute>
-               <a href='' onclick='return false;'>Analysis Information</a>
-            </li>
-            <li id='list-by-category-tab' class='menu-tab'>
-               <xsl:attribute name="onclick">showmenu('list-by-category');return false;</xsl:attribute>
-               <a href='' onclick='return false;'>List bugs by bug category</a>
-            </li>
-            <li id='list-by-package-tab' class='menu-tab'>
-               <xsl:attribute name="onclick">showmenu('list-by-package');return false;</xsl:attribute>
-               <a href='' onclick='return false;'>List bugs by package</a>
-            </li>
-         </ul>
-      </div>
-      <xsl:call-template name="generateSummary" />
-      <xsl:call-template name="analysis-data" />
-      <xsl:call-template name="list-by-category" />
-      <xsl:call-template name="list-by-package" />
-
-
-      <!-- advanced tooltips -->
-      <xsl:for-each select="/BugCollection/BugPattern">
-         <xsl:variable name="b-t"><xsl:value-of select="@type" /></xsl:variable>
-         <div>
-            <xsl:attribute name="id">tip-<xsl:value-of select="$b-t" /></xsl:attribute>
-            <xsl:attribute name="class">tip</xsl:attribute>
-            <b><xsl:value-of select="@abbrev" /> / <xsl:value-of select="@type" /></b><br/>
-            <xsl:value-of select="/BugCollection/BugPattern[@type=$b-t]/Details" disable-output-escaping="yes" />
-         </div>
-      </xsl:for-each>
-
-      <!-- bug descriptions - hidden -->
-      <xsl:for-each select="/BugCollection/BugInstance[not(@last)]">
-            <div style="display:none;">
-               <xsl:attribute name="id">b-uid-<xsl:value-of select="@instanceHash" />-<xsl:value-of select="@instanceOccurrenceNum" /></xsl:attribute>
-               <xsl:for-each select="*/Message">
-                   <xsl:choose>
-                    <xsl:when test="parent::SourceLine and $htmlsrcpath != '' ">
-                      <div class="b-r"><a>
-                        <xsl:attribute name="href"><xsl:value-of select="$htmlsrcpath"/><xsl:value-of select="../@sourcepath" />.html#<xsl:value-of select="../@start" /></xsl:attribute>
-                        <xsl:apply-templates />
-                      </a></div>
-                    </xsl:when>
-                    <xsl:otherwise>
-                      <div class="b-r"><xsl:apply-templates /></div>
-                    </xsl:otherwise>
-                   </xsl:choose>
-               </xsl:for-each>
-               <div class="b-d">
-                  <xsl:value-of select="LongMessage" disable-output-escaping="no" />
-               </div>
-            </div>
-      </xsl:for-each>
-   </div>
-   <div id='fixedbox'>
-      <div id='bug-placeholder'></div>
-   </div>
-   </body>
-</html>
-</xsl:template>
-
-<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
-<!-- generate summary report from stats -->
-<xsl:template name="generateSummary" >
-<div class='summary' id='bug-summary'>
-   <h2>FindBugs Analysis generated at: <xsl:value-of select="/BugCollection/FindBugsSummary/@timestamp" /></h2>
-   <table>
-      <tr>
-         <th>Package</th>
-         <th>Code Size</th>
-         <th>Bugs</th>
-         <th>High Prio Bugs</th>
-         <th>Medium Prio Bugs</th>
-         <th>Low Prio Bugs</th>
-         <th>Exp. Bugs</th>
-         <th>Ratio</th>
-      </tr>
-      <tr>
-         <td class='summary-name'>
-            Overall
-            (<xsl:value-of select="/BugCollection/FindBugsSummary/@num_packages" /> packages),
-            (<xsl:value-of select="/BugCollection/FindBugsSummary/@total_classes" /> classes)
-         </td>
-         <td class='summary-size'><xsl:value-of select="/BugCollection/FindBugsSummary/@total_size" /></td>
-         <td class='summary-priority-all'><xsl:value-of select="/BugCollection/FindBugsSummary/@total_bugs" /></td>
-         <td class='summary-priority-1'><xsl:value-of select="/BugCollection/FindBugsSummary/@priority_1" /></td>
-         <td class='summary-priority-2'><xsl:value-of select="/BugCollection/FindBugsSummary/@priority_2" /></td>
-         <td class='summary-priority-3'><xsl:value-of select="/BugCollection/FindBugsSummary/@priority_3" /></td>
-         <td class='summary-priority-4'><xsl:value-of select="/BugCollection/FindBugsSummary/@priority_4" /></td>
-         <td class='summary-ratio'></td>
-      </tr>
-      <xsl:for-each select="/BugCollection/FindBugsSummary/PackageStats">
-         <xsl:sort select="@package" />
-         <xsl:if test="@total_bugs!='0'" >
-            <tr>
-               <td class='summary-name'><xsl:value-of select="@package" /></td>
-               <td class='summary-size'><xsl:value-of select="@total_size" /></td>
-               <td class='summary-priority-all'><xsl:value-of select="@total_bugs" /></td>
-               <td class='summary-priority-1'><xsl:value-of select="@priority_1" /></td>
-               <td class='summary-priority-2'><xsl:value-of select="@priority_2" /></td>
-               <td class='summary-priority-3'><xsl:value-of select="@priority_3" /></td>
-               <td class='summary-priority-4'><xsl:value-of select="@priority_4" /></td>
-               <td class='summary-ratio'></td>
-<!--
-               <xsl:for-each select="ClassStats">
-                  <xsl:if test="@bugs!='0'" >
-                  <li>
-                     <xsl:value-of select="@class" /> - total: <xsl:value-of select="@bugs" />
-                  </li>
-                  </xsl:if>
-               </xsl:for-each>
--->
-            </tr>
-         </xsl:if>
-      </xsl:for-each>
-   </table>
-</div>
-</xsl:template>
-
-<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
-<!-- display analysis info -->
-<xsl:template name="analysis-data">
-      <div id='analysis-data' style='display:none;'>
-         <div id='analyzed-files'>
-            <h3>Analyzed Files:</h3>
-            <ul>
-               <xsl:for-each select="/BugCollection/Project/Jar">
-                  <li><xsl:apply-templates /></li>
-               </xsl:for-each>
-            </ul>
-         </div>
-         <div id='used-libraries'>
-            <h3>Used Libraries:</h3>
-            <ul>
-               <xsl:for-each select="/BugCollection/Project/AuxClasspathEntry">
-                  <li><xsl:apply-templates /></li>
-               </xsl:for-each>
-               <xsl:if test="count(/BugCollection/Project/AuxClasspathEntry)=0" >
-                  <li>None</li>
-               </xsl:if>
-            </ul>
-         </div>
-         <div id='analysis-error'>
-            <h3>Analysis Errors:</h3>
-            <ul>
-               <xsl:variable name="error-count"
-                             select="count(/BugCollection/Errors/MissingClass)" />
-               <xsl:if test="$error-count=0" >
-                  <li>None</li>
-               </xsl:if>
-               <xsl:if test="$error-count>0" >
-                  <li>Missing ref classes for analysis:
-                     <ul>
-                        <xsl:for-each select="/BugCollection/Errors/MissingClass">
-                           <li><xsl:apply-templates /></li>
-                        </xsl:for-each>
-                     </ul>
-                  </li>
-               </xsl:if>
-            </ul>
-         </div>
-      </div>
-</xsl:template>
-
-<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
-<!-- show priorities helper -->
-<xsl:template name="helpPriorities">
-   <span>
-      <xsl:attribute name="class">b-1</xsl:attribute>
-      <xsl:text disable-output-escaping="yes">&amp;nbsp;&amp;nbsp;</xsl:text>
-   </span> High Prio
-   <span>
-      <xsl:attribute name="class">b-2</xsl:attribute>
-      <xsl:text disable-output-escaping="yes">&amp;nbsp;&amp;nbsp;</xsl:text>
-   </span> Medium Prio
-   <span>
-      <xsl:attribute name="class">b-3</xsl:attribute>
-      <xsl:text disable-output-escaping="yes">&amp;nbsp;&amp;nbsp;</xsl:text>
-   </span> Low Prio
-   <span>
-      <xsl:attribute name="class">b-4</xsl:attribute>
-      <xsl:text disable-output-escaping="yes">&amp;nbsp;&amp;nbsp;</xsl:text>
-   </span> Exp.
-</xsl:template>
-
-<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
-<!-- display the details of a bug -->
-<xsl:template name="display-bug" >
-   <xsl:param name="b-t"    select="''" />
-   <xsl:param name="bug-id"      select="''" />
-   <xsl:param name="which-list"  select="''" />
-   <div class="bb">
-      <a>
-         <xsl:attribute name="href"></xsl:attribute>
-         <xsl:attribute name="onclick">showbug('b-uid-<xsl:value-of select="@instanceHash" />-<xsl:value-of select="@instanceOccurrenceNum" />','<xsl:value-of select="$which-list" />');return false;</xsl:attribute>
-         <span>
-            <xsl:attribute name="class">b-<xsl:value-of select="@priority"/></xsl:attribute>
-            <xsl:text disable-output-escaping="yes">&amp;nbsp;&amp;nbsp;</xsl:text>
-         </span>
-         <span class="b-t"><xsl:value-of select="@abbrev" />: </span> <xsl:value-of select="Class/Message" />
-      </a>
-      <div style="display:none;">
-         <xsl:attribute name="id">b-uid-<xsl:value-of select="@instanceHash" />-<xsl:value-of select="@instanceOccurrenceNum" />-ph-<xsl:value-of select="$which-list" /></xsl:attribute>
-         loading...
-      </div>
-   </div>
-</xsl:template>
-
-<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
-<!-- main template for the list by category -->
-<xsl:template name="list-by-category" >
-   <div id='list-by-category' class='data-box' style='display:none;'>
-      <xsl:call-template name="helpPriorities" />
-      <xsl:variable name="unique-category" select="/BugCollection/BugCategory/@category"/>
-      <xsl:for-each select="$unique-category">
-         <xsl:sort select="." order="ascending" />
-            <xsl:call-template name="categories">
-               <xsl:with-param name="category" select="." />
-            </xsl:call-template>
-      </xsl:for-each>
-   </div>
-</xsl:template>
-
-<xsl:template name="categories" >
-   <xsl:param name="category" select="''" />
-   <xsl:variable name="category-count"
-                       select="count(/BugCollection/BugInstance[@category=$category and not(@last)])" />
-   <xsl:variable name="category-count-p1"
-                       select="count(/BugCollection/BugInstance[@category=$category and @priority='1' and not(@last)])" />
-   <xsl:variable name="category-count-p2"
-                       select="count(/BugCollection/BugInstance[@category=$category and @priority='2' and not(@last)])" />
-   <xsl:variable name="category-count-p3"
-                       select="count(/BugCollection/BugInstance[@category=$category and @priority='3' and not(@last)])" />
-   <xsl:variable name="category-count-p4"
-                       select="count(/BugCollection/BugInstance[@category=$category and @priority='4' and not(@last)])" />
-   <div class='ob'>
-      <div class='ob-t'>
-         <a>
-            <xsl:attribute name="href"></xsl:attribute>
-            <xsl:attribute name="onclick">toggle('category-<xsl:value-of select="$category" />');return false;</xsl:attribute>
-            <xsl:value-of select="/BugCollection/BugCategory[@category=$category]/Description" />
-            (<xsl:value-of select="$category-count" />:
-            <span class='t-h'><xsl:value-of select="$category-count-p1" />/<xsl:value-of select="$category-count-p2" />/<xsl:value-of select="$category-count-p3" />/<xsl:value-of select="$category-count-p4" /></span>)
-         </a>
-      </div>
-      <div style="display:none;">
-         <xsl:attribute name="id">category-<xsl:value-of select="$category" /></xsl:attribute>
-         <xsl:call-template name="list-by-category-and-code">
-            <xsl:with-param name="category" select="$category" />
-         </xsl:call-template>
-      </div>
-   </div>
-</xsl:template>
-
-<xsl:template name="list-by-category-and-code" >
-   <xsl:param name="category" select="''" />
-   <xsl:variable name="unique-code" select="/BugCollection/BugInstance[@category=$category and not(@last) and generate-id()= generate-id(key('lbc-code-key',concat(@category,@abbrev)))]/@abbrev" />
-   <xsl:for-each select="$unique-code">
-      <xsl:sort select="." order="ascending" />
-         <xsl:call-template name="codes">
-            <xsl:with-param name="category" select="$category" />
-            <xsl:with-param name="code" select="." />
-         </xsl:call-template>
-   </xsl:for-each>
-</xsl:template>
-
-<xsl:template name="codes" >
-   <xsl:param name="category" select="''" />
-   <xsl:param name="code"     select="''" />
-   <xsl:variable name="code-count"
-                       select="count(/BugCollection/BugInstance[@category=$category and @abbrev=$code and not(@last)])" />
-   <xsl:variable name="code-count-p1"
-                       select="count(/BugCollection/BugInstance[@category=$category and @abbrev=$code and @priority='1' and not(@last)])" />
-   <xsl:variable name="code-count-p2"
-                       select="count(/BugCollection/BugInstance[@category=$category and @abbrev=$code and @priority='2' and not(@last)])" />
-   <xsl:variable name="code-count-p3"
-                       select="count(/BugCollection/BugInstance[@category=$category and @abbrev=$code and @priority='3' and not(@last)])" />
-   <xsl:variable name="code-count-p4"
-                       select="count(/BugCollection/BugInstance[@category=$category and @abbrev=$code and @priority='4' and not(@last)])" />
-   <div class='ib-1'>
-      <div class="ib-1-t">
-         <a>
-            <xsl:attribute name="href"></xsl:attribute>
-            <xsl:attribute name="onclick">toggle('category-<xsl:value-of select="$category" />-and-code-<xsl:value-of select="$code" />');return false;</xsl:attribute>
-            <xsl:value-of select="$code" />: <xsl:value-of select="/BugCollection/BugCode[@abbrev=$code]/Description" />
-            (<xsl:value-of select="$code-count" />:
-            <span class='t-h'><xsl:value-of select="$code-count-p1" />/<xsl:value-of select="$code-count-p2" />/<xsl:value-of select="$code-count-p3" />/<xsl:value-of select="$code-count-p4" /></span>)
-         </a>
-      </div>
-      <div style="display:none;">
-         <xsl:attribute name="id">category-<xsl:value-of select="$category" />-and-code-<xsl:value-of select="$code" /></xsl:attribute>
-         <xsl:call-template name="list-by-category-and-code-and-bug">
-            <xsl:with-param name="category" select="$category" />
-            <xsl:with-param name="code" select="$code" />
-         </xsl:call-template>
-      </div>
-   </div>
-</xsl:template>
-
-<xsl:template name="list-by-category-and-code-and-bug" >
-   <xsl:param name="category" select="''" />
-   <xsl:param name="code" select="''" />
-   <xsl:variable name="unique-bug" select="/BugCollection/BugInstance[@category=$category and not(@last) and @abbrev=$code and generate-id()= generate-id(key('lbc-bug-key',concat(@category,@abbrev,@type)))]/@type" />
-   <xsl:for-each select="$unique-bug">
-      <xsl:sort select="." order="ascending" />
-         <xsl:call-template name="bugs">
-            <xsl:with-param name="category" select="$category" />
-            <xsl:with-param name="code" select="$code" />
-            <xsl:with-param name="bug" select="." />
-         </xsl:call-template>
-   </xsl:for-each>
-</xsl:template>
-
-<xsl:template name="bugs" >
-   <xsl:param name="category" select="''" />
-   <xsl:param name="code"     select="''" />
-   <xsl:param name="bug"      select="''" />
-   <xsl:variable name="bug-count"
-                       select="count(/BugCollection/BugInstance[@category=$category and @abbrev=$code and @type=$bug and not(@last)])" />
-   <xsl:variable name="bug-count-p1"
-                       select="count(/BugCollection/BugInstance[@category=$category and @abbrev=$code and @type=$bug and @priority='1' and not(@last)])" />
-   <xsl:variable name="bug-count-p2"
-                       select="count(/BugCollection/BugInstance[@category=$category and @abbrev=$code and @type=$bug and @priority='2' and not(@last)])" />
-   <xsl:variable name="bug-count-p3"
-                       select="count(/BugCollection/BugInstance[@category=$category and @abbrev=$code and @type=$bug and @priority='3' and not(@last)])" />
-   <xsl:variable name="bug-count-p4"
-                       select="count(/BugCollection/BugInstance[@category=$category and @abbrev=$code and @type=$bug and @priority='4' and not(@last)])" />
-   <div class='ib-2'>
-      <div class='ib-2-t'>
-         <a>
-            <xsl:attribute name="href"></xsl:attribute>
-            <xsl:attribute name="onclick">toggle('category-<xsl:value-of select="$category" />-and-code-<xsl:value-of select="$code" />-and-bug-<xsl:value-of select="$bug" />');return false;</xsl:attribute>
-            <xsl:attribute name="onmouseout">popUp(event,'tip-<xsl:value-of select="$bug" />');</xsl:attribute>
-            <xsl:attribute name="onmouseover">popUp(event,'tip-<xsl:value-of select="$bug" />');</xsl:attribute>
-            <xsl:value-of select="/BugCollection/BugPattern[@category=$category and @abbrev=$code and @type=$bug]/ShortDescription" /><xsl:text disable-output-escaping="yes">&amp;nbsp;&amp;nbsp;</xsl:text>
-            (<xsl:value-of select="$bug-count" />:
-            <span class='t-h'><xsl:value-of select="$bug-count-p1" />/<xsl:value-of select="$bug-count-p2" />/<xsl:value-of select="$bug-count-p3" />/<xsl:value-of select="$bug-count-p4" /></span>)
-         </a>
-      </div>
-      <div style="display:none;">
-         <xsl:attribute name="id">category-<xsl:value-of select="$category" />-and-code-<xsl:value-of select="$code" />-and-bug-<xsl:value-of select="$bug" /></xsl:attribute>
-         <xsl:variable name="cat-code-type">category-<xsl:value-of select="$category" />-and-code-<xsl:value-of select="$code" />-and-bug-<xsl:value-of select="$bug" /></xsl:variable>
-         <xsl:variable name="bug-id">b-uid-<xsl:value-of select="@instanceHash" />-<xsl:value-of select="@instanceOccurrenceNum" /></xsl:variable>
-         <xsl:for-each select="/BugCollection/BugInstance[@category=$category and @abbrev=$code and @type=$bug and not(@last)]">
-            <xsl:call-template name="display-bug">
-               <xsl:with-param name="b-t"     select="@type" />
-               <xsl:with-param name="bug-id"       select="$bug-id" />
-               <xsl:with-param name="which-list"   select="'c'" />
-            </xsl:call-template>
-         </xsl:for-each>
-      </div>
-   </div>
-</xsl:template>
-
-<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
-<!-- main template for the list by package -->
-<xsl:template name="list-by-package" >
-   <div id='list-by-package' class='data-box' style='display:none;'>
-      <xsl:call-template name="helpPriorities" />
-      <xsl:for-each select="/BugCollection/FindBugsSummary/PackageStats[@total_bugs != '0']/@package">
-         <xsl:sort select="." order="ascending" />
-            <xsl:call-template name="packages">
-               <xsl:with-param name="package" select="." />
-            </xsl:call-template>
-      </xsl:for-each>
-   </div>
-</xsl:template>
-
-<xsl:template name="packages" >
-   <xsl:param name="package" select="''" />
-   <xsl:variable name="package-count-p1">
-      <xsl:if test="not(/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_1 != '')">0</xsl:if>
-      <xsl:if test="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_1 != ''">
-         <xsl:value-of select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_1" />
-      </xsl:if>
-   </xsl:variable>
-   <xsl:variable name="package-count-p2">
-      <xsl:if test="not(/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_2 != '')">0</xsl:if>
-      <xsl:if test="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_2 != ''">
-         <xsl:value-of select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_2" />
-      </xsl:if>
-   </xsl:variable>
-   <xsl:variable name="package-count-p3">
-      <xsl:if test="not(/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_3 != '')">0</xsl:if>
-      <xsl:if test="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_3 != ''">
-         <xsl:value-of select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_3" />
-      </xsl:if>
-   </xsl:variable>
-   <xsl:variable name="package-count-p4">
-      <xsl:if test="not(/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_4 != '')">0</xsl:if>
-      <xsl:if test="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_4 != ''">
-         <xsl:value-of select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@priority_4" />
-      </xsl:if>
-   </xsl:variable>
-
-   <div class='ob'>
-      <div class='ob-t'>
-         <a>
-            <xsl:attribute name="href"></xsl:attribute>
-            <xsl:attribute name="onclick">toggle('package-<xsl:value-of select="$package" />');return false;</xsl:attribute>
-            <xsl:value-of select="$package" />
-            (<xsl:value-of select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/@total_bugs" />:
-            <span class='t-h'><xsl:value-of select="$package-count-p1" />/<xsl:value-of select="$package-count-p2" />/<xsl:value-of select="$package-count-p3" />/<xsl:value-of select="$package-count-p4" /></span>)
-         </a>
-      </div>
-      <div style="display:none;">
-         <xsl:attribute name="id">package-<xsl:value-of select="$package" /></xsl:attribute>
-         <xsl:call-template name="list-by-package-and-class">
-            <xsl:with-param name="package" select="$package" />
-         </xsl:call-template>
-      </div>
-   </div>
-</xsl:template>
-
-<xsl:template name="list-by-package-and-class" >
-   <xsl:param name="package" select="''" />
-   <xsl:for-each select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@bugs != '0']/@class">
-      <xsl:sort select="." order="ascending" />
-         <xsl:call-template name="classes">
-            <xsl:with-param name="package" select="$package" />
-            <xsl:with-param name="class" select="." />
-         </xsl:call-template>
-   </xsl:for-each>
-</xsl:template>
-
-<xsl:template name="classes" >
-   <xsl:param name="package" select="''" />
-   <xsl:param name="class"     select="''" />
-   <xsl:variable name="class-count"
-                       select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@bugs" />
-
-   <xsl:variable name="class-count-p1">
-      <xsl:if test="not(/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_1 != '')">0</xsl:if>
-      <xsl:if test="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_1 != ''">
-         <xsl:value-of select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_1" />
-      </xsl:if>
-   </xsl:variable>
-   <xsl:variable name="class-count-p2">
-      <xsl:if test="not(/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_2 != '')">0</xsl:if>
-      <xsl:if test="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_2 != ''">
-         <xsl:value-of select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_2" />
-      </xsl:if>
-   </xsl:variable>
-   <xsl:variable name="class-count-p3">
-      <xsl:if test="not(/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_3 != '')">0</xsl:if>
-      <xsl:if test="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_3 != ''">
-         <xsl:value-of select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_3" />
-      </xsl:if>
-   </xsl:variable>
-   <xsl:variable name="class-count-p4">
-      <xsl:if test="not(/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_4 != '')">0</xsl:if>
-      <xsl:if test="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_4 != ''">
-         <xsl:value-of select="/BugCollection/FindBugsSummary/PackageStats[@package=$package]/ClassStats[@class=$class and @bugs != '0']/@priority_4" />
-      </xsl:if>
-   </xsl:variable>
-
-   <div class='ib-1'>
-      <div class="ib-1-t">
-         <a>
-            <xsl:attribute name="href"></xsl:attribute>
-            <xsl:attribute name="onclick">toggle('package-<xsl:value-of select="$package" />-and-class-<xsl:value-of select="$class" />');return false;</xsl:attribute>
-            <xsl:value-of select="$class" />  (<xsl:value-of select="$class-count" />:
-            <span class='t-h'><xsl:value-of select="$class-count-p1" />/<xsl:value-of select="$class-count-p2" />/<xsl:value-of select="$class-count-p3" />/<xsl:value-of select="$class-count-p4" /></span>)
-         </a>
-      </div>
-      <div style="display:none;">
-         <xsl:attribute name="id">package-<xsl:value-of select="$package" />-and-class-<xsl:value-of select="$class" /></xsl:attribute>
-         <xsl:call-template name="list-by-package-and-class-and-bug">
-            <xsl:with-param name="package" select="$package" />
-            <xsl:with-param name="class" select="$class" />
-         </xsl:call-template>
-      </div>
-   </div>
-</xsl:template>
-
-<xsl:template name="list-by-package-and-class-and-bug" >
-   <xsl:param name="package" select="''" />
-   <xsl:param name="class" select="''" />
-   <xsl:variable name="unique-class-bugs" select="/BugCollection/BugInstance[not(@last) and Class[position()=1 and @classname=$class] and generate-id() = generate-id(key('lbp-class-b-t',concat(Class/@classname,@type)))]/@type" />
-
-   <xsl:for-each select="$unique-class-bugs">
-      <xsl:sort select="." order="ascending" />
-         <xsl:call-template name="class-bugs">
-            <xsl:with-param name="package" select="$package" />
-            <xsl:with-param name="class" select="$class" />
-            <xsl:with-param name="type" select="." />
-         </xsl:call-template>
-   </xsl:for-each>
-</xsl:template>
-
-<xsl:template name="class-bugs" >
-   <xsl:param name="package" select="''" />
-   <xsl:param name="class"     select="''" />
-   <xsl:param name="type"      select="''" />
-   <xsl:variable name="bug-count"
-                       select="count(/BugCollection/BugInstance[@type=$type and not(@last) and Class[position()=1 and @classname=$class]])" />
-   <div class='ib-2'>
-      <div class='ib-2-t'>
-         <a>
-            <xsl:attribute name="href"></xsl:attribute>
-            <xsl:attribute name="onclick">toggle('package-<xsl:value-of select="$package" />-and-class-<xsl:value-of select="$class" />-and-type-<xsl:value-of select="$type" />');return false;</xsl:attribute>
-            <xsl:attribute name="onmouseout">popUp(event,'tip-<xsl:value-of select="$type" />')</xsl:attribute>
-            <xsl:attribute name="onmouseover">popUp(event,'tip-<xsl:value-of select="$type" />')</xsl:attribute>
-            <xsl:value-of select="/BugCollection/BugPattern[@type=$type]/ShortDescription" /><xsl:text disable-output-escaping="yes">&amp;nbsp;&amp;nbsp;</xsl:text>
-            (<xsl:value-of select="$bug-count" />)
-         </a>
-      </div>
-      <div style="display:none;">
-         <xsl:attribute name="id">package-<xsl:value-of select="$package" />-and-class-<xsl:value-of select="$class" />-and-type-<xsl:value-of select="$type" /></xsl:attribute>
-         <xsl:variable name="package-class-type">package-<xsl:value-of select="$package" />-and-class-<xsl:value-of select="$class" />-and-type-<xsl:value-of select="$type" /></xsl:variable>
-         <xsl:variable name="bug-id">b-uid-<xsl:value-of select="@instanceHash" />-<xsl:value-of select="@instanceOccurrenceNum" /></xsl:variable>
-         <xsl:for-each select="/BugCollection/BugInstance[@type=$type and not(@last) and Class[position()=1 and @classname=$class]]">
-            <xsl:call-template name="display-bug">
-               <xsl:with-param name="b-t"     select="@type" />
-               <xsl:with-param name="bug-id"       select="$bug-id" />
-               <xsl:with-param name="which-list"   select="'p'" />
-            </xsl:call-template>
-         </xsl:for-each>
-      </div>
-   </div>
-</xsl:template>
-
-</xsl:transform>
diff --git a/tools/findbugs/src/xsl/plain.xsl b/tools/findbugs/src/xsl/plain.xsl
deleted file mode 100644
index 80fff8d..0000000
--- a/tools/findbugs/src/xsl/plain.xsl
+++ /dev/null
@@ -1,306 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  FindBugs - Find bugs in Java programs
-  Copyright (C) 2004,2005 University of Maryland
-  Copyright (C) 2005, Chris Nappin
-  
-  This library is free software; you can redistribute it and/or
-  modify it under the terms of the GNU Lesser General Public
-  License as published by the Free Software Foundation; either
-  version 2.1 of the License, or (at your option) any later version.
-  
-  This library is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-  Lesser General Public License for more details.
-  
-  You should have received a copy of the GNU Lesser General Public
-  License along with this library; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
--->
-<xsl:stylesheet version="1.0"
-	xmlns="http://www.w3.org/1999/xhtml"
-	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-
-<xsl:output
-	method="xml"
-	omit-xml-declaration="yes"
-	standalone="yes"
-         doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
-         doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
-	indent="yes"
-	encoding="UTF-8"/>
-
-<xsl:variable name="bugTableHeader">
-	<tr class="tableheader">
-		<th align="left">Warning</th>
-		<th align="left">Priority</th>
-		<th align="left">Details</th>
-	</tr>
-</xsl:variable>
-
-<xsl:template match="/">
-	<html>
-	<head>
-		<title>FindBugs Report</title>
-		<style type="text/css">
-		.tablerow0 {
-			background: #EEEEEE;
-		}
-
-		.tablerow1 {
-			background: white;
-		}
-
-		.detailrow0 {
-			background: #EEEEEE;
-		}
-
-		.detailrow1 {
-			background: white;
-		}
-
-		.tableheader {
-			background: #b9b9fe;
-			font-size: larger;
-		}
-		</style>
-	</head>
-
-	<xsl:variable name="unique-catkey" select="/BugCollection/BugCategory/@category"/>
-
-	<body>
-
-	<h1>FindBugs Report</h1>
-		<p>Produced using <a href="http://findbugs.sourceforge.net">FindBugs</a> <xsl:value-of select="/BugCollection/@version"/>.</p>
-		<p>Project: 
-			<xsl:choose>
-				<xsl:when test='string-length(/BugCollection/Project/@projectName)>0'><xsl:value-of select="/BugCollection/Project/@projectName" /></xsl:when>
-				<xsl:otherwise><xsl:value-of select="/BugCollection/Project/@filename" /></xsl:otherwise>
-			</xsl:choose>
-		</p>
-	<h2>Metrics</h2>
-	<xsl:apply-templates select="/BugCollection/FindBugsSummary"/>
-
-	<h2>Summary</h2>
-	<table width="500" cellpadding="5" cellspacing="2">
-	    <tr class="tableheader">
-			<th align="left">Warning Type</th>
-			<th align="right">Number</th>
-		</tr>
-
-	<xsl:for-each select="$unique-catkey">
-		<xsl:sort select="." order="ascending"/>
-		<xsl:variable name="catkey" select="."/>
-		<xsl:variable name="catdesc" select="/BugCollection/BugCategory[@category=$catkey]/Description"/>
-		<xsl:variable name="styleclass">
-			<xsl:choose><xsl:when test="position() mod 2 = 1">tablerow0</xsl:when>
-				<xsl:otherwise>tablerow1</xsl:otherwise>
-			</xsl:choose>
-		</xsl:variable>
-
-		<tr class="{$styleclass}">
-			<td><a href="#Warnings_{$catkey}"><xsl:value-of select="$catdesc"/> Warnings</a></td>
-			<td align="right"><xsl:value-of select="count(/BugCollection/BugInstance[(@category=$catkey) and (not(@last))])"/></td>
-		</tr>
-	</xsl:for-each>
-
-	<xsl:variable name="styleclass">
-		<xsl:choose><xsl:when test="count($unique-catkey) mod 2 = 0">tablerow0</xsl:when>
-			<xsl:otherwise>tablerow1</xsl:otherwise>
-		</xsl:choose>
-	</xsl:variable>
-		<tr class="{$styleclass}">
-		    <td><b>Total</b></td>
-		    <td align="right"><b><xsl:value-of select="count(/BugCollection/BugInstance[not(@last)])"/></b></td>
-		</tr>
-	</table>
-	<p><br/><br/></p>
-	
-	<h1>Warnings</h1>
-
-	<p>Click on each warning link to see a full description of the issue, and
-	    details of how to resolve it.</p>
-
-	<xsl:for-each select="$unique-catkey">
-		<xsl:sort select="." order="ascending"/>
-		<xsl:variable name="catkey" select="."/>
-		<xsl:variable name="catdesc" select="/BugCollection/BugCategory[@category=$catkey]/Description"/>
-
-		<xsl:call-template name="generateWarningTable">
-			<xsl:with-param name="warningSet" select="/BugCollection/BugInstance[(@category=$catkey) and (not(@last))]"/>
-			<xsl:with-param name="sectionTitle"><xsl:value-of select="$catdesc"/> Warnings</xsl:with-param>
-			<xsl:with-param name="sectionId">Warnings_<xsl:value-of select="$catkey"/></xsl:with-param>
-		</xsl:call-template>
-	</xsl:for-each>
-
-    <p><br/><br/></p>
-	<h1><a name="Details">Warning Types</a></h1>
-
-	<xsl:apply-templates select="/BugCollection/BugPattern">
-		<xsl:sort select="@abbrev"/>
-		<xsl:sort select="ShortDescription"/>
-	</xsl:apply-templates>
-
-	</body>
-	</html>
-</xsl:template>
-
-<xsl:template match="BugInstance[not(@last)]">
-	<xsl:variable name="warningId"><xsl:value-of select="generate-id()"/></xsl:variable>
-
-	<tr class="tablerow{position() mod 2}">
-		<td width="20%" valign="top">
-			<a href="#{@type}"><xsl:value-of select="ShortMessage"/></a>
-		</td>
-		<td width="10%" valign="top">
-			<xsl:choose>
-				<xsl:when test="@priority = 1">High</xsl:when>
-				<xsl:when test="@priority = 2">Medium</xsl:when>
-				<xsl:when test="@priority = 3">Low</xsl:when>
-				<xsl:otherwise>Unknown</xsl:otherwise>
-			</xsl:choose>
-		</td>
-		<td width="70%">
-		    <p><xsl:value-of select="LongMessage"/><br/><br/>
-		    
-		    	<!--  add source filename and line number(s), if any -->
-				<xsl:if test="SourceLine">
-					<br/>In file <xsl:value-of select="SourceLine/@sourcefile"/>,
-					<xsl:choose>
-						<xsl:when test="SourceLine/@start = SourceLine/@end">
-						line <xsl:value-of select="SourceLine/@start"/>
-						</xsl:when>
-						<xsl:otherwise>
-						lines <xsl:value-of select="SourceLine/@start"/>
-						    to <xsl:value-of select="SourceLine/@end"/>
-						</xsl:otherwise>
-					</xsl:choose>
-				</xsl:if>
-				
-				<xsl:for-each select="./*/Message">
-					<br/><xsl:value-of select="text()"/>
-				</xsl:for-each>
-		    </p>
-		</td>
-	</tr>
-</xsl:template>
-
-<xsl:template match="BugPattern">
-	<h2><a name="{@type}"><xsl:value-of select="ShortDescription"/></a></h2>
-	<xsl:value-of select="Details" disable-output-escaping="yes"/>
-	<p><br/><br/></p>
-</xsl:template>
-
-<xsl:template name="generateWarningTable">
-	<xsl:param name="warningSet"/>
-	<xsl:param name="sectionTitle"/>
-	<xsl:param name="sectionId"/>
-
-	<h2><a name="{$sectionId}"><xsl:value-of select="$sectionTitle"/></a></h2>
-	<table class="warningtable" width="100%" cellspacing="2" cellpadding="5">
-		<xsl:copy-of select="$bugTableHeader"/>
-		<xsl:choose>
-		    <xsl:when test="count($warningSet) &gt; 0">
-				<xsl:apply-templates select="$warningSet">
-					<xsl:sort select="@priority"/>
-					<xsl:sort select="@abbrev"/>
-					<xsl:sort select="Class/@classname"/>
-				</xsl:apply-templates>
-		    </xsl:when>
-		    <xsl:otherwise>
-		        <tr><td colspan="2"><p><i>None</i></p></td></tr>
-		    </xsl:otherwise>
-		</xsl:choose>
-	</table>
-	<p><br/><br/></p>
-</xsl:template>
-
-<xsl:template match="FindBugsSummary">
-    <xsl:variable name="kloc" select="@total_size div 1000.0"/>
-    <xsl:variable name="format" select="'#######0.00'"/>
-
-	<p><xsl:value-of select="@total_size"/> lines of code analyzed,
-	in <xsl:value-of select="@total_classes"/> classes, 
-	in <xsl:value-of select="@num_packages"/> packages.</p>
-	<table width="500" cellpadding="5" cellspacing="2">
-	    <tr class="tableheader">
-			<th align="left">Metric</th>
-			<th align="right">Total</th>
-			<th align="right">Density*</th>
-		</tr>
-		<tr class="tablerow0">
-			<td>High Priority Warnings</td>
-			<td align="right"><xsl:value-of select="@priority_1"/></td>
-			<td align="right">
-                <xsl:choose>
-                    <xsl:when test= "number($kloc) &gt; 0.0">
-       			        <xsl:value-of select="format-number(@priority_1 div $kloc, $format)"/>
-                    </xsl:when>
-                    <xsl:otherwise>
-      		            <xsl:value-of select="format-number(0.0, $format)"/>
-                    </xsl:otherwise>
-		        </xsl:choose>
-			</td>
-		</tr>
-		<tr class="tablerow1">
-			<td>Medium Priority Warnings</td>
-			<td align="right"><xsl:value-of select="@priority_2"/></td>
-			<td align="right">
-                <xsl:choose>
-                    <xsl:when test= "number($kloc) &gt; 0.0">
-       			        <xsl:value-of select="format-number(@priority_2 div $kloc, $format)"/>
-                    </xsl:when>
-                    <xsl:otherwise>
-      		            <xsl:value-of select="format-number(0.0, $format)"/>
-                    </xsl:otherwise>
-		        </xsl:choose>
-			</td>
-		</tr>
-
-    <xsl:choose>
-		<xsl:when test="@priority_3">
-			<tr class="tablerow1">
-				<td>Low Priority Warnings</td>
-				<td align="right"><xsl:value-of select="@priority_3"/></td>
-				<td align="right">
-	                <xsl:choose>
-	                    <xsl:when test= "number($kloc) &gt; 0.0">
-	       			        <xsl:value-of select="format-number(@priority_3 div $kloc, $format)"/>
-	                    </xsl:when>
-	                    <xsl:otherwise>
-	      		            <xsl:value-of select="format-number(0.0, $format)"/>
-	                    </xsl:otherwise>
-			        </xsl:choose>
-				</td>
-			</tr>
-			<xsl:variable name="totalClass" select="tablerow0"/>
-		</xsl:when>
-		<xsl:otherwise>
-		    <xsl:variable name="totalClass" select="tablerow1"/>
-		</xsl:otherwise>
-	</xsl:choose>
-
-		<tr class="$totalClass">
-			<td><b>Total Warnings</b></td>
-			<td align="right"><b><xsl:value-of select="@total_bugs"/></b></td>
-			<td align="right">
-				<b>
-                <xsl:choose>
-                    <xsl:when test= "number($kloc) &gt; 0.0">
-       			        <xsl:value-of select="format-number(@total_bugs div $kloc, $format)"/>
-                    </xsl:when>
-                    <xsl:otherwise>
-      		            <xsl:value-of select="format-number(0.0, $format)"/>
-                    </xsl:otherwise>
-		        </xsl:choose>
-				</b>
-			</td>
-		</tr>
-	</table>
-	<p><i>(* Defects per Thousand lines of non-commenting source statements)</i></p>
-	<p><br/><br/></p>
-
-</xsl:template>
-
-</xsl:stylesheet>
diff --git a/tools/findbugs/src/xsl/summary.xsl b/tools/findbugs/src/xsl/summary.xsl
deleted file mode 100644
index faf0131..0000000
--- a/tools/findbugs/src/xsl/summary.xsl
+++ /dev/null
@@ -1,252 +0,0 @@
-<?xml version="1.0"?>

-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" >

-

-<xsl:output

-         method="xml" indent="yes"

-         doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"

-         doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"

- 		encoding="UTF-8"/>

-

-<xsl:param name="PAGE.TITLE" select="'Findbugs Summary Statistics'" />

-<xsl:param name="PAGE.FONT" select="'Arial'" />

-<xsl:param name="SUMMARY.HEADER" select="'Findbugs Summary Report'" />

-<xsl:param name="SUMMARY.LABEL" select="'Summary Analysis Generated at: '" />

-<xsl:param name="PACKAGE.HEADER" select="'Bugs By Package'" />

-<xsl:param name="PACKAGE.SORT.LABEL" select="'Sorted by Total Bugs'" />

-<xsl:param name="PACKAGE.LABEL" select="'Analysis of Package: '" />

-<xsl:param name="DEFAULT.PACKAGE.NAME" select="'default package'" />

-<xsl:param name="PACKAGE.BUGCLASS.LABEL" select="'Most Buggy Class in Package with #1 $1:'" />

-<xsl:param name="TOTAL.PACKAGES.LABEL" select="'#1 $1 Analyzed'" />

-

-<xsl:param name="BUGS.SINGLE.LABEL" select="'Bug'" />

-<xsl:param name="BUGS.PULURAL.LABEL" select="'Bugs'" />

-<xsl:param name="PACKAGE.SINGLE.LABEL" select="'Package'" />

-<xsl:param name="PACKAGE.PULURAL.LABEL" select="'Packages'" />

-

-

-<xsl:param name="TABLE.HEADING.TYPE" select="'Type Checked'" />

-<xsl:param name="TABLE.HEADING.COUNT" select="'Count'" />

-<xsl:param name="TABLE.HEADING.BUGS" select="'Bugs'" />

-<xsl:param name="TABLE.HEADING.PERCENT" select="'Percentage'" />

-<xsl:param name="TABLE.ROW.OUTER" select="'Outer Classes'" />

-<xsl:param name="TABLE.ROW.INNER" select="'Inner Classes'" />

-<xsl:param name="TABLE.ROW.INTERFACE" select="'Interfaces'" />

-<xsl:param name="TABLE.ROW.TOTAL" select="'Total'" />

-<xsl:param name="TABLE.WIDTH" select="'90%'" />

-

-<xsl:param name="PERCENTAGE.FORMAT" select="'#0.00%'" />

-

-<!-- This template drives the rest of the output -->

-<xsl:template match="/" >

-  <html>

-   <!-- JEditorPane gets really angry if it sees this

-	WWP: Sorry, this needs to be explained better. Not a valid HTML document without a head.

-	 -->

-   <head><title><xsl:value-of select="$PAGE.TITLE" /></title></head>

-  <body>

-    <h1 align="center"><a href="http://findbugs.sourceforge.net"><xsl:value-of select="$SUMMARY.HEADER" /></a></h1>

-    <h2 align="center"> Analysis for 

-    <xsl:choose>

-      <xsl:when test='string-length(/BugCollection/Project/@projectName)>0'>

-          <xsl:value-of select="/BugCollection/Project/@projectName" /></xsl:when>

-      <xsl:otherwise><xsl:value-of select="/BugCollection/Project/@filename" /></xsl:otherwise>

-    </xsl:choose>

-      </h2>

-  <h2 align="center"><xsl:value-of select="$SUMMARY.LABEL" /> 

-      <i><xsl:value-of select="//FindBugsSummary/@timestamp" /></i></h2>

-  <xsl:apply-templates select="//FindBugsSummary" />

-  <br/>

-  <p align="center">

-  <font face="{$PAGE.FONT}" size="6"><xsl:value-of select="$PACKAGE.HEADER" /></font>

-    <br/><font face="{$PAGE.FONT}" size="4"><i>(<xsl:value-of select="$PACKAGE.SORT.LABEL"/>)</i></font>

-  </p>

-  <xsl:for-each select="//FindBugsSummary/PackageStats">

-  <xsl:sort select="@total_bugs" data-type="number" order="descending" />

-  <xsl:apply-templates select="." />

-  </xsl:for-each>

-  </body>

-  </html>

-</xsl:template>

-

-<xsl:template name="status_table_row" >

-  <xsl:param name="LABEL" select="''" />

-  <xsl:param name="COUNT" select="1" />

-  <xsl:param name="BUGS" select="0" />

-  <xsl:param name="FONT_SIZE" select="4" />

-  <tr>

-   <td align="left"><font face="{$PAGE.FONT}" size="{$FONT_SIZE}"><xsl:value-of select="$LABEL" /></font></td>

-   <td align="center"><font face="{$PAGE.FONT}" color="green" size="{$FONT_SIZE}"><xsl:value-of select="$COUNT" /></font></td>

-   <td align="center"><font face="{$PAGE.FONT}" color="red" size="{$FONT_SIZE}"><xsl:value-of select="$BUGS" /></font></td>

-   <td align="center"><font face="{$PAGE.FONT}" color="blue" size="{$FONT_SIZE}">

-      <xsl:choose>

-      <xsl:when test="$COUNT &gt; 0">

-       <xsl:value-of select="format-number(number($BUGS div $COUNT), $PERCENTAGE.FORMAT)"/>

-      </xsl:when>

-      <xsl:otherwise>

-       <xsl:value-of select="format-number(0, $PERCENTAGE.FORMAT)"/>

-      </xsl:otherwise>

-      </xsl:choose>

-     </font>

-   </td>

-  </tr>

-</xsl:template>

-

-<xsl:template name="table_header" >

-  <tr>

-  <th><font face="{$PAGE.FONT}" size="4"><xsl:value-of select="$TABLE.HEADING.TYPE"/></font></th>

-  <th><font face="{$PAGE.FONT}" size="4"><xsl:value-of select="$TABLE.HEADING.COUNT"/></font></th>

-  <th><font face="{$PAGE.FONT}" size="4"><xsl:value-of select="$TABLE.HEADING.BUGS"/></font></th>

-  <th><font face="{$PAGE.FONT}" size="4"><xsl:value-of select="$TABLE.HEADING.PERCENT"/></font></th>

-  </tr>

-</xsl:template>

-

-<xsl:template match="FindBugsSummary" >

-  <table width="{$TABLE.WIDTH}" border="1" align="center">

-   <xsl:call-template name="table_header" />

-

-   <xsl:call-template name="status_table_row">

-     <xsl:with-param name="LABEL" select="$TABLE.ROW.OUTER" />

-     <xsl:with-param name="COUNT" select="count(PackageStats/ClassStats[@interface='false' and substring-after(@class,'$')=''])" />

-     <xsl:with-param name="BUGS" select="sum(PackageStats/ClassStats[@interface='false' and substring-after(@class,'$')='']/@bugs)" />

-   </xsl:call-template>

-

-   <xsl:call-template name="status_table_row">

-     <xsl:with-param name="LABEL" select="$TABLE.ROW.INNER" />

-     <xsl:with-param name="COUNT" select="count(PackageStats/ClassStats[@interface='false' and substring-after(@class,'$')!=''])" />

-     <xsl:with-param name="BUGS" select="sum(PackageStats/ClassStats[@interface='false' and substring-after(@class,'$')!='']/@bugs)" />

-   </xsl:call-template>

-

-   <xsl:call-template name="status_table_row">

-     <xsl:with-param name="LABEL" select="$TABLE.ROW.INTERFACE" />

-     <xsl:with-param name="COUNT" select="count(PackageStats/ClassStats[@interface='true'])" />

-     <xsl:with-param name="BUGS" select="sum(PackageStats/ClassStats[@interface='true']/@bugs)" />

-   </xsl:call-template>

-

-   <xsl:call-template name="status_table_row">

-     <xsl:with-param name="LABEL" select="$TABLE.ROW.TOTAL" />

-     <xsl:with-param name="COUNT" select="@total_classes" />

-     <xsl:with-param name="BUGS" select="@total_bugs"/>

-     <xsl:with-param name="FONT_SIZE" select="5"/>

-   </xsl:call-template>

-   <xsl:variable name="num_packages" select="count(PackageStats)" />

-   <tr><td align="center" colspan="4"><font face="{$PAGE.FONT}" size="4">

-     <xsl:call-template name='string_format'>

-     <xsl:with-param name="COUNT" select="$num_packages"/>

-     <xsl:with-param name="STRING" select="$TOTAL.PACKAGES.LABEL"/>

-     <xsl:with-param name="SINGLE" select="$PACKAGE.SINGLE.LABEL"/>

-     <xsl:with-param name="PULURAL" select="$PACKAGE.PULURAL.LABEL"/>

-     </xsl:call-template>

-     </font></td>

-   </tr>

-  </table>

-</xsl:template>

-

-

-<xsl:template name='string_format'>

-  <xsl:param name="COUNT" select="1"/>

-  <xsl:param name="STRING" select="''"/>

-  <xsl:param name="SINGLE" select="''"/>

-  <xsl:param name="PULURAL" select="''"/>

-  <xsl:variable name="count_str" select="concat(substring-before($STRING,'#1'), $COUNT, substring-after($STRING,'#1'))" />

-

-  <xsl:choose>

-    <xsl:when test="$COUNT &gt; 1">

-      <xsl:value-of select="concat(substring-before($count_str,'$1'), $PULURAL, substring-after($count_str,'$1'))" />

-    </xsl:when>

-    <xsl:otherwise>

-    <xsl:value-of select="concat(substring-before($count_str,'$1'), $SINGLE, substring-after($count_str,'$1'))" />

-    </xsl:otherwise>

-  </xsl:choose>

-</xsl:template>

-

-

-<xsl:template match="PackageStats" >

-  <xsl:variable name="package-name">

-    <xsl:choose>

-      <xsl:when test="@package = ''">

-        <xsl:value-of select="$DEFAULT.PACKAGE.NAME"/>

-      </xsl:when>

-      <xsl:otherwise>

-        <xsl:value-of select="@package"/>

-      </xsl:otherwise>

-    </xsl:choose>

-  </xsl:variable>

-  <xsl:variable name="package-prefix">

-    <xsl:choose>

-      <xsl:when test="@package = ''">

-        <xsl:text></xsl:text>

-      </xsl:when>

-      <xsl:otherwise>

-        <xsl:value-of select="concat(@package,'.')"/>

-      </xsl:otherwise>

-    </xsl:choose>

-  </xsl:variable>

-  <h2 align="center"><xsl:value-of select="$PACKAGE.LABEL"/><i><font color='green'><xsl:value-of select="$package-name" /></font></i></h2>

-   <table width="{$TABLE.WIDTH}" border="1" align="center">

-   <xsl:call-template name="table_header" />

-

-   <xsl:call-template name="status_table_row">

-     <xsl:with-param name="LABEL" select="$TABLE.ROW.OUTER" />

-     <xsl:with-param name="COUNT" select="count(ClassStats[@interface='false' and substring-after(@class,'$')=''])" />

-     <xsl:with-param name="BUGS" select="sum(ClassStats[@interface='false' and substring-after(@class,'$')='']/@bugs)" />

-   </xsl:call-template>

-

-   <xsl:call-template name="status_table_row">

-     <xsl:with-param name="LABEL" select="$TABLE.ROW.INNER" />

-     <xsl:with-param name="COUNT" select="count(ClassStats[@interface='false' and substring-after(@class,'$')!=''])" />

-     <xsl:with-param name="BUGS" select="sum(ClassStats[@interface='false' and substring-after(@class,'$')!='']/@bugs)" />

-   </xsl:call-template>

-

-   <xsl:call-template name="status_table_row">

-     <xsl:with-param name="LABEL" select="$TABLE.ROW.INTERFACE" />

-     <xsl:with-param name="COUNT" select="count(ClassStats[@interface='true'])" />

-     <xsl:with-param name="BUGS" select="sum(ClassStats[@interface='true']/@bugs)" />

-   </xsl:call-template>

-

-   <xsl:call-template name="status_table_row">

-     <xsl:with-param name="LABEL" select="$TABLE.ROW.TOTAL" />

-     <xsl:with-param name="COUNT" select="@total_types" />

-     <xsl:with-param name="BUGS" select="@total_bugs" />

-     <xsl:with-param name="FONT_SIZE" select="5"/>

-   </xsl:call-template>

-

-  </table>

-  <xsl:if test="@total_bugs &gt; 0">

-  <table width="{$TABLE.WIDTH}" border="0" align="center">

-     <xsl:variable name="max_bugs">

-       <xsl:for-each select="ClassStats">

-         <xsl:sort select="@bugs" data-type="number" order="descending"/>

-         <xsl:if test="position()=1">

-           <xsl:value-of select="@bugs"/>

-         </xsl:if>

-       </xsl:for-each>

-     </xsl:variable>

-

-     <tr>

-       <td align="left" colspan="2">

-         <font face="{$PAGE.FONT}" size="4">

-     <xsl:call-template name='string_format'>

-     <xsl:with-param name="COUNT" select="$max_bugs"/>

-     <xsl:with-param name="STRING" select="$PACKAGE.BUGCLASS.LABEL"/>

-     <xsl:with-param name="SINGLE" select="$BUGS.SINGLE.LABEL"/>

-     <xsl:with-param name="PULURAL" select="$BUGS.PULURAL.LABEL"/>

-     </xsl:call-template>

-         </font>

-       </td>

-     </tr>

-

-     <xsl:for-each select="ClassStats">

-       <xsl:if test="@bugs = $max_bugs">

-       <tr>

-          <td>&#160;&#160;&#160;&#160;&#160;&#160;&#160;</td>

-          <td align="left"><font face="{$PAGE.FONT}" color="red" size="4"><i><xsl:value-of select="$package-prefix"/><xsl:value-of select="@class" /></i></font></td>

-       </tr>

-       </xsl:if>

-     </xsl:for-each>

-

-   </table>

-  </xsl:if>

-  <br/>

-</xsl:template>

-

-</xsl:stylesheet>

diff --git a/tools/googlecode_upload.py b/tools/googlecode_upload.py
deleted file mode 100755
index 1691236..0000000
--- a/tools/googlecode_upload.py
+++ /dev/null
@@ -1,256 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright 2006, 2007 Google Inc. All Rights Reserved.
-# Author: danderson@google.com (David Anderson)
-#
-# Script for uploading files to a Google Code project.
-#
-# This is intended to be both a useful script for people who want to
-# streamline project uploads and a reference implementation for
-# uploading files to Google Code projects.
-#
-# To upload a file to Google Code, you need to provide a path to the
-# file on your local machine, a small summary of what the file is, a
-# project name, and a valid account that is a member or owner of that
-# project.  You can optionally provide a list of labels that apply to
-# the file.  The file will be uploaded under the same name that it has
-# in your local filesystem (that is, the "basename" or last path
-# component).  Run the script with '--help' to get the exact syntax
-# and available options.
-#
-# Note that the upload script requests that you enter your
-# googlecode.com password.  This is NOT your Gmail account password!
-# This is the password you use on googlecode.com for committing to
-# Subversion and uploading files.  You can find your password by going
-# to http://code.google.com/hosting/settings when logged in with your
-# Gmail account. If you have already committed to your project's
-# Subversion repository, the script will automatically retrieve your
-# credentials from there (unless disabled, see the output of '--help'
-# for details).
-#
-# If you are looking at this script as a reference for implementing
-# your own Google Code file uploader, then you should take a look at
-# the upload() function, which is the meat of the uploader.  You
-# basically need to build a multipart/form-data POST request with the
-# right fields and send it to https://PROJECT.googlecode.com/files .
-# Authenticate the request using HTTP Basic authentication, as is
-# shown below.
-#
-# Licensed under the terms of the Apache Software License 2.0:
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Questions, comments, feature requests and patches are most welcome.
-# Please direct all of these to the Google Code users group:
-#  http://groups.google.com/group/google-code-hosting
-
-"""Google Code file uploader script.
-"""
-
-__author__ = 'danderson@google.com (David Anderson)'
-
-import httplib
-import os.path
-import optparse
-import getpass
-import base64
-import sys
-
-
-def upload(file, project_name, user_name, password, summary, labels=None):
-  """Upload a file to a Google Code project's file server.
-
-  Args:
-    file: The local path to the file.
-    project_name: The name of your project on Google Code.
-    user_name: Your Google account name.
-    password: The googlecode.com password for your account.
-              Note that this is NOT your global Google Account password!
-    summary: A small description for the file.
-    labels: an optional list of label strings with which to tag the file.
-
-  Returns: a tuple:
-    http_status: 201 if the upload succeeded, something else if an
-                 error occured.
-    http_reason: The human-readable string associated with http_status
-    file_url: If the upload succeeded, the URL of the file on Google
-              Code, None otherwise.
-  """
-  # The login is the user part of user@gmail.com. If the login provided
-  # is in the full user@domain form, strip it down.
-  if user_name.endswith('@gmail.com'):
-    user_name = user_name[:user_name.index('@gmail.com')]
-
-  form_fields = [('summary', summary)]
-  if labels is not None:
-    form_fields.extend([('label', l.strip()) for l in labels])
-
-  content_type, body = encode_upload_request(form_fields, file)
-
-  upload_host = '%s.googlecode.com' % project_name
-  upload_uri = '/files'
-  auth_token = base64.b64encode('%s:%s'% (user_name, password))
-  headers = {
-    'Authorization': 'Basic %s' % auth_token,
-    'User-Agent': 'Googlecode.com uploader v0.9.4',
-    'Content-Type': content_type,
-    }
-
-  server = httplib.HTTPSConnection(upload_host)
-  server.request('POST', upload_uri, body, headers)
-  resp = server.getresponse()
-  server.close()
-
-  if resp.status == 201:
-    location = resp.getheader('Location', None)
-  else:
-    location = None
-  return resp.status, resp.reason, location
-
-
-def encode_upload_request(fields, file_path):
-  """Encode the given fields and file into a multipart form body.
-
-  fields is a sequence of (name, value) pairs. file is the path of
-  the file to upload. The file will be uploaded to Google Code with
-  the same file name.
-
-  Returns: (content_type, body) ready for httplib.HTTP instance
-  """
-  BOUNDARY = '----------Googlecode_boundary_reindeer_flotilla'
-  CRLF = '\r\n'
-
-  body = []
-
-  # Add the metadata about the upload first
-  for key, value in fields:
-    body.extend(
-      ['--' + BOUNDARY,
-       'Content-Disposition: form-data; name="%s"' % key,
-       '',
-       value,
-       ])
-
-  # Now add the file itself
-  file_name = os.path.basename(file_path)
-  f = open(file_path, 'rb')
-  file_content = f.read()
-  f.close()
-
-  body.extend(
-    ['--' + BOUNDARY,
-     'Content-Disposition: form-data; name="filename"; filename="%s"'
-     % file_name,
-     # The upload server determines the mime-type, no need to set it.
-     'Content-Type: application/octet-stream',
-     '',
-     file_content,
-     ])
-
-  # Finalize the form body
-  body.extend(['--' + BOUNDARY + '--', ''])
-
-  return 'multipart/form-data; boundary=%s' % BOUNDARY, CRLF.join(body)
-
-
-def upload_find_auth(file_path, project_name, summary, labels=None,
-                     user_name=None, password=None, tries=3):
-  """Find credentials and upload a file to a Google Code project's file server.
-
-  file_path, project_name, summary, and labels are passed as-is to upload.
-
-  Args:
-    file_path: The local path to the file.
-    project_name: The name of your project on Google Code.
-    summary: A small description for the file.
-    labels: an optional list of label strings with which to tag the file.
-    config_dir: Path to Subversion configuration directory, 'none', or None.
-    user_name: Your Google account name.
-    tries: How many attempts to make.
-  """
-  if user_name is None or password is None:
-    from netrc import netrc
-    authenticators = netrc().authenticators("code.google.com")
-    if authenticators:
-      if user_name is None:
-        user_name = authenticators[0]
-      if password is None:
-        password = authenticators[2]
-
-  while tries > 0:
-    if user_name is None:
-      # Read username if not specified or loaded from svn config, or on
-      # subsequent tries.
-      sys.stdout.write('Please enter your googlecode.com username: ')
-      sys.stdout.flush()
-      user_name = sys.stdin.readline().rstrip()
-    if password is None:
-      # Read password if not loaded from svn config, or on subsequent tries.
-      print 'Please enter your googlecode.com password.'
-      print '** Note that this is NOT your Gmail account password! **'
-      print 'It is the password you use to access Subversion repositories,'
-      print 'and can be found here: http://code.google.com/hosting/settings'
-      password = getpass.getpass()
-
-    status, reason, url = upload(file_path, project_name, user_name, password,
-                                 summary, labels)
-    # Returns 403 Forbidden instead of 401 Unauthorized for bad
-    # credentials as of 2007-07-17.
-    if status in [httplib.FORBIDDEN, httplib.UNAUTHORIZED]:
-      # Rest for another try.
-      user_name = password = None
-      tries = tries - 1
-    else:
-      # We're done.
-      break
-
-  return status, reason, url
-
-
-def main():
-  parser = optparse.OptionParser(usage='googlecode-upload.py -s SUMMARY '
-                                 '-p PROJECT [options] FILE')
-  parser.add_option('-s', '--summary', dest='summary',
-                    help='Short description of the file')
-  parser.add_option('-p', '--project', dest='project',
-                    help='Google Code project name')
-  parser.add_option('-u', '--user', dest='user',
-                    help='Your Google Code username')
-  parser.add_option('-w', '--password', dest='password',
-                    help='Your Google Code password')
-  parser.add_option('-l', '--labels', dest='labels',
-                    help='An optional list of comma-separated labels to attach '
-                    'to the file')
-
-  options, args = parser.parse_args()
-
-  if not options.summary:
-    parser.error('File summary is missing.')
-  elif not options.project:
-    parser.error('Project name is missing.')
-  elif len(args) < 1:
-    parser.error('File to upload not provided.')
-  elif len(args) > 1:
-    parser.error('Only one file may be specified.')
-
-  file_path = args[0]
-
-  if options.labels:
-    labels = options.labels.split(',')
-  else:
-    labels = None
-
-  status, reason, url = upload_find_auth(file_path, options.project,
-                                         options.summary, labels,
-                                         options.user, options.password)
-  if url:
-    print 'The file was uploaded successfully.'
-    print 'URL: %s' % url
-    return 0
-  else:
-    print 'An error occurred. Your file was not uploaded.'
-    print 'Google Code upload server said: %s (%s)' % (reason, status)
-    return 1
-
-
-if __name__ == '__main__':
-  sys.exit(main())
diff --git a/tools/stage_to_maven_central.sh b/tools/stage_to_maven_central.sh
deleted file mode 100755
index f01ad99..0000000
--- a/tools/stage_to_maven_central.sh
+++ /dev/null
@@ -1,91 +0,0 @@
-#!/bin/bash
-
-function requireLocalRepoUpToDate() {
-  local LOCAL_CHANGES="$(svn status -u | egrep -v '^Status against revision:')"
-  # -u causes status differences from head to be reported.
-  if [[ -n "$LOCAL_CHANGES" ]]; then
-      echo "Repo is not up-to-date or not committed."
-      echo ========================================
-      echo "$LOCAL_CHANGES"
-      echo ========================================
-
-      echo "Aborting."
-      echo
-      exit -1
-  fi
-}
-
-requireLocalRepoUpToDate
-
-PROJECT_DIR="$(pushd "$(dirname "$0")/../.." >& /dev/null; pwd -P; popd >& /dev/null)"
-
-VERSION="$1"
-
-PASSPHRASE="$2"
-
-KEYNAME=41449802
-
-function usageAndExit() {
-  echo "Usage: $0 <version> <passphrase>"
-  echo
-  echo "Stages a release for deployment into Maven central"
-  echo
-  echo "<version> is the current SVN revision number."
-  echo "svn info gives more info about the state of trunk."
-  echo
-  echo "<passphrase> is the passphrase for the GPG key $KEYNAME."
-  echo "gpg --list-keys for more details on the key."
-  echo
-  echo "For example: $0 r123 ELIDED"
-  exit -1
-}
-
-if ! [ -d "$PROJECT_DIR/maven" ]; then
-  echo "Cannot determine script directory.  $PROJECT_DIR"
-  usageAndExit
-fi
-
-if ! [[ "$VERSION" =~ r[0-9]+ ]]; then
-  echo "Bad version $VERSION"
-  echo
-  usageAndExit
-fi
-
-if [ -z "$PASSPHRASE" ]; then
-  echo "Missing passphrase"
-  echo
-  usageAndExit
-fi
-
-POMFILE="$PROJECT_DIR/maven/owasp-java-html-sanitizer/owasp-java-html-sanitizer/$VERSION/owasp-java-html-sanitizer-$VERSION.pom"
-
-JAR_NO_EXT="$PROJECT_DIR/maven/owasp-java-html-sanitizer/owasp-java-html-sanitizer/$VERSION/owasp-java-html-sanitizer-$VERSION"
-
-function requireFile() {
-  local FILE="$1"
-  if ! [ -e "$FILE" ]; then
-      echo "Missing file : $FILE"
-      echo
-      usageAndExit
-  fi
-}
-
-requireFile "$POMFILE"
-requireFile "$JAR_NO_EXT".jar
-requireFile "$JAR_NO_EXT"-sources.jar
-requireFile "$JAR_NO_EXT"-javadoc.jar
-
-mvn -X -e \
-  gpg:sign-and-deploy-file \
-  -Dgpg.keyname="$KEYNAME" \
-  -Dgpg.passphrase="$PASSPHRASE" \
-  -DgeneratePom=false \
-  -DpomFile="$POMFILE" \
-  -Dfile="$JAR_NO_EXT".jar \
-  -Dfiles="$JAR_NO_EXT"-sources.jar,"$JAR_NO_EXT"-javadoc.jar \
-  -Dtypes=jar,jar \
-  -Dclassifiers=sources,javadoc \
-  -Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ \
-  -DrepositoryId=sonatype-nexus-staging \
-&& \
-echo "Follow instructions at https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide#SonatypeOSSMavenRepositoryUsageGuide-8a.ReleaseIt"
diff --git a/tools/update_tree_in_svn.py b/tools/update_tree_in_svn.py
deleted file mode 100755
index 855ed04..0000000
--- a/tools/update_tree_in_svn.py
+++ /dev/null
@@ -1,130 +0,0 @@
-#!/usr/bin/python
-
-"""
-After building can be used to replace documentation,
-and jars with the newly built versions in SVN.
-"""
-
-import filecmp
-import os
-import pipes
-import sys
-
-FILE = 'f'
-DIR = 'd'
-NO_EXIST = 'n'
-
-MIME_TYPES_BY_EXTENSION = {
-  'html': 'text/html;charset=UTF-8',
-  'txt': 'text/plain;charset=UTF-8',
-  'css': 'text/css;charset=UTF-8',
-  'js': 'text/javascript;charset=UTF-8',
-  'jar': 'application/x-java-archive',
-  'xsl': 'text/xml;charset=UTF-8',
-  'gif': 'image/gif',
-  'png': 'image/png'
-  }
-
-def sync(src_to_dest):
-  """
-  Syncrhonize the destination file tree with the source file tree
-  in both the current client and in subversion.
-  """
-
-  def classify(path):
-    if not os.path.exists(path): return NO_EXIST
-    if os.path.isdir(path): return DIR
-    return FILE
-
-  # If we see a case where (conflict) is present, then we need to be
-  # sure to do svn deletes in a separate commit before svn adds.
-  conflict = False
-  # Keep track of changes to make in subversion
-  svn_adds = []
-  svn_deletes = []
-  svn_propsets = {}
-
-  # A bunch of actions that can be taken to synchronize one aspect
-  # of a source file and a destination file
-  def run(argv):
-    """
-    Prints out a command line that needs to be run.
-    """
-    print ' '.join([pipes.quote(arg) for arg in argv])
-
-  def svn(verb_and_flags, args):
-    cmd = ['svn']
-    cmd.extend(verb_and_flags)
-    cmd.extend(args)
-    run(cmd)
-
-  def remove(src, dst): run(['rm', dst])
-
-  def svn_delete(src, dst): svn_deletes.append(dst)
-
-  def recurse(src, dst):
-    children = set()
-    if os.path.isdir(src): children.update(os.listdir(src))
-    if os.path.isdir(dst):
-      children.update(os.listdir(dst))
-    children.discard('.svn')
-    for child in children:
-      handle(os.path.join(src, child), os.path.join(dst, child))
-
-  def copy(src, dst): run(['cp', '-f', src, dst])
-
-  def copy_if_different(src, dst):
-    if not filecmp.cmp(src, dst, shallow=0): copy(src, dst)
-
-  def svn_add(src, dst):
-    svn_adds.append(dst)
-    dot = dst.rfind('.')
-    if dot >= 0:
-      mime_type = MIME_TYPES_BY_EXTENSION.get(dst[dot+1:])
-      if mime_type is not None:
-        key = ('svn:mime-type', mime_type)
-        if key not in svn_propsets:
-          svn_propsets[key] = []
-        svn_propsets[key].append(dst) 
-
-  def cnf(src, dst): conflict = True
-
-  def mkdir(src, dst): run(['mkdir', dst])
-
-  # The below table contains the actions to take for each possible
-  # scenario.
-  actions = {
-  # src        dst        actions
-    (NO_EXIST, NO_EXIST): (),
-    (NO_EXIST, FILE)    : (remove, svn_delete,),
-    (NO_EXIST, DIR)     : (recurse, remove, svn_delete,),
-    (FILE,     NO_EXIST): (copy, svn_add,),
-    (FILE,     FILE)    : (copy_if_different,),
-    (FILE,     DIR)     : (recurse, remove, svn_delete, copy, svn_add, cnf),
-    (DIR,      NO_EXIST): (mkdir, svn_add, recurse,),
-    (DIR,      FILE)    : (remove, svn_delete, mkdir, svn_add, recurse, cnf),
-    (DIR,      DIR)     : (recurse,),
-    }
-
-  # Walk the file tree (see recurse action above) and synchronize it at
-  # each step.
-  def handle(src, dst):
-    src_t = classify(src)
-    dst_t = classify(dst)
-    for action in actions[(src_t, dst_t)]: action(src, dst)
-
-  for (src, dst) in src_to_dest:
-    handle(src, dst)
-
-  if len(svn_deletes):
-    svn(['delete'], svn_deletes)
-    if conflict: 
-      svn(['commit', '-m', 'remove obsolete files from the snapshot tree'],
-          commit_args)
-  if len(svn_adds):
-    svn(['add', '--depth=empty'], svn_adds)
-  for ((propname, propvalue), files) in svn_propsets.items():
-    svn(['propset', propname, propvalue], files)
-
-if '__main__' == __name__:
-  sync([(sys.argv[1], sys.argv[2])])
diff --git a/tools/upload_jars_to_googlecode_downloads.sh b/tools/upload_jars_to_googlecode_downloads.sh
deleted file mode 100755
index bc1a4f8..0000000
--- a/tools/upload_jars_to_googlecode_downloads.sh
+++ /dev/null
@@ -1,92 +0,0 @@
-#!/bin/bash
-
-function help_and_exit() {
-    echo "Usage: $0 [-go] [-verbose] [-force]"
-    echo
-    echo "Moves minified CSS and JS to distribution directories and"
-    echo "creates a branch in SVN."
-    echo
-    echo "  -go:       Run commands instead of just echoing them."
-    echo "  -verbose:  More verbose logging."
-    echo "  -force:    Ignore sanity checks for testing."
-    echo "             Incompatible with -go."
-    echo "  -nobranch: Don't create a new release branch."
-    exit "$1"
-}
-
-# 1 for verbose logging
-export VERBOSE="0"
-# 1 if commands that have side-effects should actually be run instead of logged
-export EFFECT="0"
-
-for var in "$@"; do
-  case "$var" in
-      -verbose)
-          VERBOSE="1"
-          ;;
-      -go)
-          EFFECT="1"
-          ;;
-      -h)
-          help_and_exit 0
-          ;;
-      *)
-          echo "Unrecognized argument $var"
-          help_and_exit -1
-          ;;
-  esac
-done
-
-
-function panic() {
-    echo "PANIC: $*"
-
-    if ! (( $NO_PANIC )); then
-        exit -1
-    fi
-}
-
-function command() {
-    if (( $VERBOSE )) || ! (( $EFFECT )); then
-        echo '$' "$*"
-    fi
-    if (( $EFFECT )); then
-        "$@" || panic "command failed: $@"
-    fi
-}
-
-export VERSION_BASE="$(
-  pushd "$(dirname "$0")/../.." > /dev/null; pwd; popd > /dev/null)"
-
-if ! [ -d "$VERSION_BASE/trunk/tools" ]; then
-    panic "missing trunk/tools in $VERSION_BASE"
-fi
-
-VERSION="$(svn info | perl -ne 'print $1 if m/^Revision: (\d+)$/')"
-
-DOWNLOADS_ZIP="$VERSION_BASE/trunk/out/owasp-java-html-sanitizer.zip"
-VERSIONED_ZIP="$VERSION_BASE/trunk/out/owasp-java-html-sanitizer-r$VERSION.zip"
-
-pushd "$VERSION_BASE/trunk" > /dev/null
-command make download
-popd > /dev/null
-
-if ! [ -f "$DOWNLOADS_ZIP" ]; then
-    panic "$DOWNLOADS_ZIP is not up-to-date"
-fi
-
-command cp "$DOWNLOADS_ZIP" "$VERSIONED_ZIP"
-
-command "$VERSION_BASE/trunk/tools/googlecode_upload.py" \
-    --summary="JARs, source JAR, and documentation for version $VERSION." \
-    -p owasp-java-html-sanitizer -u mikesamuel \
-    --labels='Type-Archive,OpSys-All,Featured' \
-    "$VERSIONED_ZIP"
-
-if (( $EFFECT )); then
-    echo "Don't forget to mark any old ones deprecated at"
-    echo "https://code.google.com/p/owasp-java-html-sanitizer/downloads/list"
-else
-    echo
-    echo "Rerun with -go to actually run these commands."
-fi