FrameBodyTPUBpublic class FrameBodyTPUB extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBodyPublisher Text information frame.
The 'Publisher' frame simply contains the name of the label or publisher.
For more details, please refer to the ID3 specifications:
|
Constructors Summary |
---|
public FrameBodyTPUB()Creates a new FrameBodyTPUB datatype.
| public FrameBodyTPUB(FrameBodyTPUB body)
super(body);
| public FrameBodyTPUB(byte textEncoding, String text)Creates a new FrameBodyTPUB datatype.
super(textEncoding, text);
| public FrameBodyTPUB(ByteBuffer byteBuffer, int frameSize)Creates a new FrameBodyTPUB datatype.
super(byteBuffer, frameSize);
|
Methods Summary |
---|
public java.lang.String | getIdentifier()The ID3v2 frame identifier
return ID3v24Frames.FRAME_ID_PUBLISHER;
|
|