Files
tustu/app/obfuscated_packages/ui_components/CheckBoxMutualExclusion.java
johndoe6345789 85ea7521dc Add new action listeners and utility classes for UI components
- Implemented action listeners for various buttons and radio buttons to handle user interactions.
- Created listeners for analysis features including locking, unlocking, and toggling visibility.
- Added filtering logic for analysis fields and weight items.
- Introduced a utility class for handling weight items with proper string representation and equality checks.
- Enhanced event handling for X and Y axis selections in the analysis UI.
- Added a listener for opening a website link related to TunerStudio.
2026-01-11 04:32:12 +00:00

32 lines
973 B
Java

package ao;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.util.ArrayList;
import javax.swing.JCheckBoxMenuItem;
public class i implements ItemListener {
ArrayList a = new ArrayList();
JCheckBoxMenuItem b = null;
public void itemStateChanged(ItemEvent paramItemEvent) {
if (paramItemEvent.getStateChange() == 1)
for (JCheckBoxMenuItem jCheckBoxMenuItem1 : this.a) {
JCheckBoxMenuItem jCheckBoxMenuItem2 = jCheckBoxMenuItem1;
if (!jCheckBoxMenuItem2.equals(paramItemEvent.getItem()) && jCheckBoxMenuItem2.getState())
jCheckBoxMenuItem2.setState(false);
}
}
public void a(JCheckBoxMenuItem paramJCheckBoxMenuItem) {
this.a.add(paramJCheckBoxMenuItem);
paramJCheckBoxMenuItem.addItemListener(this);
}
}
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/ao/i.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/