jAudioFeatureExtractor.jAudioTools
クラス AudioEventLineListener

java.lang.Object
  上位を拡張 jAudioFeatureExtractor.jAudioTools.AudioEventLineListener
すべての実装されたインタフェース:
java.util.EventListener, javax.sound.sampled.LineListener

public class AudioEventLineListener
extends java.lang.Object
implements javax.sound.sampled.LineListener

An implementation of the LineListener interface. Objects of this class can be attached to audio Line objects, and react to open, start, stop or close events that they generate.

This particular implementation prints data to regarding each such event to standard out. The information includes the type of event, what type of line it occured on, a unique code for the particular line that fired the event and the sample frame on the line that the event happened on.

Note that all this data may not be available on all systems, as some of the data parsing that was used may be system specific.

Note that some information produced regarding the line details and the overview is not outputted, as it is unlikely to be useful.

作成者:
Cory McKay

コンストラクタの概要
AudioEventLineListener()
           
 
メソッドの概要
 void update(javax.sound.sampled.LineEvent event)
           
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

AudioEventLineListener

public AudioEventLineListener()
メソッドの詳細

update

public void update(javax.sound.sampled.LineEvent event)
定義:
インタフェース javax.sound.sampled.LineListener 内の update