Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTFLTTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TFLTTextInformationID3V2Frame)))
{
return false;
}
TFLTTextInformationID3V2Frame oOtherTFLT = (TFLTTextInformationID3V2Frame)oOther;
return (m_sFileType.equals(oOtherTFLT.m_sFileType) &&
m_oTextEncoding.equals(oOtherTFLT.m_oTextEncoding) &&
m_sInformation.equals(oOtherTFLT.m_sInformation));
|
public java.lang.String | getFileType()Get the current file type.
return m_sFileType;
|
protected byte[] | getFrameId()
return "TFLT".getBytes();
|
public void | setFileType(java.lang.String sFileType)Set the file type of the file to which this tag will apply.
m_sFileType = sFileType;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sFileType;
|
public java.lang.String | toString()
return "File type: [" + m_sInformation + "]";
|