推奨されていない API


コンテンツ
推奨されていないクラス
jp.crestmuse.cmx.amusaj.commands.ChordConverter
          今後の自動伴奏システムの実装にはChordUtilsを利用してください 
 

推奨されていないメソッド
jp.crestmuse.cmx.filewrappers.DeviationInstanceWrapper.createDeviationDataSet()
          表情付けされたDeviationInstanceWrapperを生成する時は、以下のようにしてください。 DeviationDataSet dds = new DeviationDataSet(musicxml); DeviationInstanceWrapper dev = dds.toWrapper(); (旧来の方法) DeviationInstanceWrapper dev = DeviationInstanceWrapper.createDeviationInstanceFor(musicxml); DeviationDataSet dds = dev.createDeviationDataSet(); dds.addElementsToWrapper(); DeviationInstanceWrapperをもとに、DeviationDataSetを生成します。 
jp.crestmuse.cmx.commands.CMXCommand.getFileName()
          

Returns the name of the currently processing file.

現在処理中のファイル名を返します. runメソッド内で現在処理中のファイル名が必要になったとき(たとえば拡張子だけが 異なるファイルを追加で読み込む場合など)に用いることを想定しています. 

jp.crestmuse.cmx.commands.CMXCommand.indata()
          

Returns the input document.

入力ドキュメントを返します. runメソッドをオーバーライドする際に, runメソッド内で読み込んだデータに アクセスする際に用いることを想定しています.

 
jp.crestmuse.cmx.commands.CMXCommand.newOutputData(String)
          Creates an empty document with the specified top-tag name and assigns it to the outdata instance. 指定された名前のトップタグを持つ空ドキュメントを生成し, outdataインスタンスに代入します. 
jp.crestmuse.cmx.commands.CMXCommand.outdata()
          

Returns the output document.

出力ドキュメントを返します. runメソッドをオーバーライドする際に, ファイルに書き込むべきデータを CMXFileWrapperオブジェクトに追加する際に用いることを想定しています. 

jp.crestmuse.cmx.commands.CMXCommand.run()
          

Please to override this method to define the main processing.

このメソッドをオーバーライドして, コマンドのメイン処理を記述してください.

 
jp.crestmuse.cmx.commands.CMXCommand.setOutputData(F2)
          Assigns the specified CMXFileWrapper object to the output object. 指定されたCMXFileWrapperオブジェクトを出力オブジェクトに指定します. 
 

推奨されていないコンストラクタ
jp.crestmuse.cmx.misc.QueueWrapper(Queue, int)