Methods Summary |
---|
public void | _parseDetails(java.nio.ByteBuffer content)
_parseReservedAndDataReferenceIndex(content);
namespace = IsoTypeReader.readString(content);
schemaLocation = IsoTypeReader.readString(content);
imageMimeType = IsoTypeReader.readString(content);
_parseChildBoxes(content);
|
protected void | getContent(java.nio.ByteBuffer byteBuffer)
_writeReservedAndDataReferenceIndex(byteBuffer);
IsoTypeWriter.writeUtf8String(byteBuffer, namespace);
IsoTypeWriter.writeUtf8String(byteBuffer, schemaLocation);
IsoTypeWriter.writeUtf8String(byteBuffer, imageMimeType);
|
protected long | getContentSize()
long contentSize = 8 + namespace.length() + schemaLocation.length() + imageMimeType.length() + 3;
return contentSize;
|
public java.lang.String | getImageMimeType()
return imageMimeType;
|
public java.lang.String | getNamespace()
return namespace;
|
public java.lang.String | getSchemaLocation()
return schemaLocation;
|
public void | setImageMimeType(java.lang.String imageMimeType)
this.imageMimeType = imageMimeType;
|
public void | setNamespace(java.lang.String namespace)
this.namespace = namespace;
|
public void | setSchemaLocation(java.lang.String schemaLocation)
this.schemaLocation = schemaLocation;
|