src/share/classes/com/sun/tools/jdeps/resources/jdeps.properties

Wed, 04 Dec 2013 15:39:36 -0800

author
mchung
date
Wed, 04 Dec 2013 15:39:36 -0800
changeset 2214
4a2ed1900428
parent 2139
defadd528513
child 2525
2eb010b6cb22
child 2538
1e39ae45d8ac
permissions
-rw-r--r--

8029216: (jdeps) Provide a specific option to report JDK internal APIs
Reviewed-by: alanb

     1 main.usage.summary=\
     2 Usage: {0} <options> <classes...>\n\
     3 use -h, -? or --help for a list of possible options
     5 main.usage=\
     6 Usage: {0} <options> <classes...>\n\
     7 where <classes> can be a pathname to a .class file, a directory, a JAR file,\n\
     8 or a fully-qualified class name.  Possible options include:
    10 error.prefix=Error:
    11 warn.prefix=Warning:
    13 main.opt.h=\
    14 \  -h -?        -help                 Print this usage message
    16 main.opt.version=\
    17 \  -version                           Version information
    19 main.opt.v=\
    20 \  -v           -verbose              Print all class level dependencies\n\
    21 \  -verbose:package                   Print package-level dependencies excluding\n\
    22 \                                     dependencies within the same archive\n\
    23 \  -verbose:class                     Print class-level dependencies excluding\n\
    24 \                                     dependencies within the same archive
    26 main.opt.s=\
    27 \  -s           -summary              Print dependency summary only
    29 main.opt.p=\
    30 \  -p <pkgname> -package <pkgname>    Finds dependences in the given package\n\
    31 \                                     (may be given multiple times)
    33 main.opt.e=\
    34 \  -e <regex>   -regex <regex>        Finds dependences in packages matching pattern\n\
    35 \                                     (-p and -e are exclusive)
    37 main.opt.include=\
    38 \  -include <regex>                   Restrict analysis to classes matching pattern\n\
    39 \                                     This option filters the list of classes to\n\
    40 \                                     be analyzed.  It can be used together with\n\
    41 \                                     -p and -e which apply pattern to the dependences
    43 main.opt.P=\
    44 \  -P           -profile              Show profile or the file containing a package
    46 main.opt.cp=\
    47 \  -cp <path>   -classpath <path>     Specify where to find class files
    49 main.opt.R=\
    50 \  -R           -recursive            Recursively traverse all dependencies
    52 main.opt.apionly=\
    53 \  -apionly                           Restrict analysis to APIs i.e. dependences\n\
    54 \                                     from the signature of public and protected\n\
    55 \                                     members of public classes including field\n\
    56 \                                     type, method parameter types, returned type,\n\
    57 \                                     checked exception types etc
    59 main.opt.dotoutput=\
    60 \  -dotoutput <dir>                   Destination directory for DOT file output
    62 main.opt.jdkinternals=\
    63 \  -jdkinternals                      Finds class-level dependences on JDK internal APIs.\n\
    64 \                                     By default, it analyzes all classes on -classpath\n\
    65 \                                     and input files unless -include option is specified.\n\
    66 \                                     This option cannot be used with -p, -e and -s options.\n\
    67 \                                     WARNING: JDK internal APIs may not be accessible in\n\
    68 \                                     the next release.
    70 main.opt.depth=\
    71 \  -depth=<depth>                     Specify the depth of the transitive\n\
    72 \                                     dependency analysis
    75 err.unknown.option=unknown option: {0}
    76 err.missing.arg=no value given for {0}
    77 err.internal.error=internal error: {0} {1} {2}
    78 err.invalid.arg.for.option=invalid argument for option: {0}
    79 err.option.after.class=option must be specified before classes: {0}
    80 err.option.unsupported={0} not supported: {1}
    81 err.profiles.msg=No profile information
    82 err.dot.output.path=invalid path: {0}
    83 warn.invalid.arg=Invalid classname or pathname not exist: {0}
    84 warn.split.package=package {0} defined in {1} {2}
    86 artifact.not.found=not found

mercurial