Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTSSETextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TSSETextInformationID3V2Frame)))
{
return false;
}
TSSETextInformationID3V2Frame oOtherTSSE = (TSSETextInformationID3V2Frame)oOther;
return (m_sHardwareSoftwareSettings.equals(oOtherTSSE.m_sHardwareSoftwareSettings) &&
m_oTextEncoding.equals(oOtherTSSE.m_oTextEncoding) &&
m_sInformation.equals(oOtherTSSE.m_sInformation));
|
protected byte[] | getFrameId()
return "TSSE".getBytes();
|
public java.lang.String | getHardwareSoftwareSettings()Get the hardware and/or software settings and/or encoders used to encode the track
which was tagged.
return m_sHardwareSoftwareSettings;
|
public void | setHardwareSoftwareSettings(java.lang.String sHardwareSoftwareSettings)Set the hardware and/or software settings and/or encoders used to encode the track
which is being tagged.
m_sHardwareSoftwareSettings = sHardwareSoftwareSettings;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sHardwareSoftwareSettings;
|
public java.lang.String | toString()
return "Software/Hardware and settings used for encoding: [" + m_sInformation + "]";
|