Uses of Class
org.jaudiotagger.tag.id3.AbstractID3v2Tag

Packages that use AbstractID3v2Tag
org.jaudiotagger.audio.mp3   
org.jaudiotagger.tag.id3   
 

Uses of AbstractID3v2Tag in org.jaudiotagger.audio.mp3
 

Fields in org.jaudiotagger.audio.mp3 declared as AbstractID3v2Tag
private  AbstractID3v2Tag MP3File.id3v2tag
          the ID3v2 tag that this file contains.
 

Methods in org.jaudiotagger.audio.mp3 that return AbstractID3v2Tag
 AbstractID3v2Tag MP3File.getID3v2Tag()
          Returns the ID3v2 tag for this datatype.
 

Methods in org.jaudiotagger.audio.mp3 with parameters of type AbstractID3v2Tag
 void MP3File.setID3v2Tag(AbstractID3v2Tag id3v2tag)
          Sets the v2 tag to the v2 tag provided as an argument.
 void MP3File.setID3v2TagOnly(AbstractID3v2Tag id3v2tag)
          Set v2 tag ,dont need to set v24 tag because saving

TODO temp its rather messy

 

Uses of AbstractID3v2Tag in org.jaudiotagger.tag.id3
 

Subclasses of AbstractID3v2Tag in org.jaudiotagger.tag.id3
 class ID3v22Tag
          Represents an ID3v2.2 tag.
 class ID3v23Tag
          Represents an ID3v2.3 tag.
 class ID3v24Tag
          Represents an ID3v2.4 tag.
 

Methods in org.jaudiotagger.tag.id3 with parameters of type AbstractID3v2Tag
protected  void AbstractID3v2Tag.copyFrames(AbstractID3v2Tag copyObject)
          Copy frames from another tag,
protected  void ID3v24Tag.copyPrimitives(AbstractID3v2Tag copyObj)
          Copy primitives applicable to v2.4, this is used when cloning a v2.4 datatype and other objects such as v2.3 so need to check instanceof
protected  void ID3v23Tag.copyPrimitives(AbstractID3v2Tag copyObj)
          Copy primitives applicable to v2.3
protected  void ID3v22Tag.copyPrimitives(AbstractID3v2Tag copyObj)
          Copy primitives applicable to v2.2
protected  void AbstractID3v2Tag.copyPrimitives(AbstractID3v2Tag copyObject)
          Copy primitives apply to all tags
 

Constructors in org.jaudiotagger.tag.id3 with parameters of type AbstractID3v2Tag
AbstractID3v2Tag(AbstractID3v2Tag copyObject)
          This constructor is used when a tag is created as a duplicate of another tag of the same type and version.