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

lphystudio.app.treecomponent.ColorTable Maven / Gradle / Ivy

The newest version!
package lphystudio.app.treecomponent;

import java.awt.*;
import java.util.List;

/**
 * @author Alexei Drummond
 */
public class ColorTable  {

    List colors;

    public ColorTable(List colors)  {

        this.colors = colors;
    }

    public Color getColor(int index) {
        return colors.get(index);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy