org.jfree.chart.plot.DrawingSupplier Java Examples

The following examples show how to use org.jfree.chart.plot.DrawingSupplier. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AbstractRenderer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the paint used to fill an item drawn by the renderer.
 *
 * @param series  the series index (zero-based).
 *
 * @return The paint (never <code>null</code>).
 * 
 * @since 1.0.6
 */
public Paint lookupSeriesPaint(int series) {

    // look up the paint list
    Paint seriesPaint = getSeriesPaint(series);
    if (seriesPaint == null && this.autoPopulateSeriesPaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesPaint = supplier.getNextPaint();
            setSeriesPaint(series, seriesPaint, false);
        }
    }
    if (seriesPaint == null) {
        seriesPaint = this.basePaint;
    }
    return seriesPaint;

}
 
Example #2
Source File: AbstractRenderer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the paint used to outline an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesOutlinePaint(int series) {

    // look up the paint table
    Paint seriesOutlinePaint = getSeriesOutlinePaint(series);
    if (seriesOutlinePaint == null && this.autoPopulateSeriesOutlinePaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesOutlinePaint = supplier.getNextOutlinePaint();
            setSeriesOutlinePaint(series, seriesOutlinePaint, false);
        }
    }
    if (seriesOutlinePaint == null) {
        seriesOutlinePaint = this.baseOutlinePaint;
    }
    return seriesOutlinePaint;

}
 
Example #3
Source File: AbstractRenderer.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns a shape used to represent the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The shape (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Shape lookupSeriesShape(int series) {

    // return the override, if there is one...
    if (this.shape != null) {
        return this.shape;
    }

    // otherwise look up the shape list
    Shape result = getSeriesShape(series);
    if (result == null && this.autoPopulateSeriesShape) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextShape();
            setSeriesShape(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseShape;
    }
    return result;

}
 
Example #4
Source File: AbstractRenderer.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the stroke used to outline the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The stroke (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Stroke lookupSeriesOutlineStroke(int series) {

    // return the override, if there is one...
    if (this.outlineStroke != null) {
        return this.outlineStroke;
    }

    // otherwise look up the stroke table
    Stroke result = getSeriesOutlineStroke(series);
    if (result == null && this.autoPopulateSeriesOutlineStroke) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextOutlineStroke();
            setSeriesOutlineStroke(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseOutlineStroke;
    }
    return result;

}
 
Example #5
Source File: AbstractRenderer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the paint used to outline an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 * 
 * @since 1.0.6
 */
public Paint lookupSeriesOutlinePaint(int series) {

    // look up the paint table
    Paint seriesOutlinePaint = getSeriesOutlinePaint(series);
    if (seriesOutlinePaint == null && this.autoPopulateSeriesOutlinePaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesOutlinePaint = supplier.getNextOutlinePaint();
            setSeriesOutlinePaint(series, seriesOutlinePaint, false);
        }
    }
    if (seriesOutlinePaint == null) {
        seriesOutlinePaint = this.baseOutlinePaint;
    }
    return seriesOutlinePaint;

}
 
Example #6
Source File: AbstractRenderer.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the paint used to fill an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesFillPaint(int series) {

    // return the override, if there is one...
    if (this.fillPaint != null) {
        return this.fillPaint;
    }

    // otherwise look up the paint table
    Paint seriesFillPaint = getSeriesFillPaint(series);
    if (seriesFillPaint == null && this.autoPopulateSeriesFillPaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesFillPaint = supplier.getNextFillPaint();
            setSeriesFillPaint(series, seriesFillPaint, false);
        }
    }
    if (seriesFillPaint == null) {
        seriesFillPaint = this.baseFillPaint;
    }
    return seriesFillPaint;

}
 
Example #7
Source File: AbstractRenderer.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the stroke used to draw the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The stroke (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Stroke lookupSeriesStroke(int series) {

    // return the override, if there is one...
    if (this.stroke != null) {
        return this.stroke;
    }

    // otherwise look up the paint table
    Stroke result = getSeriesStroke(series);
    if (result == null && this.autoPopulateSeriesStroke) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextStroke();
            setSeriesStroke(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseStroke;
    }
    return result;

}
 
Example #8
Source File: AbstractRenderer.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the paint used to outline an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesOutlinePaint(int series) {

    // return the override, if there is one...
    if (this.outlinePaint != null) {
        return this.outlinePaint;
    }

    // otherwise look up the paint table
    Paint seriesOutlinePaint = getSeriesOutlinePaint(series);
    if (seriesOutlinePaint == null && this.autoPopulateSeriesOutlinePaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesOutlinePaint = supplier.getNextOutlinePaint();
            setSeriesOutlinePaint(series, seriesOutlinePaint, false);
        }
    }
    if (seriesOutlinePaint == null) {
        seriesOutlinePaint = this.baseOutlinePaint;
    }
    return seriesOutlinePaint;

}
 
