package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Musician credits list' is intended as a mapping between<br>    instruments and the * musician that played it. Every odd field is an<br>    instrument and every even is an artist or a comma * delimited list of<br> * <p/> *    artists.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTMCL extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTMCL object. */ public FrameBodyTMCL() { super(); } /** * Creates a new FrameBodyTMCL object. */ public FrameBodyTMCL(final FrameBodyTMCL body) { super(body); } /** * Creates a new FrameBodyTMCL object. */ public FrameBodyTMCL(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTMCL object. */ public FrameBodyTMCL(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TMCL"; } }