Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTALBTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TALBTextInformationID3V2Frame)))
{
return false;
}
TALBTextInformationID3V2Frame oOtherTALB = (TALBTextInformationID3V2Frame)oOther;
return (m_sAlbum.equals(oOtherTALB.m_sAlbum) &&
m_oTextEncoding.equals(oOtherTALB.m_oTextEncoding) &&
m_sInformation.equals(oOtherTALB.m_sInformation));
|
public java.lang.String | getAlbum()Get the title of the album from which this recording is taken.
return m_sAlbum;
|
protected byte[] | getFrameId()
return "TALB".getBytes();
|
public void | setAlbum(java.lang.String sAlbum)Set the title of the album from which this recording is taken.
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sAlbum;
m_sAlbum = sAlbum;
|
public java.lang.String | toString()
return "Album/Movie/Show title: [" + m_sInformation + "]";
|