package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Publisher' frame simply contains the name of the label or<br>    publisher.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTPUB extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTPUB object. */ public FrameBodyTPUB() { super(); } /** * Creates a new FrameBodyTPUB object. */ public FrameBodyTPUB(final FrameBodyTPUB body) { super(body); } /** * Creates a new FrameBodyTPUB object. */ public FrameBodyTPUB(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTPUB object. */ public FrameBodyTPUB(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TPUB"; } }