}
// otherwise look up the paint table
Color seriesOutlinePaint = (Color) this.outlinePaintMap.get(new Integer(series));
if (seriesOutlinePaint == null) {
final DrawingSupplier supplier = this.getDrawingSupplier();
if (supplier != null) {
seriesOutlinePaint = supplier.getNextOutlinePaint();
this.outlinePaintMap.put(new Integer(series),
seriesOutlinePaint);
} else {
seriesOutlinePaint = this.getDrawingAssets().getColor(
Plot.COLOR_SERIES_OUTLINE_BASE);