Uses of Class
org.jaudiotagger.audio.AudioFile

Packages that use AudioFile
org.jaudiotagger.audio   
org.jaudiotagger.audio.asf   
org.jaudiotagger.audio.generic   
org.jaudiotagger.audio.mp3   
 

Uses of AudioFile in org.jaudiotagger.audio
 

Methods in org.jaudiotagger.audio that return AudioFile
static AudioFile AudioFileIO.read(java.io.File f)
          

Read the tag contained in the given file.

 AudioFile AudioFileIO.readFile(java.io.File f)
          

Read the tag contained in the given file.

 

Methods in org.jaudiotagger.audio with parameters of type AudioFile
static void AudioFileIO.delete(AudioFile f)
          

Delete the tag, if any, contained in the given file.

 void AudioFileIO.deleteTag(AudioFile f)
          

Delete the tag, if any, contained in the given file.

static void AudioFileIO.write(AudioFile f)
          

Write the tag contained in the audiofile in the actual file on the disk.

 void AudioFileIO.writeFile(AudioFile f)
          

Write the tag contained in the audiofile in the actual file on the disk.

 

Uses of AudioFile in org.jaudiotagger.audio.asf
 

Methods in org.jaudiotagger.audio.asf that return AudioFile
 AudioFile AsfFileReader.read(java.io.File f)
          
 

Uses of AudioFile in org.jaudiotagger.audio.generic
 

Methods in org.jaudiotagger.audio.generic that return AudioFile
 AudioFile AudioFileReader.read(java.io.File f)
           
 

Methods in org.jaudiotagger.audio.generic with parameters of type AudioFile
 void AudioFileWriter.delete(AudioFile af)
          Delete the tag (if any) present in the given file
 void ModificationHandler.fileModified(AudioFile original, java.io.File temporary)
          (overridden)
 void AudioFileModificationListener.fileModified(AudioFile original, java.io.File temporary)
          Notifies that original has been processed.
Because the audiolibrary allows format implementors to either change the original file or create a copy, it is possible that the real result is located in the original and temporary is of zero size or the original will be deleted and replaced by temporary.
 void AudioFileModificationAdapter.fileModified(AudioFile original, java.io.File temporary)
          (overridden)
 void ModificationHandler.fileWillBeModified(AudioFile file, boolean delete)
          (overridden)
 void AudioFileModificationListener.fileWillBeModified(AudioFile file, boolean delete)
          Notifies that the file is about to be modified.
 void AudioFileModificationAdapter.fileWillBeModified(AudioFile file, boolean delete)
          (overridden)
private  void AudioFileWriter.precheckWrite(AudioFile af)
          Prechecks before normal write

If the tag is actually empty, remove the tag if the file is not writable, throw exception If the file is too small to be a valid file, throw exception

 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)
 void AudioFileWriter.write(AudioFile af)
          Write the tag (if not empty) present in the AudioFile in the associated File
 

Uses of AudioFile in org.jaudiotagger.audio.mp3
 

Subclasses of AudioFile in org.jaudiotagger.audio.mp3
 class MP3File
          This class represents a physical MP3 File
 

Methods in org.jaudiotagger.audio.mp3 that return AudioFile
 AudioFile MP3FileReader.read(java.io.File f)
           
 AudioFile MP3FileReader.readMustBeWritable(java.io.File f)
          Read
 

Methods in org.jaudiotagger.audio.mp3 with parameters of type AudioFile
 void MP3FileWriter.delete(AudioFile af)
          Delete the Id3v1 and ID3v2 tags from file
 void MP3FileWriter.deleteTag(AudioFile f)
           
 void MP3FileWriter.writeFile(AudioFile f)