/**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   this.firstBarPaint = SerialUtilities.readPaint(stream);
   this.lastBarPaint = SerialUtilities.readPaint(stream);
   this.positiveBarPaint = SerialUtilities.readPaint(stream);
   this.negativeBarPaint = SerialUtilities.readPaint(stream);
 }
Ejemplo n.º 2
0
 /**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   this.shape = SerialUtilities.readShape(stream);
   this.stroke = SerialUtilities.readStroke(stream);
   this.outlinePaint = SerialUtilities.readPaint(stream);
   this.fillPaint = SerialUtilities.readPaint(stream);
 }
Ejemplo n.º 3
0
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writeShape(this.shape, stream);
   SerialUtilities.writeStroke(this.stroke, stream);
   SerialUtilities.writePaint(this.outlinePaint, stream);
   SerialUtilities.writePaint(this.fillPaint, stream);
 }
Ejemplo n.º 4
0
  /**
   * Restores a serialized object.
   *
   * @param stream the input stream.
   * @throws IOException if there is an I/O problem.
   * @throws ClassNotFoundException if there is a problem loading a class.
   */
  private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
    stream.defaultReadObject();

    int paintCount = stream.readInt();
    this.paintSequence = new Paint[paintCount];
    for (int i = 0; i < paintCount; i++) {
      this.paintSequence[i] = SerialUtilities.readPaint(stream);
    }

    int outlinePaintCount = stream.readInt();
    this.outlinePaintSequence = new Paint[outlinePaintCount];
    for (int i = 0; i < outlinePaintCount; i++) {
      this.outlinePaintSequence[i] = SerialUtilities.readPaint(stream);
    }

    int strokeCount = stream.readInt();
    this.strokeSequence = new Stroke[strokeCount];
    for (int i = 0; i < strokeCount; i++) {
      this.strokeSequence[i] = SerialUtilities.readStroke(stream);
    }

    int outlineStrokeCount = stream.readInt();
    this.outlineStrokeSequence = new Stroke[outlineStrokeCount];
    for (int i = 0; i < outlineStrokeCount; i++) {
      this.outlineStrokeSequence[i] = SerialUtilities.readStroke(stream);
    }

    int shapeCount = stream.readInt();
    this.shapeSequence = new Shape[shapeCount];
    for (int i = 0; i < shapeCount; i++) {
      this.shapeSequence[i] = SerialUtilities.readShape(stream);
    }
  }
Ejemplo n.º 5
0
  /**
   * Handles serialization.
   *
   * @param stream the output stream.
   * @throws IOException if there is an I/O problem.
   */
  private void writeObject(ObjectOutputStream stream) throws IOException {
    stream.defaultWriteObject();

    int paintCount = this.paintSequence.length;
    stream.writeInt(paintCount);
    for (int i = 0; i < paintCount; i++) {
      SerialUtilities.writePaint(this.paintSequence[i], stream);
    }

    int outlinePaintCount = this.outlinePaintSequence.length;
    stream.writeInt(outlinePaintCount);
    for (int i = 0; i < outlinePaintCount; i++) {
      SerialUtilities.writePaint(this.outlinePaintSequence[i], stream);
    }

    int strokeCount = this.strokeSequence.length;
    stream.writeInt(strokeCount);
    for (int i = 0; i < strokeCount; i++) {
      SerialUtilities.writeStroke(this.strokeSequence[i], stream);
    }

    int outlineStrokeCount = this.outlineStrokeSequence.length;
    stream.writeInt(outlineStrokeCount);
    for (int i = 0; i < outlineStrokeCount; i++) {
      SerialUtilities.writeStroke(this.outlineStrokeSequence[i], stream);
    }

    int shapeCount = this.shapeSequence.length;
    stream.writeInt(shapeCount);
    for (int i = 0; i < shapeCount; i++) {
      SerialUtilities.writeShape(this.shapeSequence[i], stream);
    }
  }
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writePaint(this.firstBarPaint, stream);
   SerialUtilities.writePaint(this.lastBarPaint, stream);
   SerialUtilities.writePaint(this.positiveBarPaint, stream);
   SerialUtilities.writePaint(this.negativeBarPaint, stream);
 }
Ejemplo n.º 7
0
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writePaint(this.paint, stream);
   SerialUtilities.writePaint(this.backgroundPaint, stream);
   SerialUtilities.writePaint(this.outlinePaint, stream);
   SerialUtilities.writeStroke(this.outlineStroke, stream);
 }
Ejemplo n.º 8
0
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writePaint(this.dialBackgroundPaint, stream);
   SerialUtilities.writePaint(this.needlePaint, stream);
   SerialUtilities.writePaint(this.valuePaint, stream);
   SerialUtilities.writePaint(this.tickPaint, stream);
   SerialUtilities.writePaint(this.tickLabelPaint, stream);
 }
