if (verbose) log ("classpath: " + classpath, Project.MSG_INFO);
if (verbose) log ("destdir: " + destdir, Project.MSG_INFO);
if (verbose) log ("genajdir: " + genajdir, Project.MSG_INFO);
try {
if (injars != null) analyzer = new Analyzer(injars.list(),
classpath.list(),
genajdir,
verbose);
else if (inpath != null) analyzer = new Analyzer(inpath.list(),
classpath.list(),
genajdir,
verbose);
else throw new BuildException("One of injars or inpath must be specified.");
analyzer.analyze();