package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Band/Orchestra/Accompaniment' frame is used for additional<br> * <p/> *    information about the performers in the recording.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTPE2 extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTPE2 object. */ public FrameBodyTPE2() { super(); } /** * Creates a new FrameBodyTPE2 object. */ public FrameBodyTPE2(final FrameBodyTPE2 body) { super(body); } /** * Creates a new FrameBodyTPE2 object. */ public FrameBodyTPE2(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTPE2 object. */ public FrameBodyTPE2(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TPE2"; } }