package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Internet radio station name' frame contains the name of the<br>    internet radio station * from which the audio is streamed.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTRSN extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTRSN object. */ public FrameBodyTRSN() { super(); } /** * Creates a new FrameBodyTRSN object. */ public FrameBodyTRSN(final FrameBodyTRSN body) { super(body); } /** * Creates a new FrameBodyTRSN object. */ public FrameBodyTRSN(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTRSN object. */ public FrameBodyTRSN(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TRSN"; } }