Ejemplo n.º 9
0
 /**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   this.majorTickPaint = SerialUtilities.readPaint(stream);
   this.majorTickStroke = SerialUtilities.readStroke(stream);
   this.minorTickPaint = SerialUtilities.readPaint(stream);
   this.minorTickStroke = SerialUtilities.readStroke(stream);
   this.tickLabelPaint = SerialUtilities.readPaint(stream);
 }
Ejemplo n.º 10
0
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writePaint(this.majorTickPaint, stream);
   SerialUtilities.writeStroke(this.majorTickStroke, stream);
   SerialUtilities.writePaint(this.minorTickPaint, stream);
   SerialUtilities.writeStroke(this.minorTickStroke, stream);
   SerialUtilities.writePaint(this.tickLabelPaint, stream);
 }
Ejemplo n.º 11
0
 /**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   this.dialBackgroundPaint = SerialUtilities.readPaint(stream);
   this.needlePaint = SerialUtilities.readPaint(stream);
   this.valuePaint = SerialUtilities.readPaint(stream);
   this.tickPaint = SerialUtilities.readPaint(stream);
   this.tickLabelPaint = SerialUtilities.readPaint(stream);
   if (this.dataset != null) {
     this.dataset.addChangeListener(this);
   }
 }
Ejemplo n.º 12
0
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writePaint(this.labelPaint, stream);
   SerialUtilities.writePaint(this.tickLabelPaint, stream);
   SerialUtilities.writeStroke(this.axisLineStroke, stream);
   SerialUtilities.writePaint(this.axisLinePaint, stream);
   SerialUtilities.writeStroke(this.tickMarkStroke, stream);
   SerialUtilities.writePaint(this.tickMarkPaint, stream);
 }
Ejemplo n.º 13
0
 /**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   this.labelPaint = SerialUtilities.readPaint(stream);
   this.tickLabelPaint = SerialUtilities.readPaint(stream);
   this.axisLineStroke = SerialUtilities.readStroke(stream);
   this.axisLinePaint = SerialUtilities.readPaint(stream);
   this.tickMarkStroke = SerialUtilities.readStroke(stream);
   this.tickMarkPaint = SerialUtilities.readPaint(stream);
   this.listenerList = new EventListenerList();
 }
Ejemplo n.º 14
0
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writeShape(this.legendBar, stream);
 }
Ejemplo n.º 15
0
 /**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   setArea(SerialUtilities.readShape(stream));
 }
Ejemplo n.º 16
0
 /**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   this.bounds = (Rectangle2D) SerialUtilities.readShape(stream);
 }
Ejemplo n.º 17
0
 /**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   this.errorIndicatorPaint = SerialUtilities.readPaint(stream);
   this.errorIndicatorStroke = SerialUtilities.readStroke(stream);
 }
Ejemplo n.º 18
0
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writeShape(getArea(), stream);
 }
Ejemplo n.º 19
0
  /**
   * Provides serialization support.
   *
   * @param stream the input stream.
   * @throws IOException if there is an I/O error.
   * @throws ClassNotFoundException if there is a classpath problem.
   */
  private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {

    stream.defaultReadObject();
    this.advanceLinePaint = SerialUtilities.readPaint(stream);
    this.advanceLineStroke = SerialUtilities.readStroke(stream);
  }
Ejemplo n.º 20
0
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writePaint(this.errorIndicatorPaint, stream);
   SerialUtilities.writeStroke(this.errorIndicatorStroke, stream);
 }
Ejemplo n.º 21
0
  /**
   * Provides serialization support.
   *
   * @param stream the output stream.
   * @throws IOException if there is an I/O error.
   */
  private void writeObject(ObjectOutputStream stream) throws IOException {

    stream.defaultWriteObject();
    SerialUtilities.writePaint(this.advanceLinePaint, stream);
    SerialUtilities.writeStroke(this.advanceLineStroke, stream);
  }
Ejemplo n.º 22
0
 /**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   this.legendBar = SerialUtilities.readShape(stream);
 }
Ejemplo n.º 23
0
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writePaint(this.artifactPaint, stream);
 }
 /**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   this.positivePaint = SerialUtilities.readPaint(stream);
   this.negativePaint = SerialUtilities.readPaint(stream);
   this.legendLine = SerialUtilities.readShape(stream);
 }
Ejemplo n.º 25
0
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writePaint(this.labelPaint, stream);
   SerialUtilities.writeStroke(this.dividerStroke, stream);
   SerialUtilities.writePaint(this.dividerPaint, stream);
 }
Ejemplo n.º 26
0
 /**
  * Provides serialization support.
  *
  * @param stream the input stream.
  * @throws IOException if there is an I/O error.
  * @throws ClassNotFoundException if there is a classpath problem.
  */
 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
   stream.defaultReadObject();
   this.artifactPaint = SerialUtilities.readPaint(stream);
 }
 /**
  * Provides serialization support.
  *
  * @param stream the output stream.
  * @throws IOException if there is an I/O error.
  */
 private void writeObject(ObjectOutputStream stream) throws IOException {
   stream.defaultWriteObject();
   SerialUtilities.writePaint(this.positivePaint, stream);
   SerialUtilities.writePaint(this.negativePaint, stream);
   SerialUtilities.writeShape(this.legendLine, stream);
 }