All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jfree.chart3d.plot.StandardColorSource Maven / Gradle / Ivy

/* ===========================================================
 * Orson Charts : a 3D chart library for the Java(tm) platform
 * ===========================================================
 * 
 * (C)opyright 2013-2020, by Object Refinery Limited.  All rights reserved.
 * 
 * https://github.com/jfree/orson-charts
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 * 
 * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 
 * Other names may be trademarks of their respective owners.]
 * 
 * If you do not wish to be bound by the terms of the GPL, an alternative
 * commercial license can be purchased.  For details, please see visit the
 * Orson Charts home page:
 * 
 * http://www.object-refinery.com/orsoncharts/index.html
 * 
 */

package org.jfree.chart3d.plot;

import java.awt.Color;
import java.io.Serializable;
import java.util.Arrays;

import org.jfree.chart3d.internal.Args;
import org.jfree.chart3d.Colors;
import org.jfree.chart3d.data.DefaultKeyedValues;

/**
 * A standard implementation of the {@link ColorSource} interface.
 * 

* NOTE: This class is serializable, but the serialization format is subject * to change in future releases and should not be relied upon for persisting * instances of this class. */ @SuppressWarnings("serial") public final class StandardColorSource> implements ColorSource, Serializable { /** * An array of standard colors from which a color will be assigned if * there is not one already stored for a given key. */ private Color[] standardColors; /** Storage for the colors assigned to keys. */ private DefaultKeyedValues colors; /** * Creates a new instance with default colors. */ public StandardColorSource() { this(Colors.getDefaultColors()); } /** * Creates a new instance with the supplied sequence of colors. The * supplied array must have at least one entry, and all entries must be * non-{@code null}. * * @param colors the colors ({@code null} not permitted). */ public StandardColorSource(Color... colors) { Args.nullNotPermitted(colors, "colors"); if (colors.length == 0) { throw new IllegalArgumentException( "Zero length array not permitted."); } for (Color c: colors) { if (c == null) { throw new IllegalArgumentException( "Null array entries not permitted."); } } this.standardColors = colors.clone(); this.colors = new DefaultKeyedValues<>(); } /** * Returns the color associated with the specified key. * * @param key the key ({@code null} not permitted). * * @return The color (never {@code null}). */ @Override public Color getColor(K key) { // defer argument check Color c = this.colors.getValue(key); if (c != null) { return c; } c = this.standardColors[this.colors.getItemCount() % this.standardColors.length]; this.colors.put(key, c); return c; } /** * Sets the color for the specified key. * * @param key the key ({@code null} not permitted). * @param color the color ({@code null} permitted). */ @Override public void setColor(K key, Color color) { if (color != null) { this.colors.put(key, color); } else { this.colors.remove(key); } } /** * Clears existing color settings and sets the default colors to the * supplied value. This method is used by the framework and is not * normally called by client code. * * @param colors the colors ({@code null} not permitted). * * @since 1.2 */ @Override public void style(Color... colors) { this.standardColors = colors; this.colors.clear(); } /** * Tests this paint source for equality with an arbitrary object. * * @param obj the object ({@code null} permitted). * * @return A boolean. */ @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (!(obj instanceof StandardColorSource)) { return false; } StandardColorSource that = (StandardColorSource) obj; if (!Arrays.equals(this.standardColors, that.standardColors)) { return false; } if (!this.colors.equals(that.colors)) { return false; } return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy