FileDocCategorySizeDatePackage
TIT1TextInformationID3V2Frame.javaAPI Docjid3 0.463367Sun Feb 06 18:11:21 GMT 2005org.blinkenlights.jid3.v2

TIT1TextInformationID3V2Frame

public class TIT1TextInformationID3V2Frame extends TextInformationID3V2Frame
author
paul Text frame containing the content group description.

Fields Summary
private String
m_sContentGroupDescription
Constructors Summary
public TIT1TextInformationID3V2Frame(String sContentGroupDescription)
Constructor.

param
sContentGroupDescription the content group description


                
      
    
        super(sContentGroupDescription);
        
        m_sContentGroupDescription = sContentGroupDescription;
    
public TIT1TextInformationID3V2Frame(InputStream oIS)

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

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

        if ((oOther == null) || (!(oOther instanceof TIT1TextInformationID3V2Frame)))
        {
            return false;
        }
        
        TIT1TextInformationID3V2Frame oOtherTIT1 = (TIT1TextInformationID3V2Frame)oOther;
        
        return (m_sContentGroupDescription.equals(oOtherTIT1.m_sContentGroupDescription) &&
                m_oTextEncoding.equals(oOtherTIT1.m_oTextEncoding) &&
                m_sInformation.equals(oOtherTIT1.m_sInformation));
    
public java.lang.StringgetContentGroupDescription()
Get the content group description.

return
the content group description

        return m_sContentGroupDescription;
    
protected byte[]getFrameId()

        return "TIT1".getBytes();
    
public voidsetContentGroupDescription(java.lang.String sContentGroupDescription)
Set the content group description.

param
sContentGroupDescription the content group description

        m_sContentGroupDescription = sContentGroupDescription;
        m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
        m_sInformation = sContentGroupDescription;
    
public java.lang.StringtoString()

        return "Content group description: [" + m_sInformation + "]";