FileDocCategorySizeDatePackage
FrameBodyTENC.javaAPI DocJaudiotagger 2.0.42703Wed Mar 30 16:12:02 BST 2011org.jaudiotagger.tag.id3.framebody

FrameBodyTENC

public class FrameBodyTENC extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
Encoded by Text information frame.

The 'Encoded by' frame contains the name of the person or organisation that encoded the audio file. This field may contain a copyright message, if the audio file also is copyrighted by the encoder.

For more details, please refer to the ID3 specifications:

author
: Paul Taylor
author
: Eric Farng
version
$Id: FrameBodyTENC.java 905 2010-05-14 19:37:31Z paultaylor $

Fields Summary
Constructors Summary
public FrameBodyTENC()
Creates a new FrameBodyTENC dataType.

    
public FrameBodyTENC(FrameBodyTENC body)

        super(body);
    
public FrameBodyTENC(byte textEncoding, String text)
Creates a new FrameBodyTENC dataType.

param
textEncoding
param
text

        super(textEncoding, text);
    
public FrameBodyTENC(ByteBuffer byteBuffer, int frameSize)
Creates a new FrameBodyTENC dataType.

param
byteBuffer
param
frameSize
throws
java.io.IOException
throws
InvalidTagException

        super(byteBuffer, frameSize);
    
Methods Summary
public java.lang.StringgetIdentifier()
The ID3v2 frame identifier

return
the ID3v2 frame identifier for this frame type

        return ID3v24Frames.FRAME_ID_ENCODEDBY;