package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Involved people list' is very similar to the musician credits<br>    list, but maps * between functions, like producer, and names.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTIPL extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTIPL object. */ public FrameBodyTIPL() { super(); } /** * Creates a new FrameBodyTIPL object. */ public FrameBodyTIPL(final FrameBodyTIPL body) { super(body); } /** * Creates a new FrameBodyTIPL object. */ public FrameBodyTIPL(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTIPL object. */ public FrameBodyTIPL(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TIPL"; } }