Example usage for org.jfree.io SerialUtilities readPaint

List of usage examples for org.jfree.io SerialUtilities readPaint

Introduction

In this page you can find the example usage for org.jfree.io SerialUtilities readPaint.

Prototype

public static Paint readPaint(final ObjectInputStream stream) throws IOException, ClassNotFoundException 

Source Link

Document

Reads a Paint object that has been serialised by the SerialUtilities#writePaint(Paint,ObjectOutputStream) method.

Usage

From source file:org.jfree.experimental.chart.plot.dial.DialValueIndicator.java

/**
 * Provides serialization support./*  ww w .  j  a  v  a 2 s  .c  om*/
 *
 * @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.paint = SerialUtilities.readPaint(stream);
    this.backgroundPaint = SerialUtilities.readPaint(stream);
    this.outlinePaint = SerialUtilities.readPaint(stream);
    this.outlineStroke = SerialUtilities.readStroke(stream);
}

From source file:extern.AsymmetricStatisticalBarRenderer.java

/**
 * Provides serialization support./*  ww  w .j  a v a2s .  c om*/
 *
 * @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);
}

From source file:gov.nih.nci.caintegrator.ui.graphing.chart.plot.BoxAndWhiskerCoinPlotRenderer.java

/**
 * Provides serialization support.//from   w ww  . j  ava  2s.  c  o  m
 *
 * @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();
    setArtifactPaint(SerialUtilities.readPaint(stream));
}

From source file:org.proteosuite.FastScatterPlot.java

/**
 * Provides serialisation support.// w  w w. j av  a 2 s. co m
 *
 * @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.paint = SerialUtilities.readPaint(stream);
    this.domainGridlineStroke = SerialUtilities.readStroke(stream);
    this.domainGridlinePaint = SerialUtilities.readPaint(stream);

    this.rangeGridlineStroke = SerialUtilities.readStroke(stream);
    this.rangeGridlinePaint = SerialUtilities.readPaint(stream);

    if (this.domainAxis != null) {
        this.domainAxis.addChangeListener(this);
    }

    if (this.rangeAxis != null) {
        this.rangeAxis.addChangeListener(this);
    }
}

From source file:extern.NpairsBoxAndWhiskerRenderer.java

/**
 * Provides serialization support.// w  ww .j  a v a2  s.  c  om
 *
 * @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);
}

From source file:edu.dlnu.liuwenpeng.render.CandlestickRenderer.java

/**    
* Provides serialization support.    /*from  ww  w .  j ava  2s  . co m*/
*    
* @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.upPaint = SerialUtilities.readPaint(stream);
    this.downPaint = SerialUtilities.readPaint(stream);
    this.volumePaint = SerialUtilities.readPaint(stream);
}

From source file:KIDLYRenderer.java

/**
 * Provides serialization support./*w  w  w  . j ava  2 s.  co m*/
 *
 * @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.shadowPaint = SerialUtilities.readPaint(stream);
}

From source file:de.laures.cewolf.jfree.ThermometerPlot.java

/**
 * Provides serialization support.//www.  j ava 2s  .  c  o  m
 *
 * @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.thermometerStroke = SerialUtilities.readStroke(stream);
    this.thermometerPaint = SerialUtilities.readPaint(stream);
    this.valuePaint = SerialUtilities.readPaint(stream);
    this.mercuryPaint = SerialUtilities.readPaint(stream);
    this.subrangeIndicatorStroke = SerialUtilities.readStroke(stream);
    this.rangeIndicatorStroke = SerialUtilities.readStroke(stream);
    this.subrangePaint = new Paint[3];
    for (int i = 0; i < 3; i++) {
        this.subrangePaint[i] = SerialUtilities.readPaint(stream);
    }
    if (this.rangeAxis != null) {
        this.rangeAxis.addChangeListener(this);
    }
}

From source file:net.sf.maltcms.chromaui.charts.FastHeatMapPlot.java

/**
 * Provides serialization support.//from   ww w.j  a va  2 s  .  c om
 *
 * @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.paint = SerialUtilities.readPaint(stream);
    this.domainGridlineStroke = SerialUtilities.readStroke(stream);
    this.domainGridlinePaint = SerialUtilities.readPaint(stream);

    this.rangeGridlineStroke = SerialUtilities.readStroke(stream);
    this.rangeGridlinePaint = SerialUtilities.readPaint(stream);

    if (this.domainAxis != null) {
        this.domainAxis.addChangeListener(this);
    }

    if (this.rangeAxis != null) {
        this.rangeAxis.addChangeListener(this);
    }

    this.dataImage = ImageIO.read(stream);
}

From source file:genlab.gui.jfreechart.EnhancedSpiderWebPlot.java

/**
 * Provides serialization support./*from w  w w . j  av  a  2 s.  c om*/
 *
 * @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.legendItemShape = SerialUtilities.readShape(stream);
    this.seriesPaint = SerialUtilities.readPaint(stream);
    this.baseSeriesPaint = SerialUtilities.readPaint(stream);
    this.seriesOutlinePaint = SerialUtilities.readPaint(stream);
    this.baseSeriesOutlinePaint = SerialUtilities.readPaint(stream);
    this.seriesOutlineStroke = SerialUtilities.readStroke(stream);
    this.baseSeriesOutlineStroke = SerialUtilities.readStroke(stream);
    this.labelPaint = SerialUtilities.readPaint(stream);
    this.axisLinePaint = SerialUtilities.readPaint(stream);
    this.axisLineStroke = SerialUtilities.readStroke(stream);
    if (this.dataset != null) {
        this.dataset.addChangeListener(this);
    }
}