Java Code Examples for org.jfree.chart.plot.DrawingSupplier#getNextShape()

The following examples show how to use org.jfree.chart.plot.DrawingSupplier#getNextShape() . 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 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 2
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 3
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 4
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 5
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 6
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 7
Source File: AbstractRenderer.java    From opensim-gui 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>).
 */
public Shape getSeriesShape(int series) {

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

    // otherwise look up the shape list
    Shape result = this.shapeList.getShape(series);
    if (result == null) {
        DrawingSupplier supplier = getDrawingSupplier();
        if (supplier != null) {
            result = supplier.getNextShape();
            this.shapeList.setShape(series, result);
        }
        else {
            result = this.baseShape;
        }
    }
    return result;

}
 
Example 8
Source File: AbstractRenderer.java    From buffer_bci 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 9
Source File: AbstractRenderer.java    From buffer_bci 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;

}