Example #9
Source File: AbstractRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the stroke used to draw the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The stroke (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Stroke lookupSeriesStroke(int series) {

    // return the override, if there is one...
    if (this.stroke != null) {
        return this.stroke;
    }

    // otherwise look up the paint table
    Stroke result = getSeriesStroke(series);
    if (result == null && this.autoPopulateSeriesStroke) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextStroke();
            setSeriesStroke(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseStroke;
    }
    return result;

}
 
Example #10
Source File: AbstractRenderer.java    From opensim-gui with Apache License 2.0 6 votes vote down vote up
/**
 * Returns the stroke used to outline the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The stroke (never <code>null</code>).
 */
public Stroke getSeriesOutlineStroke(int series) {

    // return the override, if there is one...
    if (this.outlineStroke != null) {
        return this.outlineStroke;
    }

    // otherwise look up the stroke table
    Stroke result = this.outlineStrokeList.getStroke(series);
    if (result == null) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextOutlineStroke();
            this.outlineStrokeList.setStroke(series, result);
        }
        else {
            result = this.baseOutlineStroke;
        }
    }
    return result;

}
 
Example #11
Source File: AbstractRenderer.java    From opensim-gui with Apache License 2.0 6 votes vote down vote up
/**
 * Returns the stroke used to draw the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The stroke (never <code>null</code>).
 */
public Stroke getSeriesStroke(int series) {

    // return the override, if there is one...
    if (this.stroke != null) {
        return this.stroke;
    }

    // otherwise look up the paint table
    Stroke result = this.strokeList.getStroke(series);
    if (result == null) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextStroke();
            this.strokeList.setStroke(series, result);
        }
        else {
            result = this.baseStroke;
        }
    }
    return result;

}
 
Example #12
Source File: AbstractRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the paint used to outline an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesOutlinePaint(int series) {

    // return the override, if there is one...
    if (this.outlinePaint != null) {
        return this.outlinePaint;
    }

    // otherwise look up the paint table
    Paint seriesOutlinePaint = getSeriesOutlinePaint(series);
    if (seriesOutlinePaint == null && this.autoPopulateSeriesOutlinePaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesOutlinePaint = supplier.getNextOutlinePaint();
            setSeriesOutlinePaint(series, seriesOutlinePaint, false);
        }
    }
    if (seriesOutlinePaint == null) {
        seriesOutlinePaint = this.baseOutlinePaint;
    }
    return seriesOutlinePaint;

}
 
Example #13
Source File: AbstractRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the paint used to outline an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesOutlinePaint(int series) {

    // return the override, if there is one...
    if (this.outlinePaint != null) {
        return this.outlinePaint;
    }

    // otherwise look up the paint table
    Paint seriesOutlinePaint = getSeriesOutlinePaint(series);
    if (seriesOutlinePaint == null && this.autoPopulateSeriesOutlinePaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesOutlinePaint = supplier.getNextOutlinePaint();
            setSeriesOutlinePaint(series, seriesOutlinePaint, false);
        }
    }
    if (seriesOutlinePaint == null) {
        seriesOutlinePaint = this.baseOutlinePaint;
    }
    return seriesOutlinePaint;

}
 
