TIT2TextInformationID3V2Framepublic class TIT2TextInformationID3V2Frame extends TextInformationID3V2Frame
Fields Summary |
---|
private String | m_sTitle |
Constructors Summary |
---|
public TIT2TextInformationID3V2Frame(String sTitle)Constructor.
super(sTitle);
m_sTitle = sTitle;
| public TIT2TextInformationID3V2Frame(InputStream oIS)
super(oIS);
m_sTitle = m_sInformation;
|
Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTIT2TextInformationID3V2Frame(this);
| public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TIT2TextInformationID3V2Frame)))
{
return false;
}
TIT2TextInformationID3V2Frame oOtherTIT2 = (TIT2TextInformationID3V2Frame)oOther;
return (m_sTitle.equals(oOtherTIT2.m_sTitle) &&
m_oTextEncoding.equals(oOtherTIT2.m_oTextEncoding) &&
m_sInformation.equals(oOtherTIT2.m_sInformation));
| protected byte[] | getFrameId()
return "TIT2".getBytes();
| public java.lang.String | getTitle()Get the title, song name, or content description of the track.
return m_sTitle;
| public void | setTitle(java.lang.String sTitle)Set the title, song name, or content description of the track.
m_sTitle = sTitle;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sTitle;
| public java.lang.String | toString()
return "Title/Songname/Content description: [" + m_sInformation + "]";
|
|