Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTIT1TextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TIT1TextInformationID3V2Frame)))
{
return false;
}
TIT1TextInformationID3V2Frame oOtherTIT1 = (TIT1TextInformationID3V2Frame)oOther;
return (m_sContentGroupDescription.equals(oOtherTIT1.m_sContentGroupDescription) &&
m_oTextEncoding.equals(oOtherTIT1.m_oTextEncoding) &&
m_sInformation.equals(oOtherTIT1.m_sInformation));
|
public java.lang.String | getContentGroupDescription()Get the content group description.
return m_sContentGroupDescription;
|
protected byte[] | getFrameId()
return "TIT1".getBytes();
|
public void | setContentGroupDescription(java.lang.String sContentGroupDescription)Set the content group description.
m_sContentGroupDescription = sContentGroupDescription;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sContentGroupDescription;
|
public java.lang.String | toString()
return "Content group description: [" + m_sInformation + "]";
|