Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTLANTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TLANTextInformationID3V2Frame)))
{
return false;
}
TLANTextInformationID3V2Frame oOtherTLAN = (TLANTextInformationID3V2Frame)oOther;
return (m_sLanguages.equals(oOtherTLAN.m_sLanguages) &&
m_oTextEncoding.equals(oOtherTLAN.m_oTextEncoding) &&
m_sInformation.equals(oOtherTLAN.m_sInformation));
|
protected byte[] | getFrameId()
return "TLAN".getBytes();
|
public java.lang.String | getLanguages()Get the language(s) used in this track.
return m_sLanguages;
|
public void | setLanguages(java.lang.String sLanguages)Set the language(s) used in this track.
m_sLanguages = sLanguages;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sLanguages;
|
public java.lang.String | toString()
return "Language(s): [" + m_sInformation + "]";
|