return this.fig;
}
public byte[] toBytes() throws IOException {
ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
StorableOutput out = new StorableOutput(byteStream);
out.writeStorable(this);
out.close();
return byteStream.toByteArray();
}