package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Encoded by' frame contains the name of the person or<br>    organisation that encoded the * audio file. This field may contain a<br>    copyright message, if the audio file also is copyrighted by * the<br> * <p/> *    encoder.<br> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTENC extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTENC object. */ public FrameBodyTENC() { super(); } /** * Creates a new FrameBodyTENC object. */ public FrameBodyTENC(final FrameBodyTENC body) { super(body); } /** * Creates a new FrameBodyTENC object. */ public FrameBodyTENC(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTENC object. */ public FrameBodyTENC(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TENC"; } }