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

TPE4TextInformationID3V2Frame

public class TPE4TextInformationID3V2Frame extends TextInformationID3V2Frame
author
paul Text frame containing the interpreter, remixer or modifier of the recording in this track.

Fields Summary
private String
m_sModifiedBy
Constructors Summary
public TPE4TextInformationID3V2Frame(String sModifiedBy)
Constructor.

param
sModifiedBy the interpreter, remixer or modifier of the recording in this track


                       
      
    
        super(sModifiedBy);
        
        m_sModifiedBy = sModifiedBy;
    
public TPE4TextInformationID3V2Frame(InputStream oIS)

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

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

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

        return "TPE4".getBytes();
    
public java.lang.StringgetModifiedBy()
Get the interpreter, remixer or modifier of the recording in this track.

return
the interpreter, remixer or modifier of the recording in this track

        return m_sModifiedBy;
    
public voidsetModifiedBy(java.lang.String sModifiedBy)
Set the interpreter, remixer or modifier of the recording in this track.

param
sModifiedBy the interpreter, remixer or modifier of the recording in this track

        m_sModifiedBy = sModifiedBy;
        m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
        m_sInformation = sModifiedBy;
    
public java.lang.StringtoString()

        return "Interpreted, remixed, or otherwise modified by: [" + m_sInformation + "]";