lphystudio.app.treecomponent.ColorTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lphy-studio Show documentation
Show all versions of lphy-studio Show documentation
The GUI for LPhy language.
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);
}
}