Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTRSOTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TRSOTextInformationID3V2Frame)))
{
return false;
}
TRSOTextInformationID3V2Frame oOtherTRSO = (TRSOTextInformationID3V2Frame)oOther;
return (m_sInternetRadioStationOwner.equals(oOtherTRSO.m_sInternetRadioStationOwner) &&
m_oTextEncoding.equals(oOtherTRSO.m_oTextEncoding) &&
m_sInformation.equals(oOtherTRSO.m_sInformation));
|
protected byte[] | getFrameId()
return "TRSO".getBytes();
|
public java.lang.String | getInternetRadioStationOwner()Get the name of the owner of the internet radio station from which the content of this track
is being or was streamed.
return m_sInternetRadioStationOwner;
|
public void | setInternetRadioStationOwner(java.lang.String sInternetRadioStationOwner)Set the name of the owner of the internet radio station from which the content of this track
is being or was streamed.
m_sInternetRadioStationOwner = sInternetRadioStationOwner;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sInternetRadioStationOwner;
|
public java.lang.String | toString()
return "Internet radio station owner: [" + m_sInformation + "]";
|