Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitWOASUrlLinkID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof WOASUrlLinkID3V2Frame)))
{
return false;
}
WOASUrlLinkID3V2Frame oOtherWOAS = (WOASUrlLinkID3V2Frame)oOther;
return m_sURL.equals(oOtherWOAS.m_sURL);
|
protected byte[] | getFrameId()
return "WOAS".getBytes();
|
public java.lang.String | getOfficialAudioSourceWebPage()Get the official audio source web page URL for this track. Note, there is no guarantee that
this value will in fact be a valid URL.
return m_sURL;
|
public void | setOfficialAudioSourceWebPage(java.lang.String sOfficialAudioSourceUrl)Set official audio source web page URL for this track.
m_sURL = sOfficialAudioSourceUrl;
|
public void | setOfficialAudioSourceWebPage(java.net.URL oOfficialAudioSourceUrl)Set official audio source web page URL for this track.
m_sURL = oOfficialAudioSourceUrl.toExternalForm();
|
public java.lang.String | toString()
return "Official audio source webpage URL: [" + m_sURL + "]";
|