home *** CD-ROM | disk | FTP | other *** search
- package javax.swing;
-
- import java.util.EventObject;
- import javax.swing.event.AncestorEvent;
- import javax.swing.event.AncestorListener;
-
- class JComboBox$1 implements AncestorListener {
- // $FF: synthetic field
- private final JComboBox this$0;
-
- JComboBox$1(JComboBox var1) {
- this.this$0 = var1;
- }
-
- public void ancestorAdded(AncestorEvent var1) {
- this.this$0.hidePopup();
- }
-
- public void ancestorRemoved(AncestorEvent var1) {
- this.this$0.hidePopup();
- }
-
- public void ancestorMoved(AncestorEvent var1) {
- if (((EventObject)var1).getSource() != this.this$0) {
- this.this$0.hidePopup();
- }
-
- }
- }
-