< prev index next >

src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/MessageBundle.properties

Print this page


   1 #
   2 # Copyright (c) 1997, 2015, 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


  42 \ \ -private           :  display this help message\n\
  43 Mode:\n\
  44 \ \ code         :  generate Java source code (default)\n\
  45 \ \ dryrun       :  compile the schema in memory, but don't generate the Java source\n\
  46 \ \ zip          :  generate Java source code into a zip file specified by the -d option\n\
  47 \ \ sig          :  dump the signatures of the generated code\n\
  48 \ \ forest       :  dump transformed DOM forest\n\
  49 
  50 Driver.Public.Usage = \
  51 Usage: xjc [-options ...] <schema file/URL/dir/jar> ... [-b <bindinfo>] ...\n\
  52 If dir is specified, all schema files in it will be compiled.\n\
  53 If jar is specified, /META-INF/sun-jaxb.episode binding file will be compiled.\n\
  54 Options:\n\
  55 \ \ -nv                :  do not perform strict validation of the input schema(s)\n\
  56 \ \ -extension         :  allow vendor extensions - do not strictly follow the\n\
  57 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Compatibility Rules and App E.2 from the JAXB Spec\n\
  58 \ \ -b <file/dir>      :  specify external bindings files (each <file> must have its own -b)\n\
  59 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ If a directory is given, **/*.xjb is searched\n\
  60 \ \ -d <dir>           :  generated files will go into this directory\n\
  61 \ \ -p <pkg>           :  specifies the target package\n\

  62 \ \ -httpproxy <proxy> :  set HTTP/HTTPS proxy. Format is [user[:password]@]proxyHost:proxyPort\n\
  63 \ \ -httpproxyfile <f> :  Works like -httpproxy but takes the argument in a file to protect password \n\
  64 \ \ -classpath <arg>   :  specify where to find user class files\n\
  65 \ \ -catalog <file>    :  specify catalog files to resolve external entity references\n\
  66 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ support TR9401, XCatalog, and OASIS XML Catalog format.\n\
  67 \ \ -readOnly          :  generated files will be in read-only mode\n\
  68 \ \ -npa               :  suppress generation of package level annotations (**/package-info.java)\n\
  69 \ \ -no-header         :  suppress generation of a file header with timestamp\n\
  70 \ \ -target (2.0|2.1)  :  behave like XJC 2.0 or 2.1 and generate code that doesn't use any 2.2 features.\n\
  71 \ \ -encoding <encoding> :  specify character encoding for generated source files\n\
  72 \ \ -enableIntrospection :  enable correct generation of Boolean getters/setters to enable Bean Introspection apis \n\
  73 \ \ -disableXmlSecurity  :  disables XML security features when parsing XML documents \n\
  74 \ \ -contentForWildcard  :  generates content property for types with multiple xs:any derived elements \n\
  75 \ \ -xmlschema         :  treat input as W3C XML Schema (default)\n\
  76 \ \ -dtd               :  treat input as XML DTD (experimental,unsupported)\n\
  77 \ \ -wsdl              :  treat input as WSDL and compile schemas inside it (experimental,unsupported)\n\
  78 \ \ -verbose           :  be extra verbose\n\
  79 \ \ -quiet             :  suppress compiler output\n\
  80 \ \ -help              :  display this help message\n\
  81 \ \ -version           :  display version information\n\


 103 # Usage not found. TODO Remove
 104 #Driver.MissingCompatibilityOperand = \
 105 #       the -compatibility option is missing an operand
 106 
 107 # Not concatenated with any other string (written on a separate line).
 108 Driver.MissingOperand = \
 109         an operand is missing
 110 
 111 # Not concatenated with any other string (written on a separate line).
 112 Driver.MissingProxyHost = \
 113         either the -host option is missing an operand \n\
 114         or -port was specified but not -host
 115 
 116 # Not concatenated with any other string (written on a separate line).
 117 Driver.MissingProxyPort = \
 118         either the -port option is missing an operand \n\
 119         or -host was specified but not -port
 120 
 121 Driver.ILLEGAL_TARGET_VERSION = \
 122     "{0}" is not a valid target version. "2.0" and "2.1" are supported.



 123 
 124 # Not concatenated with any other string (written on a separate line).
 125 Driver.MISSING_PROXYFILE = \
 126     the -httpproxyfile option is missing an operand
 127 
 128 Driver.NO_SUCH_FILE = \
 129     No such file: {0}
 130 
 131 Driver.ILLEGAL_PROXY = \
 132     "{0}" is not a valid proxy format. The format is [user[:password]@]proxyHost:proxyPort
 133 
 134 # Not concatenated with any other string (written on a separate line).
 135 Driver.UnrecognizedMode = \
 136         unrecognized mode {0}
 137 
 138 # Not concatenated with any other string (written on a separate line).
 139 Driver.UnrecognizedParameter = \
 140         unrecognized parameter {0}
 141 
 142 Driver.UnsupportedEncoding = \


   1 #
   2 # Copyright (c) 1997, 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


  42 \ \ -private           :  display this help message\n\
  43 Mode:\n\
  44 \ \ code         :  generate Java source code (default)\n\
  45 \ \ dryrun       :  compile the schema in memory, but don't generate the Java source\n\
  46 \ \ zip          :  generate Java source code into a zip file specified by the -d option\n\
  47 \ \ sig          :  dump the signatures of the generated code\n\
  48 \ \ forest       :  dump transformed DOM forest\n\
  49 
  50 Driver.Public.Usage = \
  51 Usage: xjc [-options ...] <schema file/URL/dir/jar> ... [-b <bindinfo>] ...\n\
  52 If dir is specified, all schema files in it will be compiled.\n\
  53 If jar is specified, /META-INF/sun-jaxb.episode binding file will be compiled.\n\
  54 Options:\n\
  55 \ \ -nv                :  do not perform strict validation of the input schema(s)\n\
  56 \ \ -extension         :  allow vendor extensions - do not strictly follow the\n\
  57 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Compatibility Rules and App E.2 from the JAXB Spec\n\
  58 \ \ -b <file/dir>      :  specify external bindings files (each <file> must have its own -b)\n\
  59 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ If a directory is given, **/*.xjb is searched\n\
  60 \ \ -d <dir>           :  generated files will go into this directory\n\
  61 \ \ -p <pkg>           :  specifies the target package\n\
  62 \ \ -m <name>          :  generate module-info.java with given Java module name\n\
  63 \ \ -httpproxy <proxy> :  set HTTP/HTTPS proxy. Format is [user[:password]@]proxyHost:proxyPort\n\
  64 \ \ -httpproxyfile <f> :  Works like -httpproxy but takes the argument in a file to protect password \n\
  65 \ \ -classpath <arg>   :  specify where to find user class files\n\
  66 \ \ -catalog <file>    :  specify catalog files to resolve external entity references\n\
  67 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ support TR9401, XCatalog, and OASIS XML Catalog format.\n\
  68 \ \ -readOnly          :  generated files will be in read-only mode\n\
  69 \ \ -npa               :  suppress generation of package level annotations (**/package-info.java)\n\
  70 \ \ -no-header         :  suppress generation of a file header with timestamp\n\
  71 \ \ -target (2.0|2.1)  :  behave like XJC 2.0 or 2.1 and generate code that doesn't use any 2.2 features.\n\
  72 \ \ -encoding <encoding> :  specify character encoding for generated source files\n\
  73 \ \ -enableIntrospection :  enable correct generation of Boolean getters/setters to enable Bean Introspection apis \n\
  74 \ \ -disableXmlSecurity  :  disables XML security features when parsing XML documents \n\
  75 \ \ -contentForWildcard  :  generates content property for types with multiple xs:any derived elements \n\
  76 \ \ -xmlschema         :  treat input as W3C XML Schema (default)\n\
  77 \ \ -dtd               :  treat input as XML DTD (experimental,unsupported)\n\
  78 \ \ -wsdl              :  treat input as WSDL and compile schemas inside it (experimental,unsupported)\n\
  79 \ \ -verbose           :  be extra verbose\n\
  80 \ \ -quiet             :  suppress compiler output\n\
  81 \ \ -help              :  display this help message\n\
  82 \ \ -version           :  display version information\n\


 104 # Usage not found. TODO Remove
 105 #Driver.MissingCompatibilityOperand = \
 106 #       the -compatibility option is missing an operand
 107 
 108 # Not concatenated with any other string (written on a separate line).
 109 Driver.MissingOperand = \
 110         an operand is missing
 111 
 112 # Not concatenated with any other string (written on a separate line).
 113 Driver.MissingProxyHost = \
 114         either the -host option is missing an operand \n\
 115         or -port was specified but not -host
 116 
 117 # Not concatenated with any other string (written on a separate line).
 118 Driver.MissingProxyPort = \
 119         either the -port option is missing an operand \n\
 120         or -host was specified but not -port
 121 
 122 Driver.ILLEGAL_TARGET_VERSION = \
 123     "{0}" is not a valid target version. "2.0" and "2.1" are supported.
 124 # Java module name is invalid, {0} - Java module name.
 125 Driver.INVALID_JAVA_MODULE_NAME = \
 126     invalid Java module name: "{0}"
 127 
 128 # Not concatenated with any other string (written on a separate line).
 129 Driver.MISSING_PROXYFILE = \
 130     the -httpproxyfile option is missing an operand
 131 
 132 Driver.NO_SUCH_FILE = \
 133     No such file: {0}
 134 
 135 Driver.ILLEGAL_PROXY = \
 136     "{0}" is not a valid proxy format. The format is [user[:password]@]proxyHost:proxyPort
 137 
 138 # Not concatenated with any other string (written on a separate line).
 139 Driver.UnrecognizedMode = \
 140         unrecognized mode {0}
 141 
 142 # Not concatenated with any other string (written on a separate line).
 143 Driver.UnrecognizedParameter = \
 144         unrecognized parameter {0}
 145 
 146 Driver.UnsupportedEncoding = \


< prev index next >