mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-05-02 09:35:03 +00:00
23 lines
687 B
Java
23 lines
687 B
Java
package com.efiAnalytics.ui;
|
|
|
|
import java.awt.Component;
|
|
import java.awt.event.ActionEvent;
|
|
import java.awt.event.ActionListener;
|
|
import javax.swing.JDialog;
|
|
|
|
class ce implements ActionListener {
|
|
public void actionPerformed(ActionEvent paramActionEvent) {
|
|
for (Component component = (Component)paramActionEvent.getSource(); component != null; component = component.getParent()) {
|
|
if (component instanceof JDialog) {
|
|
((JDialog)component).dispose();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/com/efiAnalytics/ui/ce.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |