Methods Summary |
---|
protected void | _parseDetails(java.nio.ByteBuffer content)
parseVersionAndFlags(content);
width = IsoTypeReader.readFixedPoint1616(content);
height = IsoTypeReader.readFixedPoint1616(content);
|
protected void | getContent(java.nio.ByteBuffer byteBuffer)
writeVersionAndFlags(byteBuffer);
IsoTypeWriter.writeFixedPoint1616(byteBuffer, width);
IsoTypeWriter.writeFixedPoint1616(byteBuffer, height);
|
protected long | getContentSize()
return 12;
|
public double | getHeight()
return height;
|
public double | getWidth()
return width;
|
public void | setHeight(double height)
this.height = height;
|
public void | setWidth(double width)
this.width = width;
|