Example #14
Source File: AbstractRenderer.java    From ccu-historian with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the stroke used to draw the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The stroke (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Stroke lookupSeriesStroke(int series) {

    // return the override, if there is one...
    if (this.stroke != null) {
        return this.stroke;
    }

    // otherwise look up the paint table
    Stroke result = getSeriesStroke(series);
    if (result == null && this.autoPopulateSeriesStroke) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextStroke();
            setSeriesStroke(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseStroke;
    }
    return result;

}
 
Example #15
Source File: AbstractRenderer.java    From ccu-historian with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns a shape used to represent the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The shape (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Shape lookupSeriesShape(int series) {

    // return the override, if there is one...
    if (this.shape != null) {
        return this.shape;
    }

    // otherwise look up the shape list
    Shape result = getSeriesShape(series);
    if (result == null && this.autoPopulateSeriesShape) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextShape();
            setSeriesShape(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseShape;
    }
    return result;

}
 
Example #16
Source File: AbstractRenderer.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the paint used to color an item drawn by the renderer.
 *
 * @param series  the series index (zero-based).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesPaint(int series) {

    // return the override, if there is one...
    if (this.paint != null) {
        return this.paint;
    }

    // otherwise look up the paint list
    Paint seriesPaint = getSeriesPaint(series);
    if (seriesPaint == null && this.autoPopulateSeriesPaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesPaint = supplier.getNextPaint();
            setSeriesPaint(series, seriesPaint, false);
        }
    }
    if (seriesPaint == null) {
        seriesPaint = this.basePaint;
    }
    return seriesPaint;

}
 
Example #17
Source File: AbstractRenderer.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns a shape used to represent the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The shape (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Shape lookupSeriesShape(int series) {

    // return the override, if there is one...
    if (this.shape != null) {
        return this.shape;
    }

    // otherwise look up the shape list
    Shape result = getSeriesShape(series);
    if (result == null && this.autoPopulateSeriesShape) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextShape();
            setSeriesShape(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseShape;
    }
    return result;

}
 
Example #18
Source File: AbstractRenderer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the stroke used to outline the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The stroke (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Stroke lookupSeriesOutlineStroke(int series) {

    // look up the stroke table
    Stroke result = getSeriesOutlineStroke(series);
    if (result == null && this.autoPopulateSeriesOutlineStroke) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextOutlineStroke();
            setSeriesOutlineStroke(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseOutlineStroke;
    }
    return result;

}
 
Example #19
Source File: AbstractRenderer.java    From SIMVA-SoS with Apache License 2.0 6 votes vote down vote up
/**
 * Returns the paint used to color an item drawn by the renderer.
 *
 * @param series  the series index (zero-based).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesPaint(int series) {

    // return the override, if there is one...
    if (this.paint != null) {
        return this.paint;
    }

    // otherwise look up the paint list
    Paint seriesPaint = getSeriesPaint(series);
    if (seriesPaint == null && this.autoPopulateSeriesPaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesPaint = supplier.getNextPaint();
            setSeriesPaint(series, seriesPaint, false);
        }
    }
    if (seriesPaint == null) {
        seriesPaint = this.basePaint;
    }
    return seriesPaint;

}
 
Example #20
Source File: AbstractRenderer.java    From SIMVA-SoS with Apache License 2.0 6 votes vote down vote up
/**
 * Returns the paint used to fill an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesFillPaint(int series) {

    // return the override, if there is one...
    if (this.fillPaint != null) {
        return this.fillPaint;
    }

    // otherwise look up the paint table
    Paint seriesFillPaint = getSeriesFillPaint(series);
    if (seriesFillPaint == null && this.autoPopulateSeriesFillPaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesFillPaint = supplier.getNextFillPaint();
            setSeriesFillPaint(series, seriesFillPaint, false);
        }
    }
    if (seriesFillPaint == null) {
        seriesFillPaint = this.baseFillPaint;
    }
    return seriesFillPaint;

}
 
Example #21
Source File: AbstractRenderer.java    From opensim-gui with Apache License 2.0 6 votes vote down vote up
/**
 * Returns the paint used to fill an item drawn by the renderer.
 *
 * @param series  the series index (zero-based).
 *
 * @return The paint (never <code>null</code>).
 */
public Paint getSeriesPaint(int series) {

    // return the override, if there is one...
    if (this.paint != null) {
        return this.paint;
    }

    // otherwise look up the paint list
    Paint seriesPaint = this.paintList.getPaint(series);
    if (seriesPaint == null) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesPaint = supplier.getNextPaint();
            this.paintList.setPaint(series, seriesPaint);
        }
        else {
            seriesPaint = this.basePaint;
        }
    }
    return seriesPaint;

}
 
Example #22
Source File: AbstractRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the paint used to color an item drawn by the renderer.
 *
 * @param series  the series index (zero-based).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesPaint(int series) {

    // return the override, if there is one...
    if (this.paint != null) {
        return this.paint;
    }

    // otherwise look up the paint list
    Paint seriesPaint = getSeriesPaint(series);
    if (seriesPaint == null && this.autoPopulateSeriesPaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesPaint = supplier.getNextPaint();
            setSeriesPaint(series, seriesPaint, false);
        }
    }
    if (seriesPaint == null) {
        seriesPaint = this.basePaint;
    }
    return seriesPaint;

}
 
