FileDocCategorySizeDatePackage
UnknownTextInformationID3V2Frame.javaAPI Docjid3 0.462004Sun Feb 06 18:11:23 GMT 2005org.blinkenlights.jid3.v2

UnknownTextInformationID3V2Frame

public class UnknownTextInformationID3V2Frame extends TextInformationID3V2Frame
author
paul To change the template for this generated type comment go to Window>Preferences>Java>Code Generation>Code and Comments

Fields Summary
private String
m_sFrameId
Constructors Summary
public UnknownTextInformationID3V2Frame(String sFrameId, InputStream oIS)

    
        
         
    
        super(oIS);

        // store the frame id so we can return it if requested
        m_sFrameId = sFrameId;
    
Methods Summary
public voidaccept(ID3Visitor oID3Visitor)

        oID3Visitor.visitUnknownTextInformationID3V2Frame(this);
    
public byte[]getFrameId()

        return m_sFrameId.getBytes();
    
public java.lang.StringtoString()

        return "Unknown text frame " + m_sFrameId + ": [" + m_sInformation + "]";