mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-25 06:04:59 +00:00
38 lines
778 B
Java
38 lines
778 B
Java
package ao;
|
|
|
|
import java.awt.Color;
|
|
import java.awt.event.ActionListener;
|
|
import javax.swing.JMenuItem;
|
|
|
|
class au extends JMenuItem {
|
|
private Color b;
|
|
|
|
private int c;
|
|
|
|
au(ar paramar, Color paramColor, int paramInt) {
|
|
super(" ");
|
|
this.b = paramColor;
|
|
this.c = paramInt;
|
|
setBackground(paramColor);
|
|
setForeground(paramColor);
|
|
setRolloverEnabled(false);
|
|
}
|
|
|
|
public void addActionListener(ActionListener paramActionListener) {
|
|
super.addActionListener(paramActionListener);
|
|
}
|
|
|
|
public Color a() {
|
|
return this.b;
|
|
}
|
|
|
|
public int b() {
|
|
return this.c;
|
|
}
|
|
}
|
|
|
|
|
|
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/ao/au.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |