| 1 | |
package org.jaudiotagger.tag.id3.framebody; |
| 2 | |
|
| 3 | |
import org.jaudiotagger.tag.InvalidTagException; |
| 4 | |
import org.jaudiotagger.tag.id3.ID3v23Frames; |
| 5 | |
|
| 6 | |
import java.nio.ByteBuffer; |
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
public class FrameBodyXSOT extends AbstractFrameBodyTextInfo implements ID3v23FrameBody |
| 14 | |
{ |
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
public FrameBodyXSOT() |
| 19 | 5 | { |
| 20 | 5 | } |
| 21 | |
|
| 22 | |
public FrameBodyXSOT(FrameBodyXSOT body) |
| 23 | |
{ |
| 24 | 0 | super(body); |
| 25 | 0 | } |
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
public FrameBodyXSOT(byte textEncoding, String text) |
| 34 | |
{ |
| 35 | 1 | super(textEncoding, text); |
| 36 | 1 | } |
| 37 | |
|
| 38 | |
|
| 39 | |
|
| 40 | |
|
| 41 | |
|
| 42 | |
|
| 43 | |
public FrameBodyXSOT(ByteBuffer byteBuffer, int frameSize) throws InvalidTagException |
| 44 | |
{ |
| 45 | 0 | super(byteBuffer, frameSize); |
| 46 | 0 | } |
| 47 | |
|
| 48 | |
|
| 49 | |
|
| 50 | |
|
| 51 | |
|
| 52 | |
|
| 53 | |
public String getIdentifier() |
| 54 | |
{ |
| 55 | 4 | return ID3v23Frames.FRAME_ID_V3_TITLE_SORT_ORDER_MUSICBRAINZ; |
| 56 | |
} |
| 57 | |
} |