Example #23
Source File: AbstractRenderer.java    From SIMVA-SoS with Apache License 2.0 6 votes vote down vote up
/**
 * Returns a shape used to represent the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The shape (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Shape lookupSeriesShape(int series) {

    // return the override, if there is one...
    if (this.shape != null) {
        return this.shape;
    }

    // otherwise look up the shape list
    Shape result = getSeriesShape(series);
    if (result == null && this.autoPopulateSeriesShape) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextShape();
            setSeriesShape(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseShape;
    }
    return result;

}
 
Example #24
Source File: AbstractRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the paint used to fill an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesFillPaint(int series) {

    // return the override, if there is one...
    if (this.fillPaint != null) {
        return this.fillPaint;
    }

    // otherwise look up the paint table
    Paint seriesFillPaint = getSeriesFillPaint(series);
    if (seriesFillPaint == null && this.autoPopulateSeriesFillPaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesFillPaint = supplier.getNextFillPaint();
            setSeriesFillPaint(series, seriesFillPaint, false);
        }
    }
    if (seriesFillPaint == null) {
        seriesFillPaint = this.baseFillPaint;
    }
    return seriesFillPaint;

}
 
Example #25
Source File: AbstractRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the paint used to fill an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesFillPaint(int series) {

    // return the override, if there is one...
    if (this.fillPaint != null) {
        return this.fillPaint;
    }

    // otherwise look up the paint table
    Paint seriesFillPaint = getSeriesFillPaint(series);
    if (seriesFillPaint == null && this.autoPopulateSeriesFillPaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesFillPaint = supplier.getNextFillPaint();
            setSeriesFillPaint(series, seriesFillPaint, false);
        }
    }
    if (seriesFillPaint == null) {
        seriesFillPaint = this.baseFillPaint;
    }
    return seriesFillPaint;

}
 
Example #26
Source File: AbstractRenderer.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Returns the stroke used to outline the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The stroke (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Stroke lookupSeriesOutlineStroke(int series) {

    // return the override, if there is one...
    if (this.outlineStroke != null) {
        return this.outlineStroke;
    }

    // otherwise look up the stroke table
    Stroke result = getSeriesOutlineStroke(series);
    if (result == null && this.autoPopulateSeriesOutlineStroke) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextOutlineStroke();
            setSeriesOutlineStroke(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseOutlineStroke;
    }
    return result;

}
 
Example #27
Source File: AbstractRenderer.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns a shape used to represent the items in a series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The shape (never <code>null</code>).
 * 
 * @since 1.0.6
 */
public Shape lookupSeriesShape(int series) {

    // look up the shape list
    Shape result = getSeriesShape(series);
    if (result == null && this.autoPopulateSeriesShape) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextShape();
            setSeriesShape(series, result, false);
        }
    }
    if (result == null) {
        result = this.baseShape;
    }
    return result;

}
 
Example #28
Source File: AbstractRenderer.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the paint used to color an item drawn by the renderer.
 *
 * @param series  the series index (zero-based).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesPaint(int series) {

    // return the override, if there is one...
    if (this.paint != null) {
        return this.paint;
    }

    // otherwise look up the paint list
    Paint seriesPaint = getSeriesPaint(series);
    if (seriesPaint == null && this.autoPopulateSeriesPaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesPaint = supplier.getNextPaint();
            setSeriesPaint(series, seriesPaint, false);
        }
    }
    if (seriesPaint == null) {
        seriesPaint = this.basePaint;
    }
    return seriesPaint;

}
 
Example #29
Source File: AbstractRenderer.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns the paint used to outline an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 *
 * @since 1.0.6
 */
public Paint lookupSeriesOutlinePaint(int series) {

    // return the override, if there is one...
    if (this.outlinePaint != null) {
        return this.outlinePaint;
    }

    // otherwise look up the paint table
    Paint seriesOutlinePaint = getSeriesOutlinePaint(series);
    if (seriesOutlinePaint == null && this.autoPopulateSeriesOutlinePaint) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesOutlinePaint = supplier.getNextOutlinePaint();
            setSeriesOutlinePaint(series, seriesOutlinePaint, false);
        }
    }
    if (seriesOutlinePaint == null) {
        seriesOutlinePaint = this.baseOutlinePaint;
    }
    return seriesOutlinePaint;

}
 
Example #30
Source File: AbstractRenderer.java    From opensim-gui with Apache License 2.0 6 votes vote down vote up
/**
 * Returns the paint used to outline an item drawn by the renderer.
 *
 * @param series  the series (zero-based index).
 *
 * @return The paint (never <code>null</code>).
 */
public Paint getSeriesOutlinePaint(int series) {

    // return the override, if there is one...
    if (this.outlinePaint != null) {
        return this.outlinePaint;
    }

    // otherwise look up the paint table
    Paint seriesOutlinePaint = this.outlinePaintList.getPaint(series);
    if (seriesOutlinePaint == null) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            seriesOutlinePaint = supplier.getNextOutlinePaint();
            this.outlinePaintList.setPaint(series, seriesOutlinePaint);
        }
        else {
            seriesOutlinePaint = this.baseOutlinePaint;
        }
    }
    return seriesOutlinePaint;

}