Example usage for javax.swing JColorChooser JColorChooser

List of usage examples for javax.swing JColorChooser JColorChooser

Introduction

In this page you can find the example usage for javax.swing JColorChooser JColorChooser.

Prototype

public JColorChooser() 

Source Link

Document

Creates a color chooser pane with an initial color of white.

Usage

From source file:org.forester.archaeopteryx.TreePanel.java

final private void init() {
    _color_chooser = new JColorChooser();
    _rollover_popup = new JTextArea();
    _rollover_popup.setFont(POPUP_FONT);
    resetNodeIdToDistToLeafMap();/*from   w ww.  ja  v  a  2  s . com*/
    setTextAntialias();
    setTreeFile(null);
    setEdited(false);
    initializeOvSettings();
    setStartingAngle(TWO_PI * 3 / 4);
}