1 main.usage.summary=\
   2 Usage: {0} <extract|recreate|info|list|verify> <options> jimage...\n\
   3 use --help for a list of possible options
   4 
   5 main.usage=\
   6 Usage: {0} <extract|recreate|info|list|verify> <options> jimage...\n\
   7 \n\
   8 \  extract  - Extract all jimage entries into separate files into the directory\n\
   9 \             specified by --dir=<directory> (default='.')\n\
  10 \  recreate - Reconstructs a jimage from an extracted directory (--dir)\n\
  11 \  info     - Prints information specified in the jimage header.\n\
  12 \  list     - Prints the names of all the entries in the jimage.  When used with\n\
  13 \             --verbose will also print entry attributes ex. size and offset.\n\
  14 \  verify   - Reports errors on any .class entries that don't verify as classes.\n\
  15 \n\
  16 Possible options include:
  17 
  18 error.prefix=Error:
  19 warn.prefix=Warning:
  20 
  21 main.opt.dir=\
  22 \  --dir                                Target directory for create/expand
  23 
  24 main.opt.verbose=\
  25 \  --verbose                            Verbose listing
  26 
  27 main.opt.help=\
  28 \  --help                               Print this usage message
  29 
  30 main.opt.version=\
  31 \  --version                            Version information
  32 
  33 err.invalid.task=task must be list|expand|info|verify: {0}
  34 err.not.a.dir=not a directory: {0}
  35 err.jimage.not.specified=no jimage specified
  36 err.only.one.jimage=only one jimage should be specified
  37 err.jimage.already.exists=jimage already exists: {0}
  38 err.cannot.read.file=cannot read file: {0}
  39 err.cannot.create.dir=cannot create directory: {0}
  40 err.not.a.jimage=not a jimage file: {0}
  41 err.unknown.option=unknown option: {0}
  42 err.missing.arg=no value given for {0}
  43 err.internal.error=internal error: {0} {1} {2}
  44 err.invalid.arg.for.option=invalid argument for option: {0}
  45 err.option.unsupported={0} not supported: {1}