/** @deprecated */
 protected void restore(XmlNode node) throws XMLException {
   originalWidth.restore(node);
   originalHeight.restore(node);
 }
 /**
  * Write the state of this <code>ImageExportOption</code>.
  *
  * @param w The {@link ImageExportOptionWriter} to read from.
  */
 public void writeTo(ImageExportOptionWriter w) throws IOException {
   originalWidth.writeTo(w);
   originalHeight.writeTo(w);
 }
 /** @deprecated */
 protected void save(XmlNode node) {
   originalWidth.save(node);
   originalHeight.save(node);
 }
 /**
  * Read the state of this <code>ImageExportOption</code>.
  *
  * @param r The {@link ImageExportOptionReader} to read from.
  */
 public void readFrom(ImageExportOptionReader r) throws IOException {
   originalWidth.readFrom(r);
   originalHeight.readFrom(r);
 }