Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTLENTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TLENTextInformationID3V2Frame)))
{
return false;
}
TLENTextInformationID3V2Frame oOtherTLEN = (TLENTextInformationID3V2Frame)oOther;
return ((m_iLengthInMilliseconds == oOtherTLEN.m_iLengthInMilliseconds) &&
m_oTextEncoding.equals(oOtherTLEN.m_oTextEncoding) &&
m_sInformation.equals(oOtherTLEN.m_sInformation));
|
protected byte[] | getFrameId()
return "TLEN".getBytes();
|
public int | getTrackLength()Get the length of this track.
return m_iLengthInMilliseconds;
|
public void | setTrackLength(int iLengthInMilliseconds)Set the length of this track.
m_iLengthInMilliseconds = iLengthInMilliseconds;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = Integer.toString(iLengthInMilliseconds);
|
public java.lang.String | toString()
return "Length (milliseconds): [" + m_sInformation + "]";
|