Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTPUBTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TPUBTextInformationID3V2Frame)))
{
return false;
}
TPUBTextInformationID3V2Frame oOtherTPUB = (TPUBTextInformationID3V2Frame)oOther;
return (m_sPublisher.equals(oOtherTPUB.m_sPublisher) &&
m_oTextEncoding.equals(oOtherTPUB.m_oTextEncoding) &&
m_sInformation.equals(oOtherTPUB.m_sInformation));
|
protected byte[] | getFrameId()
return "TPUB".getBytes();
|
public java.lang.String | getPublisher()Get the publisher of the recording in this track.
return m_sPublisher;
|
public void | setPublisher(java.lang.String sPublisher)Set the publisher of the recording in this track.
m_sPublisher = sPublisher;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sPublisher;
|
public java.lang.String | toString()
return "Publisher: [" + m_sInformation + "]";
|