home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.plaf.metal;
-
- import java.awt.event.ActionEvent;
- import javax.swing.AbstractAction;
-
- final class MetalComboBoxUI$1 extends AbstractAction {
- // $FF: synthetic field
- private final MetalComboBoxUI this$0;
-
- // $FF: synthetic method
- MetalComboBoxUI$1(MetalComboBoxUI var1) {
- this.this$0 = var1;
- }
-
- public void actionPerformed(ActionEvent var1) {
- if (this.this$0.isPopupVisible()) {
- this.this$0.selectNextPossibleValue();
- } else {
- this.this$0.setPopupVisible(this.this$0.metalGetComboBox(), true);
- }
-
- }
-
- public boolean isEnabled() {
- return this.this$0.metalGetComboBox().isEnabled();
- }
- }
-