Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTRSNTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TRSNTextInformationID3V2Frame)))
{
return false;
}
TRSNTextInformationID3V2Frame oOtherTRSN = (TRSNTextInformationID3V2Frame)oOther;
return (m_sInternetRadioStationName.equals(oOtherTRSN.m_sInternetRadioStationName) &&
m_oTextEncoding.equals(oOtherTRSN.m_oTextEncoding) &&
m_sInformation.equals(oOtherTRSN.m_sInformation));
|
protected byte[] | getFrameId()
return "TRSN".getBytes();
|
public java.lang.String | getInternetRadioStationName()Get the name of the internet radio station from which the content of this track
is being or was streamed.
return m_sInternetRadioStationName;
|
public void | setInternetRadioStationName(java.lang.String sInternetRadioStationName)Set the name of the internet radio station from which the content of this track
is being or was streamed.
m_sInternetRadioStationName = sInternetRadioStationName;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sInternetRadioStationName;
|
public java.lang.String | toString()
return "Internet radio station name: [" + m_sInformation + "]";
|