FileDocCategorySizeDatePackage
ID3v2ChapterFrames.javaAPI DocJaudiotagger 2.0.42126Wed Mar 30 16:12:06 BST 2011org.jaudiotagger.tag.id3

ID3v2ChapterFrames

public class ID3v2ChapterFrames extends ID3Frames
Defines ID3 Chapter frames and collections that categorise frames.

For more details, please refer to the ID3 Chapter Frame specifications:

author
Marc Gimpel, Horizon Wimba S.A.
version
$Id: ID3v2ChapterFrames.java 830 2009-11-12 12:23:47Z paultaylor $

Fields Summary
public static final String
FRAME_ID_CHAPTER
public static final String
FRAME_ID_TABLE_OF_CONTENT
private static ID3v2ChapterFrames
id3v2ChapterFrames
Constructors Summary
private ID3v2ChapterFrames()

        idToValue.put(FRAME_ID_CHAPTER, "Chapter");
        idToValue.put(FRAME_ID_TABLE_OF_CONTENT, "Table of content");
        createMaps();
        multipleFrames = new TreeSet<String>();
        discardIfFileAlteredFrames = new TreeSet<String>();
    
Methods Summary
public static org.jaudiotagger.tag.id3.ID3v2ChapterFramesgetInstanceOf()


       
    
        if (id3v2ChapterFrames == null)
        {
            id3v2ChapterFrames = new ID3v2ChapterFrames();
        }
        return id3v2ChapterFrames;