1 #
   2 # Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 main.usage.summary=\
  27 Usage: {0} <extract | info | list | verify> <options> jimage...\n\
  28 use -h or --help for a list of possible options.
  29 
  30 main.usage=\
  31 Usage: {0} <extract | info | list | verify> <options> jimage...\n\
  32 \n\
  33 \  extract  - Extract all jimage entries and place in a directory specified\n\
  34 \             by the --dir=<directory> (default='.') option.\n\
  35 \n\
  36 \  info     - Prints detailed information contained in the jimage header.\n\
  37 \n\
  38 \  list     - Prints the names of all the entries in the jimage.  When used with\n\
  39 \             --verbose, list will also print entry size and offset attributes.\n\
  40 \n\
  41 \  verify   - Reports on any .class entries that don't verify as classes.\n\
  42 \n\
  43 Possible options include:
  44 
  45 main.usage.extract=\
  46 \  extract  - Extract all jimage entries and place in a directory specified\n\
  47 \             by the --dir=<directory> (default='.') option.
  48 
  49 main.usage.info=\
  50 \  info     - Prints detailed information contained in the jimage header.
  51 
  52 main.usage.list=\
  53 \  list     - Prints the names of all the entries in the jimage.  When used with\n\
  54 \             --verbose, list will also print entry size and offset attributes.
  55 
  56 main.usage.verify=\
  57 \  verify   - Reports errors on any .class entries that don't verify as classes.
  58 
  59 error.prefix=Error:
  60 warn.prefix=Warning:
  61 
  62 main.opt.dir=\
  63 \       --dir                        Target directory for extract directive
  64 
  65 main.opt.include=\
  66 \       --include <pattern-list>     Pattern list for filtering entries.
  67 
  68 main.opt.full-version=\
  69 \       --full-version               Print full version information
  70 
  71 main.opt.help=\
  72 \  -h,  --help                       Print usage message
  73 
  74 main.opt.verbose=\
  75 \       --verbose                    Listing prints entry size and offset\n\
  76 \                                    attributes
  77 
  78 main.opt.version=\
  79 \       --version                    Print version information
  80 
  81 main.command.files=\
  82 \       @<filename>                  Read options from file
  83 
  84 main.opt.footer=\
  85 \n\
  86 \For options requiring a <pattern-list>, the value will be a comma separated\n\
  87 \list of elements each using one the following forms:\n\
  88 \  <glob-pattern>\n\
  89 \  glob:<glob-pattern>\n\
  90 \  regex:<regex-pattern>
  91 
  92 
  93 
  94 err.not.a.task=task must be one of <extract | info | list | verify>: {0}
  95 err.missing.arg=no value given for {0}
  96 err.not.a.dir=not a directory: {0}
  97 err.not.a.jimage=not a jimage file: {0}
  98 err.no.jimage=no jimage provided
  99 err.option.unsupported={0} not supported: {1}
 100 err.unknown.option=unknown option: {0}