FileDocCategorySizeDatePackage
MetadataBlockDataApplication.javaAPI DocJaudiotagger 2.0.41742Wed Mar 30 16:11:46 BST 2011org.jaudiotagger.audio.flac.metadatablock

MetadataBlockDataApplication

public class MetadataBlockDataApplication extends Object implements MetadataBlockData
Application Block

This block is for use by third-party applications. The only mandatory field is a 32-bit identifier. This ID is granted upon request to an application by the FLAC maintainers. The remainder is of the block is defined by the registered application.

Fields Summary
private byte[]
data
Constructors Summary
public MetadataBlockDataApplication(MetadataBlockHeader header, RandomAccessFile raf)

        data = new byte[header.getDataLength()];
        raf.readFully(data);
    
Methods Summary
public byte[]getBytes()

        return data;
    
public intgetLength()

        return data.length;