Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitWOAFUrlLinkID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof WOAFUrlLinkID3V2Frame)))
{
return false;
}
WOAFUrlLinkID3V2Frame oOtherWOAF = (WOAFUrlLinkID3V2Frame)oOther;
return m_sURL.equals(oOtherWOAF.m_sURL);
|
protected byte[] | getFrameId()
return "WOAF".getBytes();
|
public java.lang.String | getOfficialAudioFileWebPage()Get the official audio file 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 | setOfficialAudioFileWebPage(java.lang.String sOfficialAudioFileUrl)Set official audio file web page URL for this track.
m_sURL = sOfficialAudioFileUrl;
|
public void | setOfficialAudioFileWebPage(java.net.URL oOfficialAudioFileUrl)Set official audio file web page URL for this track.
m_sURL = oOfficialAudioFileUrl.toExternalForm();
|
public java.lang.String | toString()
return "Official audio file webpage URL: [" + m_sURL + "]";
|