📄 framebodytso2.java
字号:
package com.hadeslee.audiotag.tag.id3.framebody;
import com.hadeslee.audiotag.tag.InvalidTagException;
import com.hadeslee.audiotag.tag.id3.ID3v24Frames;
import java.nio.ByteBuffer;
/**
* Album Artist Sort name ( iTunes Only)
*/
public class FrameBodyTSO2 extends AbstractFrameBodyTextInfo implements ID3v24FrameBody,ID3v23FrameBody
{
/**
* Creates a new FrameBodyTSOA datatype.
*/
public FrameBodyTSO2()
{
}
public FrameBodyTSO2(FrameBodyTSO2 body)
{
super(body);
}
/**
* Creates a new FrameBodyTSOA datatype.
*
* @param textEncoding
* @param text
*/
public FrameBodyTSO2(byte textEncoding, String text)
{
super(textEncoding, text);
}
/**
* Creates a new FrameBodyTSOA datatype.
*
* @throws InvalidTagException
*/
public FrameBodyTSO2(ByteBuffer byteBuffer, int frameSize)
throws InvalidTagException
{
super(byteBuffer, frameSize);
}
/**
* The ID3v2 frame identifier
*
* @return the ID3v2 frame identifier for this frame type
*/
public String getIdentifier()
{
return ID3v24Frames.FRAME_ID_ALBUM_ARTIST_SORT_ORDER_ITUNES;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -