FileDocCategorySizeDatePackage
TPE3TextInformationID3V2Frame.javaAPI Docjid3 0.463210Sun Feb 06 18:11:19 GMT 2005org.blinkenlights.jid3.v2

TPE3TextInformationID3V2Frame

public class TPE3TextInformationID3V2Frame extends TextInformationID3V2Frame
author
paul Text frame containing the conductor of the recording in this track.

Fields Summary
private String
m_sConductor
Constructors Summary
public TPE3TextInformationID3V2Frame(String sConductor)
Constructor.

param
sConductor the conductor of the recording in this track

    
                    
      
    
        super(sConductor);
        
        m_sConductor = sConductor;
    
public TPE3TextInformationID3V2Frame(InputStream oIS)

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

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

        if ((oOther == null) || (!(oOther instanceof TPE3TextInformationID3V2Frame)))
        {
            return false;
        }
        
        TPE3TextInformationID3V2Frame oOtherTPE3 = (TPE3TextInformationID3V2Frame)oOther;
        
        return (m_sConductor.equals(oOtherTPE3.m_sConductor) &&
                m_oTextEncoding.equals(oOtherTPE3.m_oTextEncoding) &&
                m_sInformation.equals(oOtherTPE3.m_sInformation));
    
public java.lang.StringgetConductor()
Get the conductor of the recording in this track.

return
the conductor of the recording in this track

        return m_sConductor;
    
protected byte[]getFrameId()

        return "TPE3".getBytes();
    
public voidsetConductor(java.lang.String sConductor)
Set the conductor of the recording in this track.

param
sConductor the conductor of the recording in this track

        m_sConductor = sConductor;
        m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
        m_sInformation = sConductor;
    
public java.lang.StringtoString()

        return "Conductor: [" + m_sInformation + "]";