Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitWORSUrlLinkID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof WORSUrlLinkID3V2Frame)))
{
return false;
}
WORSUrlLinkID3V2Frame oOtherWORS = (WORSUrlLinkID3V2Frame)oOther;
return m_sURL.equals(oOtherWORS.m_sURL);
|
protected byte[] | getFrameId()
return "WORS".getBytes();
|
public java.lang.String | getOfficialInternetRadioStationWebPage()Get the official internet radio station web page URL from which this track originated.
Note, there is no guarantee that this value will in fact be a valid URL.
return m_sURL;
|
public void | setOfficialInternetRadioStationWebPage(java.lang.String sOfficialInternetRadioStationUrl)Set official internet radio station web page URL from which this track originated.
m_sURL = sOfficialInternetRadioStationUrl;
|
public void | setOfficialInternetRadioStationWebPage(java.net.URL oOfficialInternetRadioStationUrl)Set official internet radio station web page URL from which this track originated.
m_sURL = oOfficialInternetRadioStationUrl.toExternalForm();
|
public java.lang.String | toString()
return "Official internet radio station homepage URL: [" + m_sURL + "]";
|