Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTOWNTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TOWNTextInformationID3V2Frame)))
{
return false;
}
TOWNTextInformationID3V2Frame oOtherTOWN = (TOWNTextInformationID3V2Frame)oOther;
return (m_sFileOwner.equals(oOtherTOWN.m_sFileOwner) &&
m_oTextEncoding.equals(oOtherTOWN.m_oTextEncoding) &&
m_sInformation.equals(oOtherTOWN.m_sInformation));
|
public java.lang.String | getFileOwner()Get the owner or licensee of the content of this track.
return m_sFileOwner;
|
protected byte[] | getFrameId()
return "TOWN".getBytes();
|
public void | setFileOwner(java.lang.String sFileOwner)Set the owner or licensee of the content of this track.
m_sFileOwner = sFileOwner;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sFileOwner;
|
public java.lang.String | toString()
return "File owner/licensee: [" + m_sInformation + "]";
|