Searched refs:chooserPanels (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJColorChooser.java98 private AbstractColorChooserPanel[] chooserPanels = new AbstractColorChooserPanel[0]; field in class:JColorChooser
115 public static final String CHOOSER_PANELS_PROPERTY = "chooserPanels";
433 for (int i = 0; i < chooserPanels.length; i++) {
434 if (chooserPanels[i] == panel) {
443 AbstractColorChooserPanel[] newArray = new AbstractColorChooserPanel[chooserPanels.length-1];
445 if (containedAt == chooserPanels.length-1) { // at end
446 System.arraycopy(chooserPanels, 0, newArray, 0, newArray.length);
449 System.arraycopy(chooserPanels, 1, newArray, 0, newArray.length);
452 System.arraycopy(chooserPanels, 0, newArray, 0, containedAt);
453 System.arraycopy(chooserPanels, containedA
[all...]

Completed in 29 milliseconds