jdk/src/java.desktop/macosx/classes/com/apple/laf/AquaComboBoxButton.java
changeset 32865 f9cb6e427f9e
parent 32481 6f01579f7118
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
    33 import apple.laf.JRSUIState;
    33 import apple.laf.JRSUIState;
    34 import apple.laf.JRSUIConstants.*;
    34 import apple.laf.JRSUIConstants.*;
    35 
    35 
    36 @SuppressWarnings("serial") // Superclass is not serializable across versions
    36 @SuppressWarnings("serial") // Superclass is not serializable across versions
    37 class AquaComboBoxButton extends JButton {
    37 class AquaComboBoxButton extends JButton {
    38     final protected JComboBox<Object> comboBox;
    38     protected final JComboBox<Object> comboBox;
    39     final protected JList<?> list;
    39     protected final JList<?> list;
    40     final protected CellRendererPane rendererPane;
    40     protected final CellRendererPane rendererPane;
    41     final protected AquaComboBoxUI ui;
    41     protected final AquaComboBoxUI ui;
    42 
    42 
    43     protected final AquaPainter<JRSUIState> painter = AquaPainter.create(JRSUIState.getInstance());
    43     protected final AquaPainter<JRSUIState> painter = AquaPainter.create(JRSUIState.getInstance());
    44     boolean isPopDown;
    44     boolean isPopDown;
    45     boolean isSquare;
    45     boolean isSquare;
    46 
    46