1 #
   2 #
   3 # Copyright (c) 1996, 2018, Oracle and/or its affiliates. All rights reserved.
   4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   5 #
   6 # This code is free software; you can redistribute it and/or modify it
   7 # under the terms of the GNU General Public License version 2 only, as
   8 # published by the Free Software Foundation.  Oracle designates this
   9 # particular file as subject to the "Classpath" exception as provided
  10 # by Oracle in the LICENSE file that accompanied this code.
  11 #
  12 # This code is distributed in the hope that it will be useful, but WITHOUT
  13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15 # version 2 for more details (a copy is included in the LICENSE file that
  16 # accompanied this code).
  17 #
  18 # You should have received a copy of the GNU General Public License version
  19 # 2 along with this work; if not, write to the Free Software Foundation,
  20 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  21 #
  22 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  23 # or visit www.oracle.com if you need additional information or have any
  24 # questions.
  25 #
  26 
  27 
  28 #*****************************************************************************
  29 #*                    Copyright (c) IBM Corporation 1998                     *
  30 #*                                                                           *
  31 #* (C) Copyright IBM Corp. 1998                                              *
  32 #*                                                                           *
  33 #*****************************************************************************
  34 
  35 # To add a generator sun.rmi.rmic.Foo which is invoked via the -foo option:
  36 #
  37 #   1. Add "foo" to generator.args list.
  38 #   2. Add line: generator.class.foo=sun.rmi.rmic.Foo
  39 #   3. Update rmic.usage string to include new arguments.
  40 
  41 # For each available generator, list the command line argument used
  42 # to invoke it.  The value can be a single item or a comma separated
  43 # list.
  44 
  45 generator.args=v1.1,vcompat,v1.2,xprint
  46 
  47 # For each generator, specify the class to invoke, using the following
  48 # syntax:
  49 #
  50 #     generator.class.{arg}=fullClassName
  51 #
  52 # The 'default' entry is required and will be used if none of the args
  53 # specified in generator.args is passed. Note that {arg} is compared
  54 # using String.equalsIgnoreCase().
  55 
  56 generator.class.default=sun.rmi.rmic.RMIGenerator
  57 
  58 generator.class.v1.1=sun.rmi.rmic.RMIGenerator
  59 generator.class.vcompat=sun.rmi.rmic.RMIGenerator
  60 generator.class.v1.2=sun.rmi.rmic.RMIGenerator
  61 generator.class.xprint=sun.rmi.rmic.iiop.PrintGenerator
  62 
  63 # If a generator needs a BatchEnvironment other than
  64 # sun.rmi.rmic.BatchEnvironment, specify it as follows:
  65 #
  66 #     generator.env.{arg}=fullClassName
  67 
  68 generator.env.iiop=sun.rmi.rmic.iiop.BatchEnvironment
  69 generator.env.idl=sun.rmi.rmic.iiop.BatchEnvironment
  70 generator.env.xprint=sun.rmi.rmic.iiop.BatchEnvironment
  71 
  72 rmic.usage=使用方法: {0} <options> <class names>\n\n<options>には次のものがあります。\n -keep      中間生成されたソース・ファイルを削除しない\n -keepgenerated("-keep"と同じ)\n -v1.1      1.1スタブ・プロトコル版用のスタブ/スケルトンを作成する(非推奨)\n -vcompat   1.1と1.2のスタブ・プロトコル版と\n                 互換性のあるスタブ/スケルトンを作成する(非推奨)\n -v1.2      (デフォルト)1.2スタブ・プロトコル版専用のスタブを作成する(非推奨)\n -g        デバッグ情報を生成する\n -nowarn     警告を生成しない\n -nowrite    コンパイルしたクラスをファイル・システムに書き込まない\n -verbose    コンパイラの動作に関するメッセージを出力する\n -classpath <path>    入力クラス・ファイルを検索する場所を指定する\n -bootclasspath<path> ブートストラップ・クラス・ファイルの場所をオーバーライドする\n -d <directory>      生成されたクラス・ファイルを格納する場所を指定する\n -J<runtime flag>  javaインタプリタに引数を渡す\n
  73 
  74 #
  75 # Generic Messages
  76 #
  77 
  78 rmic.cant.read={0}を読み込めません
  79 rmic.cant.write={0}が書き込めません
  80 rmic.option.unsupported=オプション{0}は現在サポートされていません。
  81 rmic.option.unimplemented=オプション{0}はまだ実装されていません。
  82 rmic.option.already.seen={0}オプションが複数指定されています。
  83 rmic.option.requires.argument={0}オプションには引数が必要です。
  84 rmic.no.such.directory=ディレクトリ{0}は存在しません。
  85 rmic.no.such.option={0}は無効なオプションまたは引数です。
  86 rmic.wrote=[{0}を書込み完了]
  87 rmic.errors=エラー{0}個
  88 rmic.1error=エラー1個
  89 rmic.warnings=警告{0}個
  90 rmic.1warning=警告1個
  91 rmic.done_in=[{0}ミリ秒で完了]
  92 rmic.no.memory=コンパイラにメモリーが不足しています。"-J-Xmx<size>"コマンドライン・オプションを使用して、最大ヒープ・サイズを増やしてください。
  93 rmic.stack.overflow=コンパイラにスタック空間が不足しています。"-J-Xss<size>"コマンドライン・オプションを使用して、Javaスタックに割り当てるメモリーを増やしてください。
  94 rmic.class.not.found=クラス{0}が見つかりません。
  95 rmic.missing.property=プロパティgenerator.class.{0}がありません
  96 rmic.cannot.instantiate=クラス{0}のインスタンスを生成できません
  97 rmic.cannot.use.both={0}と{1}の両方は使用できません。
  98 rmic.resource.not.found={0}が見つかりません。
  99 rmic.no.output.dir={0}に適切な出力ディレクトリが見つかりません。-dオプションを使用してルート・ディレクトリを指定してください。
 100 rmic.cannot.create.dir=出力ディレクトリ{0}を作成できません。
 101 
 102 #
 103 # JRMP Messages
 104 #
 105 
 106 rmic.cant.make.stubs.for.interface={0}はインタフェースです。スタブはリモート・オブジェクト・クラスにのみ必要です。
 107 rmic.must.implement.remote=クラス{0}はjava.rmi.Remoteを拡張するインタフェースを実装しません。スタブとスケルトンを必要とするのはリモート・オブジェクトのみです。
 108 rmic.must.implement.remote.directly=スタブを必要とするのはjava.rmi.Remoteを拡張するインタフェースを直接実装するクラスのみです。クラス{0}はリモート・インタフェースを直接には実装しません。
 109 rmic.must.throw.remoteexception={0}は不正なリモート・インタフェースです。メソッド{1}はjava.rmi.RemoteExceptionをスローする必要があります。
 110 rmic.must.only.throw.exception=メソッド{0}は{1}をスローするので不正なリモート・メソッド実装です。リモート・メソッドの実装がスローするのはjava.lang.Exceptionかそのサブクラスのみです。
 111 rmic.jrmp.stubs.deprecated=警告: JRMPのスケルトンとstaticスタブの生成と使用は\n非推奨です。スケルトンは不要で、staticスタブは\n動的に生成されるスタブに差し替えられました。ユーザーは\nスケルトンとstaticスタブを生成するために{0}を使用せずに移行することができます。\njava.rmi.server.UnicastRemoteObjectに関するドキュメントを参照してください。