langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/resources/jdeprscan.properties
changeset 41863 98b049c8b848
parent 41439 ee4857e4fa85
child 44295 f147ed497558
equal deleted inserted replaced
41862:471a0cb1b986 41863:98b049c8b848
    12 \       --version
    12 \       --version
    13 
    13 
    14 main.help=\
    14 main.help=\
    15 Scans each argument for usages of deprecated APIs. An argument\n\
    15 Scans each argument for usages of deprecated APIs. An argument\n\
    16 may be a directory specifying the root of a package hierarchy,\n\
    16 may be a directory specifying the root of a package hierarchy,\n\
    17 a JAR file, or a class name. The class name must be specified\n\
    17 a JAR file, a class file, or a class name. The class name must be\n\
    18 using a fully qualified class name using the $ separator character\n\
    18 specified using a fully qualified class name using the $ separator\n\
    19 for nested classes, for example,\n\
    19 character for nested classes, for example,\n\
    20 \n\
    20 \n\
    21 \    java.lang.Thread$State\n\
    21 \    java.lang.Thread$State\n\
    22 \n\
    22 \n\
    23 The --class-path option provides a search path for resolution\n\
    23 The --class-path option provides a search path for resolution\n\
    24 of dependent classes.\n\
    24 of dependent classes.\n\
    71 \      Prints this message.\n\
    71 \      Prints this message.\n\
    72 \  --Xprint-csv\n\
    72 \  --Xprint-csv\n\
    73 \      Prints a CSV file containing the loaded deprecation information\n\
    73 \      Prints a CSV file containing the loaded deprecation information\n\
    74 \      instead of scanning any classes or JAR files.
    74 \      instead of scanning any classes or JAR files.
    75 
    75 
    76 error.prefix=Error:
       
    77 
       
    78 scan.process.class=Processing class {0}...
    76 scan.process.class=Processing class {0}...
    79 
    77 
    80 scan.dep.normal=deprecated
    78 scan.dep.normal=
    81 scan.dep.removal=deprecated FOR REMOVAL
    79 scan.dep.removal=(forRemoval=true)
    82 
    80 
    83 scan.out.extends={0} {1} extends class {2} {3}
    81 scan.err.exception=error: unexpected exception {0}
    84 scan.out.implements={0} {1} implements interface {2} {3}
    82 scan.err.noclass=error: cannot find class {0}
    85 scan.out.usestype={0} {1} uses type {2} {3}
    83 scan.err.nofile=error: cannot find file {0}
    86 scan.out.usesmethodintype={0} {1} uses method in type {2} {3}
    84 scan.err.nomethod=error: cannot resolve Methodref {0}.{1}:{2}
    87 scan.out.usesmethod={0} {1} uses method {2} {3} {4} {5}
    85 
    88 scan.out.usesintfmethodintype={0} {1} uses interface method in type {2} {3}
    86 scan.head.jar=Jar file {0}:
    89 scan.out.usesintfmethod={0} {1} uses interface method {2} {3} {4} {5}
    87 scan.head.dir=Directory {0}:
    90 scan.out.usesfieldintype={0} {1} uses field in type {2} {3}
    88 
    91 scan.out.usesfield={0} {1} uses field {2} {3} {4}
    89 scan.out.extends={0} {1} extends deprecated class {2} {3}
    92 scan.out.usesfieldoftype={0} {1} uses field of type {2} {3} {4} {5}
    90 scan.out.implements={0} {1} implements deprecated interface {2} {3}
    93 scan.out.hasfield={0} {1} has field {2} of type {3} {4}
    91 scan.out.usesclass={0} {1} uses deprecated class {2} {3}
    94 scan.out.methodparmtype={0} {1} method {2} has parameter type {3} {4}
    92 scan.out.usesmethod={0} {1} uses deprecated method {2}::{3}{4} {5}
    95 scan.out.methodrettype={0} {1} method {2} has return type {3} {4}
    93 scan.out.usesintfmethod={0} {1} uses deprecated method {2}::{3}{4} {5}
    96 scan.out.methodoverride={0} {1} overrides method {2} {3} {4} {5}
    94 scan.out.usesfield={0} {1} uses deprecated field {2}::{3} {4}
       
    95 scan.out.hasfield={0} {1} has field named {2} of deprecated type {3} {4}
       
    96 scan.out.methodparmtype={0} {1} has method named {2} having deprecated parameter type {3} {4}
       
    97 scan.out.methodrettype={0} {1} has method named {2} having deprecated return type {3} {4}
       
    98 scan.out.methodoverride={0} {1} overrides deprecated method {2}::{3}{4} {5}