TIT3TextInformationID3V2Framepublic class TIT3TextInformationID3V2Frame extends TextInformationID3V2Frame
Fields Summary |
---|
private String | m_sSubtitle |
Constructors Summary |
---|
public TIT3TextInformationID3V2Frame(String sSubtitle)Constructor.
super(sSubtitle);
m_sSubtitle = sSubtitle;
| public TIT3TextInformationID3V2Frame(InputStream oIS)
super(oIS);
m_sSubtitle = m_sInformation;
|
Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTIT3TextInformationID3V2Frame(this);
| public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TIT3TextInformationID3V2Frame)))
{
return false;
}
TIT3TextInformationID3V2Frame oOtherTIT3 = (TIT3TextInformationID3V2Frame)oOther;
return (m_sSubtitle.equals(oOtherTIT3.m_sSubtitle) &&
m_oTextEncoding.equals(oOtherTIT3.m_oTextEncoding) &&
m_sInformation.equals(oOtherTIT3.m_sInformation));
| protected byte[] | getFrameId()
return "TIT3".getBytes();
| public java.lang.String | getSubtitle()Get the subtitle, or description refinement, for the track.
return m_sSubtitle;
| public void | setSubtitle(java.lang.String sSubtitle)Set the subtitle, or a description refinement, for the track.
m_sSubtitle = sSubtitle;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sSubtitle;
| public java.lang.String | toString()
return "Subtitle/Description refinement: [" + m_sInformation + "]";
|
|