Uses of Interface
org.jaudiotagger.audio.generic.AudioFileModificationListener

Packages that use AudioFileModificationListener
org.jaudiotagger.audio   
org.jaudiotagger.audio.generic   
 

Uses of AudioFileModificationListener in org.jaudiotagger.audio
 

Methods in org.jaudiotagger.audio with parameters of type AudioFileModificationListener
 void AudioFileIO.addAudioFileModificationListener(AudioFileModificationListener listener)
          Adds an listener for all file formats.
 void AudioFileIO.removeAudioFileModificationListener(AudioFileModificationListener listener)
          Removes an listener for all file formats.
 

Uses of AudioFileModificationListener in org.jaudiotagger.audio.generic
 

Classes in org.jaudiotagger.audio.generic that implement AudioFileModificationListener
 class AudioFileModificationAdapter
          Adapter for AudioFileModificationListener.
 class ModificationHandler
          This class multicasts the events to multiple listener instances.
Additionally the Vetos are handled.
 

Fields in org.jaudiotagger.audio.generic declared as AudioFileModificationListener
private  AudioFileModificationListener AudioFileWriter.modificationListener
          If not null, this listener is used to notify the listener about modification events.
 

Fields in org.jaudiotagger.audio.generic with type parameters of type AudioFileModificationListener
private  java.util.Vector<AudioFileModificationListener> ModificationHandler.listeners
          The listeners to wich events are broadcasted are stored here.
 

Methods in org.jaudiotagger.audio.generic with parameters of type AudioFileModificationListener
 void ModificationHandler.addAudioFileModificationListener(AudioFileModificationListener l)
          This method adds an AudioFileModificationListener
 void ModificationHandler.removeAudioFileModificationListener(AudioFileModificationListener l)
          This method removes an AudioFileModificationListener
 void AudioFileWriter.setAudioFileModificationListener(AudioFileModificationListener listener)
          This method sets the AudioFileModificationListener.
There is only one listener allowed, if you want more instances to be supported, use the ModificationHandler to broadcast those events.
 void ModificationHandler.vetoThrown(AudioFileModificationListener cause, AudioFile original, ModifyVetoException veto)
          (overridden)
 void AudioFileModificationListener.vetoThrown(AudioFileModificationListener cause, AudioFile original, ModifyVetoException veto)
          This method notifies about a veto exception that has been thrown by another listener.
 void AudioFileModificationAdapter.vetoThrown(AudioFileModificationListener cause, AudioFile original, ModifyVetoException veto)
          (overridden)