package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Interpreted, remixed, or otherwise modified by' frame contains<br>    more information * about the people behind a remix and similar<br>    interpretations of another existing piece.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTPE4 extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTPE4 object. */ public FrameBodyTPE4() { super(); } /** * Creates a new FrameBodyTPE4 object. */ public FrameBodyTPE4(final FrameBodyTPE4 body) { super(body); } /** * Creates a new FrameBodyTPE4 object. */ public FrameBodyTPE4(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTPE4 object. */ public FrameBodyTPE4(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TPE4"; } }