FileDocCategorySizeDatePackage
DataEntryUrnBox.javaAPI Docmp4parser 1.0-RC-171956Wed Dec 19 20:10:38 GMT 2012com.coremedia.iso.boxes

DataEntryUrnBox

public class DataEntryUrnBox extends com.googlecode.mp4parser.AbstractFullBox
Only used within the DataReferenceBox. Find more information there.
see
com.coremedia.iso.boxes.DataReferenceBox

Fields Summary
private String
name
private String
location
public static final String
TYPE
Constructors Summary
public DataEntryUrnBox()


      
        super(TYPE);
    
Methods Summary
public void_parseDetails(java.nio.ByteBuffer content)

        name = IsoTypeReader.readString(content);
        location = IsoTypeReader.readString(content);

    
protected voidgetContent(java.nio.ByteBuffer byteBuffer)

        byteBuffer.put(Utf8.convert(name));
        byteBuffer.put((byte) 0);
        byteBuffer.put(Utf8.convert(location));
        byteBuffer.put((byte) 0);
    
protected longgetContentSize()

        return Utf8.utf8StringLengthInBytes(name) + 1 + Utf8.utf8StringLengthInBytes(location) + 1;
    
public java.lang.StringgetLocation()

        return location;
    
public java.lang.StringgetName()

        return name;
    
public java.lang.StringtoString()

        return "DataEntryUrlBox[name=" + getName() + ";location=" + getLocation() + "]";