public final class Main
extends java.lang.Object
| Modifier and Type | Method | Description |
|---|---|---|
static void |
main(java.lang.String... pArgs) |
Collect metrics from all files ending in ".java" found in the path(s) specified as
argument(s) to this method, recursively descending into subdirectories.
|
public static void main(@Nonnull
java.lang.String... pArgs)
The synopsis for the arguments to this method are:
[-text] [-xml] [-html] [-xsl xsl-file] [-o output-file] path ...where the options are
-text: report the collected metrics in plain text format-xml: report the collected metrics in xml format-html: report the collected metrics in html format-xsl xsl-file: report the collected metrics by applying the specified XSL file to
an intermediate xml report-o output-file: write the report to the specified fileSystem.out.pArgs - Any options followed by the Java source path(s) to collect metrics from. The
files in the paths are assumed to be encoded in UTF-8.java.lang.NullPointerException - if pArgs is null.