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