Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTDLYTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TDLYTextInformationID3V2Frame)))
{
return false;
}
TDLYTextInformationID3V2Frame oOtherTDLY = (TDLYTextInformationID3V2Frame)oOther;
return ((m_iPlaylistDelayMillis == oOtherTDLY.m_iPlaylistDelayMillis) &&
m_oTextEncoding.equals(oOtherTDLY.m_oTextEncoding) &&
m_sInformation.equals(oOtherTDLY.m_sInformation));
|
protected byte[] | getFrameId()
return "TDLY".getBytes();
|
public int | getPlaylistDelay()Get the playlist delay value.
return m_iPlaylistDelayMillis;
|
public void | setPlaylistDelay(int iPlaylistDelayMillis)Set the playlist delay value.
if (iPlaylistDelayMillis < 0)
{
throw new ID3Exception("Playlist delay cannot be negative.");
}
m_iPlaylistDelayMillis = iPlaylistDelayMillis;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = Integer.toString(iPlaylistDelayMillis);
|
public java.lang.String | toString()
return "Playlist delay: [" + m_sInformation + "]";
|