Files
tustu/app/com/efiAnalytics/ui/PrefixedPropertiesStore.java
johndoe6345789 e17cdf49b3 Add wizard UI components and functionality
- Implement WizardCancelActionListener to handle cancellation actions.
- Create WizardDialog for managing dialog windows with window listener.
- Add WizardDialogCallback for handling dialog callbacks.
- Introduce WizardNextActionListener for handling next actions in the wizard.
- Develop WizardPanel to manage the wizard's layout and navigation.
- Implement WizardRunnable to run wizard actions in a separate thread.
- Define WizardStepCallback interface for step callbacks in the wizard.
- Create YAxisSelectorLayoutRunnable for managing layout updates.
- Add YAxisSelectorPanel for selecting Y-axis options in the UI.
- Remove unused interfaces and classes (cP, cT, co, cx, dx, eR, eU, ev).
2026-01-11 07:05:02 +00:00

39 lines
1.2 KiB
Java

package com.efiAnalytics.ui;
import java.util.Properties;
public class PrefixedPropertiesStore implements et {
Properties a = null;
private String b;
public PrefixedPropertiesStore(Properties paramProperties, String paramString) {
this.a = paramProperties;
this.b = paramString;
}
public void a(String paramString1, String paramString2) {
if (paramString2 == null)
paramString2 = "";
if (this.b != null && !this.b.isEmpty()) {
this.a.setProperty(this.b + "_" + paramString1, paramString2);
} else {
this.a.setProperty(paramString1, paramString2);
}
}
public String a(String paramString) {
return (this.b != null && !this.b.isEmpty()) ? this.a.getProperty(this.b + "_" + paramString) : this.a.getProperty(paramString);
}
public String b(String paramString1, String paramString2) {
String str = this.a.getProperty(this.b + "_" + paramString1);
return (str == null || str.equals("")) ? paramString2 : str;
}
}
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/com/efiAnalytics/ui/dQ.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/