FileDocCategorySizeDatePackage
TIT3TextInformationID3V2Frame.javaAPI Docjid3 0.463259Sun Feb 06 18:11:20 GMT 2005org.blinkenlights.jid3.v2

TIT3TextInformationID3V2Frame

public class TIT3TextInformationID3V2Frame extends TextInformationID3V2Frame
author
paul Text frame containing the subtitle, or a description refinement, for the track.

Fields Summary
private String
m_sSubtitle
Constructors Summary
public TIT3TextInformationID3V2Frame(String sSubtitle)
Constructor.

param
sSubtitle the subtitle, or a description refinement, for the track

    
                     
      
    
        super(sSubtitle);
        
        m_sSubtitle = sSubtitle;
    
public TIT3TextInformationID3V2Frame(InputStream oIS)

        super(oIS);
        
        m_sSubtitle = m_sInformation;
    
Methods Summary
public voidaccept(ID3Visitor oID3Visitor)

        oID3Visitor.visitTIT3TextInformationID3V2Frame(this);
    
public booleanequals(java.lang.Object oOther)

        if ((oOther == null) || (!(oOther instanceof TIT3TextInformationID3V2Frame)))
        {
            return false;
        }
        
        TIT3TextInformationID3V2Frame oOtherTIT3 = (TIT3TextInformationID3V2Frame)oOther;
        
        return (m_sSubtitle.equals(oOtherTIT3.m_sSubtitle) &&
                m_oTextEncoding.equals(oOtherTIT3.m_oTextEncoding) &&
                m_sInformation.equals(oOtherTIT3.m_sInformation));
    
protected byte[]getFrameId()

        return "TIT3".getBytes();
    
public java.lang.StringgetSubtitle()
Get the subtitle, or description refinement, for the track.

return
the subtitle or description refinement

        return m_sSubtitle;
    
public voidsetSubtitle(java.lang.String sSubtitle)
Set the subtitle, or a description refinement, for the track.

param
sSubtitle the subtitle, or a description refinement, for the track

        m_sSubtitle = sSubtitle;
        m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
        m_sInformation = sSubtitle;
    
public java.lang.StringtoString()

        return "Subtitle/Description refinement: [" + m_sInformation + "]";