Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitWPAYUrlLinkID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof WPAYUrlLinkID3V2Frame)))
{
return false;
}
WPAYUrlLinkID3V2Frame oOtherWPAY = (WPAYUrlLinkID3V2Frame)oOther;
return m_sURL.equals(oOtherWPAY.m_sURL);
|
protected byte[] | getFrameId()
return "WPAY".getBytes();
|
public java.lang.String | getPaymentLocationUrl()Get the payment location URL for this track. Note, there is no guarantee that
this value will in fact be a valid URL.
return m_sURL;
|
public void | setPaymentLocation(java.lang.String sPaymentUrl)Set the payment location URL for this track.
m_sURL = sPaymentUrl;
|
public void | setPaymentLocation(java.net.URL oPaymentUrl)Set the payment location URL for this track.
m_sURL = oPaymentUrl.toExternalForm();
|
public java.lang.String | toString()
return "Payment URL: [" + m_sURL + "]";
|