< prev index next >

src/jdk.jartool/share/classes/sun/tools/jar/resources/jar.properties

Print this page




  28 error.cant.open=\
  29      can''t open: {0}
  30 error.illegal.option=\
  31         Illegal option: {0}
  32 error.unrecognized.option=\
  33     unrecognized option : {0}
  34 error.missing.arg=\
  35      option {0} requires an argument
  36 error.bad.file.arg=\
  37      Error parsing file arguments
  38 error.bad.option=\
  39         One of options -{ctxuid} must be specified.
  40 error.bad.cflag=\
  41         'c' flag requires manifest or input files to be specified!
  42 error.bad.uflag=\
  43         'u' flag requires manifest, 'e' flag or input files to be specified!
  44 error.bad.eflag=\
  45         'e' flag and manifest with the 'Main-Class' attribute cannot be specified \n\
  46          together!
  47 error.bad.dflag=\
  48         '-d, --print-module-descriptor' option requires no input file(s) to be specified: {0}
  49 error.bad.reason=\
  50         bad reason: {0}, must be one of deprecated, deprecated-for-removal, or incubating
  51 error.nosuch.fileordir=\
  52         {0} : no such file or directory
  53 error.write.file=\
  54         Error in writing existing jar file
  55 error.create.dir=\
  56         {0} : could not create directory
  57 error.incorrect.length=\
  58         incorrect length while processing: {0}
  59 error.create.tempfile=\
  60         Could not create a temporary file
  61 error.hash.dep=\
  62         Hashing module {0} dependences, unable to find module {1} on module path
  63 error.module.options.without.info=\
  64         One of --module-version or --hash-modules without module-info.class


  65 error.unexpected.module-info=\
  66         Unexpected module descriptor {0}
  67 error.module.descriptor.not.found=\
  68         Module descriptor not found
  69 error.invalid.versioned.module.attribute=\
  70         Invalid module descriptor attribute {0}
  71 error.missing.provider=\
  72         Service provider not found: {0}
  73 error.release.value.notnumber=\
  74         release {0} not valid
  75 error.release.value.toosmall=\
  76         release {0} not valid, must be >= 9
  77 error.release.unexpected.versioned.entry=\
  78         unexpected versioned entry {0} for release {1}
  79 error.validator.jarfile.exception=\
  80         can not validate {0}: {1}
  81 error.validator.jarfile.invalid=\
  82         invalid multi-release jar file {0} deleted
  83 error.validator.bad.entry.name=\
  84         entry name malformed, {0}


 112         module-info.class in a versioned directory contains different "provides"
 113 error.validator.info.version.notequal=\
 114         {0}: module-info.class in a versioned directory contains different "version"
 115 error.validator.info.manclass.notequal=\
 116         {0}: module-info.class in a versioned directory contains different "main-class"
 117 warn.validator.identical.entry=\
 118         Warning: entry {0} contains a class that\n\
 119         is identical to an entry already in the jar
 120 warn.validator.resources.with.same.name=\
 121         Warning: entry {0}, multiple resources with same name
 122 warn.validator.concealed.public.class=\
 123         Warning: entry {0} is a public class\n\
 124         in a concealed package, placing this jar on the class path will result\n\
 125         in incompatible public interfaces
 126 warn.release.unexpected.versioned.entry=\
 127         unexpected versioned entry {0}
 128 out.added.manifest=\
 129         added manifest
 130 out.added.module-info=\
 131         added module-info: {0}


 132 out.update.manifest=\
 133         updated manifest
 134 out.update.module-info=\
 135         updated module-info: {0}
 136 out.ignore.entry=\
 137         ignoring entry {0}
 138 out.adding=\
 139         adding: {0}
 140 out.deflated=\
 141         (deflated {0}%)
 142 out.stored=\
 143         (stored 0%)
 144 out.create=\
 145         \ \ created: {0}
 146 out.extracted=\
 147         extracted: {0}
 148 out.inflated=\
 149         \ inflated: {0}
 150 out.size=\
 151         (in = {0}) (out= {1})


 207 To shorten or simplify the jar command, you can specify arguments in a separate\n\
 208 text file and pass it to the jar command with the at sign (@) as a prefix.\n\
 209 \n\
 210 \ Examples:\n\
 211 \ # Read additional options and list of class files from the file classes.list\n\
 212 \ jar --create --file my.jar @classes.list\
 213 \n
 214 main.help.opt.main=\
 215 \ Main operation mode:\n
 216 main.help.opt.main.create=\
 217 \  -c, --create               Create the archive
 218 main.help.opt.main.generate-index=\
 219 \  -i, --generate-index=FILE  Generate index information for the specified jar\n\
 220 \                             archives
 221 main.help.opt.main.list=\
 222 \  -t, --list                 List the table of contents for the archive
 223 main.help.opt.main.update=\
 224 \  -u, --update               Update an existing jar archive
 225 main.help.opt.main.extract=\
 226 \  -x, --extract              Extract named (or all) files from the archive
 227 main.help.opt.main.print-module-descriptor=\
 228 \  -d, --print-module-descriptor  Print the module descriptor
 229 main.help.opt.any=\
 230 \ Operation modifiers valid in any mode:\n\
 231 \n\
 232 \  -C DIR                     Change to the specified directory and include the\n\
 233 \                             following file
 234 main.help.opt.any.file=\
 235 \  -f, --file=FILE            The archive file name. When omitted, either stdin or\n\
 236 \                             stdout is used based on the operation\n\
 237 \      --release VERSION      Places all following files in a versioned directory\n\
 238 \                             of the jar (i.e. META-INF/versions/VERSION/)
 239 main.help.opt.any.verbose=\
 240 \  -v, --verbose              Generate verbose output on standard output
 241 main.help.opt.create=\
 242 \ Operation modifiers valid only in create mode:\n
 243 main.help.opt.create.normalize=\
 244 \  -n, --normalize            Normalize information in the new jar archive\n\
 245 \                             after creation
 246 main.help.opt.create.update=\
 247 \ Operation modifiers valid only in create and update mode:\n
 248 main.help.opt.create.update.main-class=\




  28 error.cant.open=\
  29      can''t open: {0}
  30 error.illegal.option=\
  31         Illegal option: {0}
  32 error.unrecognized.option=\
  33     unrecognized option : {0}
  34 error.missing.arg=\
  35      option {0} requires an argument
  36 error.bad.file.arg=\
  37      Error parsing file arguments
  38 error.bad.option=\
  39         One of options -{ctxuid} must be specified.
  40 error.bad.cflag=\
  41         'c' flag requires manifest or input files to be specified!
  42 error.bad.uflag=\
  43         'u' flag requires manifest, 'e' flag or input files to be specified!
  44 error.bad.eflag=\
  45         'e' flag and manifest with the 'Main-Class' attribute cannot be specified \n\
  46          together!
  47 error.bad.dflag=\
  48         '-d, --describe-module' option requires no input file(s) to be specified: {0}
  49 error.bad.reason=\
  50         bad reason: {0}, must be one of deprecated, deprecated-for-removal, or incubating
  51 error.nosuch.fileordir=\
  52         {0} : no such file or directory
  53 error.write.file=\
  54         Error in writing existing jar file
  55 error.create.dir=\
  56         {0} : could not create directory
  57 error.incorrect.length=\
  58         incorrect length while processing: {0}
  59 error.create.tempfile=\
  60         Could not create a temporary file
  61 error.hash.dep=\
  62         Hashing module {0} dependences, unable to find module {1} on module path
  63 error.module.options.without.info=\
  64         One of --module-version or --hash-modules without module-info.class
  65 error.unable.derive.automodule=\
  66         Unable to derive module descriptor for: {0}
  67 error.unexpected.module-info=\
  68         Unexpected module descriptor {0}
  69 error.module.descriptor.not.found=\
  70         Module descriptor not found
  71 error.invalid.versioned.module.attribute=\
  72         Invalid module descriptor attribute {0}
  73 error.missing.provider=\
  74         Service provider not found: {0}
  75 error.release.value.notnumber=\
  76         release {0} not valid
  77 error.release.value.toosmall=\
  78         release {0} not valid, must be >= 9
  79 error.release.unexpected.versioned.entry=\
  80         unexpected versioned entry {0} for release {1}
  81 error.validator.jarfile.exception=\
  82         can not validate {0}: {1}
  83 error.validator.jarfile.invalid=\
  84         invalid multi-release jar file {0} deleted
  85 error.validator.bad.entry.name=\
  86         entry name malformed, {0}


 114         module-info.class in a versioned directory contains different "provides"
 115 error.validator.info.version.notequal=\
 116         {0}: module-info.class in a versioned directory contains different "version"
 117 error.validator.info.manclass.notequal=\
 118         {0}: module-info.class in a versioned directory contains different "main-class"
 119 warn.validator.identical.entry=\
 120         Warning: entry {0} contains a class that\n\
 121         is identical to an entry already in the jar
 122 warn.validator.resources.with.same.name=\
 123         Warning: entry {0}, multiple resources with same name
 124 warn.validator.concealed.public.class=\
 125         Warning: entry {0} is a public class\n\
 126         in a concealed package, placing this jar on the class path will result\n\
 127         in incompatible public interfaces
 128 warn.release.unexpected.versioned.entry=\
 129         unexpected versioned entry {0}
 130 out.added.manifest=\
 131         added manifest
 132 out.added.module-info=\
 133         added module-info: {0}
 134 out.automodule.name=\
 135         No module descriptor found. Derived automatic module: {0}
 136 out.update.manifest=\
 137         updated manifest
 138 out.update.module-info=\
 139         updated module-info: {0}
 140 out.ignore.entry=\
 141         ignoring entry {0}
 142 out.adding=\
 143         adding: {0}
 144 out.deflated=\
 145         (deflated {0}%)
 146 out.stored=\
 147         (stored 0%)
 148 out.create=\
 149         \ \ created: {0}
 150 out.extracted=\
 151         extracted: {0}
 152 out.inflated=\
 153         \ inflated: {0}
 154 out.size=\
 155         (in = {0}) (out= {1})


 211 To shorten or simplify the jar command, you can specify arguments in a separate\n\
 212 text file and pass it to the jar command with the at sign (@) as a prefix.\n\
 213 \n\
 214 \ Examples:\n\
 215 \ # Read additional options and list of class files from the file classes.list\n\
 216 \ jar --create --file my.jar @classes.list\
 217 \n
 218 main.help.opt.main=\
 219 \ Main operation mode:\n
 220 main.help.opt.main.create=\
 221 \  -c, --create               Create the archive
 222 main.help.opt.main.generate-index=\
 223 \  -i, --generate-index=FILE  Generate index information for the specified jar\n\
 224 \                             archives
 225 main.help.opt.main.list=\
 226 \  -t, --list                 List the table of contents for the archive
 227 main.help.opt.main.update=\
 228 \  -u, --update               Update an existing jar archive
 229 main.help.opt.main.extract=\
 230 \  -x, --extract              Extract named (or all) files from the archive
 231 main.help.opt.main.describe-module=\
 232 \  -d, --describe-module      Print the module descriptor, or automatic module name
 233 main.help.opt.any=\
 234 \ Operation modifiers valid in any mode:\n\
 235 \n\
 236 \  -C DIR                     Change to the specified directory and include the\n\
 237 \                             following file
 238 main.help.opt.any.file=\
 239 \  -f, --file=FILE            The archive file name. When omitted, either stdin or\n\
 240 \                             stdout is used based on the operation\n\
 241 \      --release VERSION      Places all following files in a versioned directory\n\
 242 \                             of the jar (i.e. META-INF/versions/VERSION/)
 243 main.help.opt.any.verbose=\
 244 \  -v, --verbose              Generate verbose output on standard output
 245 main.help.opt.create=\
 246 \ Operation modifiers valid only in create mode:\n
 247 main.help.opt.create.normalize=\
 248 \  -n, --normalize            Normalize information in the new jar archive\n\
 249 \                             after creation
 250 main.help.opt.create.update=\
 251 \ Operation modifiers valid only in create and update mode:\n
 252 main.help.opt.create.update.main-class=\


< prev index next >