mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-24 13:45:00 +00:00
- Introduced multiple GaugeColorSetter classes (B to L) for setting gauge colors dynamically. - Implemented GaugePropertiesMenu class to manage gauge properties and settings. - Added action listeners for gauge styles and slider value changes to enhance interactivity. - Created RadioButtonColorSelectionListener and StaticValueActionListener for handling user input. - Ensured compatibility with existing gauge components and UI elements.
47 lines
999 B
Java
47 lines
999 B
Java
package L;
|
|
|
|
import ax.S;
|
|
import ax.ab;
|
|
import ax.ac;
|
|
import java.util.List;
|
|
|
|
public class MaxFunction extends ac {
|
|
List a;
|
|
|
|
protected G(List paramList) {
|
|
this.a = paramList;
|
|
}
|
|
|
|
public synchronized double a(S paramS) {
|
|
double d = Double.MIN_VALUE;
|
|
for (ab ab : this.a) {
|
|
double d1 = ab.b(paramS);
|
|
if (d1 > d)
|
|
d = d1;
|
|
}
|
|
return d;
|
|
}
|
|
|
|
public double b(S paramS) {
|
|
return a(paramS);
|
|
}
|
|
|
|
public String toString() {
|
|
StringBuilder stringBuilder = new StringBuilder();
|
|
stringBuilder.append("max( ");
|
|
for (byte b = 0; b < this.a.size(); b++) {
|
|
ab ab = this.a.get(b);
|
|
stringBuilder.append(ab.toString());
|
|
if (b + 1 < this.a.size())
|
|
stringBuilder.append(", ");
|
|
}
|
|
stringBuilder.append(")");
|
|
return stringBuilder.toString();
|
|
}
|
|
}
|
|
|
|
|
|
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/L/G.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |