Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitWCOPUrlLinkID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof WCOPUrlLinkID3V2Frame)))
{
return false;
}
WCOPUrlLinkID3V2Frame oOtherWCOP = (WCOPUrlLinkID3V2Frame)oOther;
return m_sURL.equals(oOtherWCOP.m_sURL);
|
public java.lang.String | getCopyrightLegalInformationUrl()Get the copyright or legal information URL for this track. Note, there is no guarantee that
this value will in fact be a valid URL.
return m_sURL;
|
protected byte[] | getFrameId()
return "WCOP".getBytes();
|
public void | setCopyrightLegalInformation(java.lang.String sCopyrightLegalInformationUrl)Set copyright or legal information URL for this track.
m_sURL = sCopyrightLegalInformationUrl;
|
public void | setCopyrightLegalInformation(java.net.URL oCopyrightLegalInformationUrl)Set copyright or legal information URL for this track.
m_sURL = oCopyrightLegalInformationUrl.toExternalForm();
|
public java.lang.String | toString()
return "Copyright/legal information URL: [" + m_sURL + "]";
|