Uses of Interface
org.jaudiotagger.tag.Tag

Packages that use Tag
org.jaudiotagger.audio   
org.jaudiotagger.audio.asf.util   
org.jaudiotagger.audio.flac   
org.jaudiotagger.audio.generic   
org.jaudiotagger.audio.mp3   
org.jaudiotagger.audio.mp4   
org.jaudiotagger.audio.ogg   
org.jaudiotagger.tag.flac   
org.jaudiotagger.tag.id3   
org.jaudiotagger.tag.mp4   
org.jaudiotagger.tag.vorbiscomment   
 

Uses of Tag in org.jaudiotagger.audio
 

Methods in org.jaudiotagger.audio that return Tag
 Tag AudioFile.getTag()
          Returns the tag contained in this AudioFile, the Tag contains any useful meta-data, like artist, album, title, etc.
 

Methods in org.jaudiotagger.audio with parameters of type Tag
 void AudioFile.setTag(Tag tag)
           
 

Constructors in org.jaudiotagger.audio with parameters of type Tag
AudioFile(java.io.File f, AudioHeader audioHeader, Tag tag)
          These constructors are used by the different readers, users should not use them, but use the AudioFileIO.read(File) method instead !.
AudioFile(java.lang.String s, AudioHeader audioHeader, Tag tag)
          These constructors are used by the different readers, users should not use them, but use the AudioFileIO.read(File) method instead !.
 

Uses of Tag in org.jaudiotagger.audio.asf.util
 

Methods in org.jaudiotagger.audio.asf.util that return Tag
static Tag TagConverter.createTagOf(AsfHeader source)
          This method creates a Tagand fills it with the contents of the given AsfHeader.
 

Methods in org.jaudiotagger.audio.asf.util with parameters of type Tag
static void TagConverter.assignCommonTagValues(Tag tag, ExtendedContentDescription description)
          This method assigns those tags of tag which are defined to be common by entagged.
static void TagConverter.assignOptionalTagValues(Tag tag, ExtendedContentDescription descriptor)
          This method will add or replace all values of tag are not defined as common by entagged.
static ContentDescription TagConverter.createContentDescription(Tag tag)
          This method creates a new ContentDescriptionobject, filled with the according values of the given tag.
Warning :
Only the first values can be stored in asf files, because the content description is limited.
static ExtendedContentDescription TagConverter.createExtendedContentDescription(Tag tag)
          This method creates a new ExtendedContentDescriptionobject filled with the values of the given tag.
Since extended content description of asf files can store name-value pairs, nearly each entagged.audioformats.generic.TagFieldcan be stored whithin.
static TagTextField AsfCopyrightField.getCopyright(Tag tag)
          This method should help programmers to extract the copyright field out of asf files.
 

Uses of Tag in org.jaudiotagger.audio.flac
 

Methods in org.jaudiotagger.audio.flac with parameters of type Tag
 java.nio.ByteBuffer FlacTagCreator.convert(Tag tag, int paddingSize)
           
 void FlacTagWriter.write(Tag tag, java.io.RandomAccessFile raf, java.io.RandomAccessFile rafTemp)
          Write tag to file
 

Uses of Tag in org.jaudiotagger.audio.generic
 

Classes in org.jaudiotagger.audio.generic that implement Tag
 class AbstractTag
          This class is the default implementation for Tag and introduces some more useful functionality to be implemented.
 class GenericTag
          This is a complete example implementation of AbstractTag.
The identifiers of commonly used fields is defined by GenericTag.keys.
 

Methods in org.jaudiotagger.audio.generic with parameters of type Tag
 java.nio.ByteBuffer AbstractTagCreator.convert(Tag tag)
          Convert tagdata to rawdata ready for writing to file with no additional padding
abstract  java.nio.ByteBuffer AbstractTagCreator.convert(Tag tag, int padding)
          Convert tagdata to rawdata ready for writing to file
 

Uses of Tag in org.jaudiotagger.audio.mp3
 

Methods in org.jaudiotagger.audio.mp3 with parameters of type Tag
 void MP3File.setID3v1Tag(Tag id3v1tag)
           
 void MP3File.setTag(Tag tag)
          Set the Tag If the parameter tag is a v1tag then the v1 tag is set if v2tag then the v2tag.
 

Uses of Tag in org.jaudiotagger.audio.mp4
 

Methods in org.jaudiotagger.audio.mp4 with parameters of type Tag
 void Mp4TagWriter.write(Tag tag, java.io.RandomAccessFile raf, java.io.RandomAccessFile rafTemp)
          Write tag to rafTemp file
 

Uses of Tag in org.jaudiotagger.audio.ogg
 

Methods in org.jaudiotagger.audio.ogg that return Tag
 Tag OggVorbisTagReader.read(java.io.RandomAccessFile raf)
          Read the Logical VorbisComment Tag from the file
 

Methods in org.jaudiotagger.audio.ogg with parameters of type Tag
 java.nio.ByteBuffer OggVorbisCommentTagCreator.convert(Tag tag)
           
 void OggVorbisTagWriter.write(Tag tag, java.io.RandomAccessFile raf, java.io.RandomAccessFile rafTemp)
           
 

Uses of Tag in org.jaudiotagger.tag.flac
 

Classes in org.jaudiotagger.tag.flac that implement Tag
 class FlacTag
          Flac uses Vorbis Comment for most of its metadata and a Flac Picture Block for images
 

Uses of Tag in org.jaudiotagger.tag.id3
 

Classes in org.jaudiotagger.tag.id3 that implement Tag
 class AbstractID3v2Tag
          This is the abstract base class for all ID3v2 tags.
 class ID3v11Tag
          Represents an ID3v11 tag.
 class ID3v1Tag
          Represents an ID3v1 tag.
 class ID3v22Tag
          Represents an ID3v2.2 tag.
 class ID3v23Tag
          Represents an ID3v2.3 tag.
 class ID3v24Tag
          Represents an ID3v2.4 tag.
 

Uses of Tag in org.jaudiotagger.tag.mp4
 

Classes in org.jaudiotagger.tag.mp4 that implement Tag
 class Mp4Tag
          A Logical representation of Mp4Tag, i.e the meta information stored in an Mp4 file underneath the moov.udt.meta.ilst atom.
 

Methods in org.jaudiotagger.tag.mp4 with parameters of type Tag
 java.nio.ByteBuffer Mp4TagCreator.convert(Tag tag, int padding)
          Convert tagdata to rawdata ready for writing to file
 

Uses of Tag in org.jaudiotagger.tag.vorbiscomment
 

Classes in org.jaudiotagger.tag.vorbiscomment that implement Tag
 class VorbisCommentTag
          This is the logical representation of Vorbis Comment Data
 

Methods in org.jaudiotagger.tag.vorbiscomment with parameters of type Tag
 java.nio.ByteBuffer VorbisCommentCreator.convert(Tag tag, int padding)
          Convert tagdata to rawdata ready for writing to file