Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTSRCTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TSRCTextInformationID3V2Frame)))
{
return false;
}
TSRCTextInformationID3V2Frame oOtherTSRC = (TSRCTextInformationID3V2Frame)oOther;
return (m_sISRC.equals(oOtherTSRC.m_sISRC) &&
m_oTextEncoding.equals(oOtherTSRC.m_oTextEncoding) &&
m_sInformation.equals(oOtherTSRC.m_sInformation));
|
protected byte[] | getFrameId()
return "TSRC".getBytes();
|
public java.lang.String | getISRC()Get the ISRC code for this track.
return m_sISRC;
|
public void | setISRC(java.lang.String sISRC)Set the ISRC code for this track.
if (sISRC.length() != 12)
{
throw new ID3Exception("ISRC code must be 12 characters long.");
}
m_sISRC = sISRC;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sISRC;
|
public java.lang.String | toString()
return "International Standard Recording Code (ISRC): [" + m_sInformation + "]";
|