//Author: Alastair Douglas. All rights reserved.

import javax.swing.*;
public class CompositeColorView extends JTabbedPane
{
	public CompositeColorView(Clusters page)
	{	super(LEFT);
		this.addTab("Seeds", null, new StartColorView(page), "gradient start color");
		this.addTab("Trap Neighbour Seeds", null, new TrapNeighbourStartColorView(page), "gradient start color");
		this.addTab("Traps", null, new EndColorView(page), "gradient end color");
		this.addTab("Particles", null, new BorderColorView(page), "border color");
		this.addTab("Trap Neighbour Particles", null, new TrapNeighbourBorderColorView(page), "border color");
		this.addTab("Background", null, new BackgroundColorView(page), "background color");
	}
}


