mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-24 13:45:00 +00:00
Add new components for tuning views and dialog interactions
- Introduced TuningViewWindow for managing tuning view windows. - Implemented BurnButtonActionListener to handle burn button actions. - Created BurnButtonDelayThread to manage delay in burn actions. - Added BurnButtonInitializer for initializing burn button components. - Developed BurnButtonMouseAdapter to manage mouse interactions on burn buttons. - Implemented BurnButtonStateListener to manage burn button state changes. - Created CrossHairActionListener for handling crosshair actions. - Added CrossHairChannelListener to manage channel value updates. - Developed CrossHairPopupListener for managing crosshair popup actions. - Implemented SettingsPanelPopupListener for handling settings panel popups. - Created SettingsPanelSelectionListener for managing selection changes in settings. - Added TablePropertiesHandler for managing table properties. - Introduced CrcCheckActionListener for CRC check actions. - Implemented TimeSlipApplyListener for applying time slip settings. - Created TimeSlipCancelListener for canceling time slip actions. - Developed TimeSlipDialog for managing time slip dialog interactions. - Added TimeSlipFieldFocusListener to manage focus events on time slip fields. - Implemented TimeSlipPanel for displaying and managing time slip data. - Created CylPressureSenderThread for sending cylinder pressure data. - Developed MultiCylPressureSenderThread for managing multiple cylinder pressure data transmissions.
This commit is contained in:
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class V implements ActionListener {
|
||||
V(x paramx) {}
|
||||
class ActionCommandHandlerB implements ActionListener {
|
||||
ActionCommandHandlerB(x paramx) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
this.a.b(paramActionEvent.getActionCommand());
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class G implements ActionListener {
|
||||
G(x paramx) {}
|
||||
class ActionCommandHandlerG implements ActionListener {
|
||||
ActionCommandHandlerG(x paramx) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
this.a.g(paramActionEvent.getActionCommand());
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class H implements ActionListener {
|
||||
H(x paramx) {}
|
||||
class ActionCommandHandlerH implements ActionListener {
|
||||
ActionCommandHandlerH(x paramx) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
this.a.h(paramActionEvent.getActionCommand());
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class i implements ActionListener {
|
||||
i(g paramg) {}
|
||||
class AddGaugeButtonListener implements ActionListener {
|
||||
AddGaugeButtonListener(g paramg) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
g.a(this.a, this.a.c.a);
|
||||
@@ -5,8 +5,8 @@ import java.awt.event.ActionListener;
|
||||
import javax.swing.JCheckBoxMenuItem;
|
||||
import r.a;
|
||||
|
||||
class M implements ActionListener {
|
||||
M(x paramx) {}
|
||||
class AntiAliasingHandler implements ActionListener {
|
||||
AntiAliasingHandler(x paramx) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
boolean bool = ((JCheckBoxMenuItem)paramActionEvent.getSource()).getState();
|
||||
@@ -2,7 +2,7 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public interface f {
|
||||
public interface ArrayListListener {
|
||||
void a(ArrayList paramArrayList);
|
||||
}
|
||||
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class c implements ActionListener {
|
||||
c(b paramb) {}
|
||||
class AspectRatioCancelListener implements ActionListener {
|
||||
AspectRatioCancelListener(b paramb) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
b.a(this.a);
|
||||
@@ -5,8 +5,8 @@ import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import javax.swing.JCheckBoxMenuItem;
|
||||
|
||||
class J implements ActionListener {
|
||||
J(x paramx, Component paramComponent) {}
|
||||
class AspectRatioCheckboxHandler implements ActionListener {
|
||||
AspectRatioCheckboxHandler(x paramx, Component paramComponent) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
x.c(this.b, ((JCheckBoxMenuItem)paramActionEvent.getSource()).getState());
|
||||
@@ -1,11 +1,11 @@
|
||||
package com.efiAnalytics.apps.ts.dashboard;
|
||||
|
||||
class e {
|
||||
class AspectRatioDimensions {
|
||||
private int b;
|
||||
|
||||
private int c;
|
||||
|
||||
e(b paramb, int paramInt1, int paramInt2) {
|
||||
AspectRatioDimensions(b paramb, int paramInt1, int paramInt2) {
|
||||
this.c = paramInt2;
|
||||
this.b = paramInt1;
|
||||
}
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class d implements ActionListener {
|
||||
d(b paramb) {}
|
||||
class AspectRatioOkListener implements ActionListener {
|
||||
AspectRatioOkListener(b paramb) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
b.b(this.a);
|
||||
@@ -17,7 +17,7 @@ import javax.swing.JLabel;
|
||||
import javax.swing.JPanel;
|
||||
import s.g;
|
||||
|
||||
public class b extends JPanel {
|
||||
public class AspectRatioPanel extends JPanel {
|
||||
do a = new do("", 4);
|
||||
|
||||
do b = new do("", 4);
|
||||
@@ -28,7 +28,7 @@ public class b extends JPanel {
|
||||
|
||||
e e = null;
|
||||
|
||||
public b() {
|
||||
public AspectRatioPanel() {
|
||||
setBorder(BorderFactory.createTitledBorder(a("Forced Dash Aspect Ratio")));
|
||||
setLayout(new GridLayout(0, 1));
|
||||
add(new JLabel(a("Set the width and height or ratio you want for this dash.")));
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.efiAnalytics.apps.ts.dashboard;
|
||||
|
||||
public interface u {
|
||||
public interface BooleanCheckInterface {
|
||||
boolean a();
|
||||
}
|
||||
|
||||
@@ -5,8 +5,8 @@ import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import javax.swing.JCheckBoxMenuItem;
|
||||
|
||||
class I implements ActionListener {
|
||||
I(x paramx) {}
|
||||
class CheckboxImageHandler implements ActionListener {
|
||||
CheckboxImageHandler(x paramx) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
x.b(this.a, ((JCheckBoxMenuItem)paramActionEvent.getSource()).getState());
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import G.T;
|
||||
import G.cZ;
|
||||
|
||||
class o implements cZ {
|
||||
o(DashLabel paramDashLabel) {}
|
||||
class DashLabelConfigProvider implements cZ {
|
||||
DashLabelConfigProvider(DashLabel paramDashLabel) {}
|
||||
|
||||
public String a() {
|
||||
String str = this.a.getEcuConfigurationName();
|
||||
@@ -9,7 +9,7 @@ import java.lang.reflect.AccessibleObject;
|
||||
import java.lang.reflect.Field;
|
||||
import javax.swing.JComponent;
|
||||
|
||||
public abstract class s extends JComponent implements Serializable {
|
||||
public abstract class DashboardComponent extends JComponent implements Serializable {
|
||||
private double a = 0.0D;
|
||||
|
||||
private double b = 0.0D;
|
||||
@@ -5,7 +5,7 @@ import java.awt.Color;
|
||||
import java.awt.Component;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class Z implements Serializable {
|
||||
public class DashboardConfiguration implements Serializable {
|
||||
private String a = "";
|
||||
|
||||
private Color b = null;
|
||||
@@ -9,12 +9,12 @@ import r.b;
|
||||
import r.j;
|
||||
import v.c;
|
||||
|
||||
class R implements a {
|
||||
class DashboardFileLoader implements a {
|
||||
private b b = null;
|
||||
|
||||
private String[] c = null;
|
||||
|
||||
R(x paramx, b paramb, String[] paramArrayOfString) {
|
||||
DashboardFileLoader(x paramx, b paramb, String[] paramArrayOfString) {
|
||||
this.b = paramb;
|
||||
this.c = paramArrayOfString;
|
||||
}
|
||||
@@ -3,10 +3,10 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import i.j;
|
||||
import java.awt.Image;
|
||||
|
||||
class F implements j {
|
||||
class DashboardImageHandler implements j {
|
||||
boolean a = false;
|
||||
|
||||
F(x paramx) {}
|
||||
DashboardImageHandler(x paramx) {}
|
||||
|
||||
public void a() {
|
||||
x.a(this.b, (Image)null);
|
||||
@@ -5,10 +5,10 @@ import java.awt.Container;
|
||||
import java.awt.KeyEventDispatcher;
|
||||
import java.awt.event.KeyEvent;
|
||||
|
||||
public class T implements KeyEventDispatcher {
|
||||
public class DashboardKeyDispatcher implements KeyEventDispatcher {
|
||||
x a = null;
|
||||
|
||||
T(x paramx1, x paramx2) {
|
||||
DashboardKeyDispatcher(x paramx1, x paramx2) {
|
||||
this.a = paramx2;
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ import java.awt.Dimension;
|
||||
import java.awt.LayoutManager2;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class Y implements LayoutManager2, Serializable {
|
||||
public class DashboardLayoutManager implements LayoutManager2, Serializable {
|
||||
public void layoutContainer(Container paramContainer) {
|
||||
Component[] arrayOfComponent = paramContainer.getComponents();
|
||||
for (byte b = 0; b < arrayOfComponent.length; b++) {
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.efiAnalytics.apps.ts.dashboard;
|
||||
|
||||
public interface t {}
|
||||
public interface DashboardMarkerInterface {}
|
||||
|
||||
|
||||
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/com/efiAnalytics/apps/ts/dashboard/t.class
|
||||
@@ -3,12 +3,12 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import G.cu;
|
||||
import I.b;
|
||||
|
||||
class S extends Thread {
|
||||
class DemoAnimationThread extends Thread {
|
||||
boolean a = true;
|
||||
|
||||
boolean b = false;
|
||||
|
||||
S(x paramx) {
|
||||
DemoAnimationThread(x paramx) {
|
||||
setName("GaugeCluster Demo " + x.ai++);
|
||||
setDaemon(true);
|
||||
}
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class j implements ActionListener {
|
||||
j(g paramg) {}
|
||||
class DoneButtonListener implements ActionListener {
|
||||
DoneButtonListener(g paramg) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
this.a.dispose();
|
||||
@@ -8,7 +8,7 @@ import java.awt.event.MouseMotionListener;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
class W extends MouseAdapter implements MouseMotionListener {
|
||||
class DragResizeMouseAdapter extends MouseAdapter implements MouseMotionListener {
|
||||
List a = new ArrayList();
|
||||
|
||||
List b = new ArrayList();
|
||||
@@ -23,7 +23,7 @@ class W extends MouseAdapter implements MouseMotionListener {
|
||||
|
||||
Point g = null;
|
||||
|
||||
W(x paramx) {}
|
||||
DragResizeMouseAdapter(x paramx) {}
|
||||
|
||||
public void mousePressed(MouseEvent paramMouseEvent) {
|
||||
// Byte code:
|
||||
@@ -4,7 +4,7 @@ import G.R;
|
||||
import G.T;
|
||||
import G.cu;
|
||||
|
||||
public class r {
|
||||
public class EcuConfigurationHelper {
|
||||
public static R a(s params) {
|
||||
return (params.getEcuConfigurationName() == null || params.getEcuConfigurationName().isEmpty() || params.getEcuConfigurationName().equals(cu.a)) ? T.a().c() : T.a().c(params.getEcuConfigurationName());
|
||||
}
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class z implements ActionListener {
|
||||
z(x paramx) {}
|
||||
class EditModeActionListener implements ActionListener {
|
||||
EditModeActionListener(x paramx) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
this.a.t();
|
||||
@@ -2,7 +2,7 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public interface a {
|
||||
public interface FileHandler {
|
||||
void a(File paramFile);
|
||||
}
|
||||
|
||||
@@ -4,10 +4,10 @@ import java.awt.Component;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class O implements ActionListener {
|
||||
class GaugeActionListener implements ActionListener {
|
||||
String a = "";
|
||||
|
||||
O(x paramx, String paramString) {
|
||||
GaugeActionListener(x paramx, String paramString) {
|
||||
this.a = paramString;
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ import javax.swing.JScrollPane;
|
||||
import r.j;
|
||||
import t.a;
|
||||
|
||||
public class g extends a {
|
||||
public class GaugeBrowserDialog extends a {
|
||||
List a = new ArrayList();
|
||||
|
||||
JPanel b = new JPanel();
|
||||
@@ -33,7 +33,7 @@ public class g extends a {
|
||||
|
||||
JPanel e = new JPanel();
|
||||
|
||||
public g(Window paramWindow, String paramString) {
|
||||
public GaugeBrowserDialog(Window paramWindow, String paramString) {
|
||||
super(paramWindow, s.g.b(paramString));
|
||||
setLayout(new BorderLayout());
|
||||
this.e.setLayout(new BorderLayout());
|
||||
@@ -71,7 +71,7 @@ public class g extends a {
|
||||
setSize(eJ.a(900), eJ.a(550));
|
||||
}
|
||||
|
||||
public g(Window paramWindow, List paramList, String paramString) {
|
||||
public GaugeBrowserDialog(Window paramWindow, List paramList, String paramString) {
|
||||
this(paramWindow, paramString);
|
||||
for (File file : paramList)
|
||||
a(file);
|
||||
@@ -5,7 +5,7 @@ import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
import java.util.Timer;
|
||||
|
||||
class N extends MouseAdapter {
|
||||
class GaugeClickMouseAdapter extends MouseAdapter {
|
||||
d a = null;
|
||||
|
||||
long b = 0L;
|
||||
@@ -16,7 +16,7 @@ class N extends MouseAdapter {
|
||||
|
||||
Timer e = null;
|
||||
|
||||
N(x paramx) {}
|
||||
GaugeClickMouseAdapter(x paramx) {}
|
||||
|
||||
public void mouseExited(MouseEvent paramMouseEvent) {
|
||||
if (this.e != null)
|
||||
@@ -4,8 +4,8 @@ import G.T;
|
||||
import G.cZ;
|
||||
import java.io.Serializable;
|
||||
|
||||
class v implements cZ, Serializable {
|
||||
v(Gauge paramGauge) {}
|
||||
class GaugeConfigProvider implements cZ, Serializable {
|
||||
GaugeConfigProvider(Gauge paramGauge) {}
|
||||
|
||||
public String a() {
|
||||
String str = this.a.getEcuConfigurationName();
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.io.File;
|
||||
import java.io.FileFilter;
|
||||
|
||||
class k implements FileFilter {
|
||||
k(g paramg) {}
|
||||
class GaugeFileFilter implements FileFilter {
|
||||
GaugeFileFilter(g paramg) {}
|
||||
|
||||
public boolean accept(File paramFile) {
|
||||
String str = paramFile.getName().toLowerCase();
|
||||
@@ -4,8 +4,8 @@ import V.a;
|
||||
import com.efiAnalytics.ui.bV;
|
||||
import java.io.File;
|
||||
|
||||
class E implements a {
|
||||
E(x paramx) {}
|
||||
class GaugeFileLoader implements a {
|
||||
GaugeFileLoader(x paramx) {}
|
||||
|
||||
public void a(File paramFile) {
|
||||
try {
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import G.aN;
|
||||
import java.io.Serializable;
|
||||
|
||||
class w implements aN, Serializable {
|
||||
w(Gauge paramGauge) {}
|
||||
class GaugePainterInvalidator implements aN, Serializable {
|
||||
GaugePainterInvalidator(Gauge paramGauge) {}
|
||||
|
||||
public void a(String paramString1, String paramString2) {
|
||||
this.a.invalidatePainter();
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
|
||||
class l extends MouseAdapter {
|
||||
l(g paramg) {}
|
||||
class GaugePreviewClickListener extends MouseAdapter {
|
||||
GaugePreviewClickListener(g paramg) {}
|
||||
|
||||
public void mouseClicked(MouseEvent paramMouseEvent) {
|
||||
n n = (n)paramMouseEvent.getSource();
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
|
||||
class m extends MouseAdapter {
|
||||
m(g paramg) {}
|
||||
class GaugePreviewMouseListener extends MouseAdapter {
|
||||
GaugePreviewMouseListener(g paramg) {}
|
||||
|
||||
public void mouseClicked(MouseEvent paramMouseEvent) {
|
||||
n n = (n)paramMouseEvent.getSource();
|
||||
@@ -11,7 +11,7 @@ import java.io.File;
|
||||
import javax.swing.JLabel;
|
||||
import javax.swing.JPanel;
|
||||
|
||||
class n extends JPanel {
|
||||
class GaugePreviewPanel extends JPanel {
|
||||
File a;
|
||||
|
||||
int b = eJ.a(120);
|
||||
@@ -20,7 +20,7 @@ class n extends JPanel {
|
||||
|
||||
bI d = new bI();
|
||||
|
||||
public n(g paramg, File paramFile) {
|
||||
public GaugePreviewPanel(g paramg, File paramFile) {
|
||||
this.d.setPreferredSize(new Dimension(this.b, this.b));
|
||||
this.d.setMinimumSize(new Dimension(this.b, this.b));
|
||||
this.c.setPreferredSize(new Dimension(this.b, getFont().getSize()));
|
||||
@@ -31,7 +31,7 @@ class n extends JPanel {
|
||||
a(paramFile);
|
||||
}
|
||||
|
||||
public n(g paramg, int paramInt) {
|
||||
public GaugePreviewPanel(g paramg, int paramInt) {
|
||||
this.b = paramInt;
|
||||
this.d.setPreferredSize(new Dimension(paramInt, paramInt));
|
||||
this.d.setMinimumSize(new Dimension(paramInt, paramInt));
|
||||
@@ -3,10 +3,10 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import d.d;
|
||||
import java.util.TimerTask;
|
||||
|
||||
class U extends TimerTask {
|
||||
class GaugeTimerTask extends TimerTask {
|
||||
private d b = null;
|
||||
|
||||
U(x paramx) {}
|
||||
GaugeTimerTask(x paramx) {}
|
||||
|
||||
public void run() {
|
||||
if (this.b != null)
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import i.a;
|
||||
import java.awt.Image;
|
||||
|
||||
class y implements a {
|
||||
y(x paramx) {}
|
||||
class ImageResizeListener implements a {
|
||||
ImageResizeListener(x paramx) {}
|
||||
|
||||
public void a(int paramInt) {
|
||||
if (this.a.k == null || !this.a.k.R()) {
|
||||
@@ -4,10 +4,10 @@ import java.awt.Component;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class P implements ActionListener {
|
||||
class IndicatorActionListener implements ActionListener {
|
||||
String a = "";
|
||||
|
||||
P(x paramx, String paramString) {
|
||||
IndicatorActionListener(x paramx, String paramString) {
|
||||
this.a = paramString;
|
||||
}
|
||||
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class h implements ActionListener {
|
||||
h(g paramg) {}
|
||||
class OtherGaugesButtonListener implements ActionListener {
|
||||
OtherGaugesButtonListener(g paramg) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
this.a.a();
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import bH.D;
|
||||
import java.awt.Image;
|
||||
|
||||
class X extends Thread {
|
||||
class PaintThrottleThread extends Thread {
|
||||
long a = 0L;
|
||||
|
||||
long b = 50L;
|
||||
@@ -14,7 +14,7 @@ class X extends Thread {
|
||||
|
||||
long e = -1L;
|
||||
|
||||
public X(x paramx) {
|
||||
public PaintThrottleThread(x paramx) {
|
||||
setName("GaugeCluster PaintThrottle");
|
||||
setDaemon(true);
|
||||
}
|
||||
@@ -4,8 +4,8 @@ import java.awt.Image;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class L implements ActionListener {
|
||||
L(x paramx) {}
|
||||
class RepaintActionHandler implements ActionListener {
|
||||
RepaintActionHandler(x paramx) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
this.a.j(paramActionEvent.getActionCommand());
|
||||
@@ -6,10 +6,10 @@ import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
import java.awt.event.MouseMotionListener;
|
||||
|
||||
class Q extends MouseAdapter implements MouseMotionListener {
|
||||
class SelectionMouseAdapter extends MouseAdapter implements MouseMotionListener {
|
||||
private Rectangle b = null;
|
||||
|
||||
Q(x paramx) {}
|
||||
SelectionMouseAdapter(x paramx) {}
|
||||
|
||||
public void mousePressed(MouseEvent paramMouseEvent) {
|
||||
if (!this.a.isEnabled())
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class K implements ActionListener {
|
||||
K(x paramx) {}
|
||||
class SimpleActionHandler implements ActionListener {
|
||||
SimpleActionHandler(x paramx) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
x.c(this.a);
|
||||
@@ -3,8 +3,8 @@ package com.efiAnalytics.apps.ts.dashboard;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class q implements ActionListener {
|
||||
q(DashTuningPanel paramDashTuningPanel) {}
|
||||
class TuningPanelActionListener implements ActionListener {
|
||||
TuningPanelActionListener(DashTuningPanel paramDashTuningPanel) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
DashTuningPanel.access$100(this.a, paramActionEvent.getActionCommand());
|
||||
@@ -4,8 +4,8 @@ import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import javax.swing.JButton;
|
||||
|
||||
class p implements ActionListener {
|
||||
p(DashTuningPanel paramDashTuningPanel) {}
|
||||
class TuningPanelButtonListener implements ActionListener {
|
||||
TuningPanelButtonListener(DashTuningPanel paramDashTuningPanel) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
JButton jButton = (JButton)paramActionEvent.getSource();
|
||||
@@ -2,12 +2,12 @@ package com.efiAnalytics.apps.ts.dashboard.renderers;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
class c implements Serializable {
|
||||
class FloatCoordinates implements Serializable {
|
||||
private float b;
|
||||
|
||||
private float c;
|
||||
|
||||
c(AsymetricSweepRenderer paramAsymetricSweepRenderer, float paramFloat1, float paramFloat2) {
|
||||
FloatCoordinates(AsymetricSweepRenderer paramAsymetricSweepRenderer, float paramFloat1, float paramFloat2) {
|
||||
this.b = paramFloat1;
|
||||
this.c = paramFloat2;
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.efiAnalytics.apps.ts.dashboard.renderers;
|
||||
|
||||
public class e {
|
||||
public class GaugePainterFactory {
|
||||
public static final String a = AnalogBarPainter.NAME;
|
||||
|
||||
public static final String b = AnalogMovingBarGaugePainter.NAME;
|
||||
@@ -5,7 +5,7 @@ import java.awt.Graphics;
|
||||
import java.awt.geom.Area;
|
||||
import java.io.Serializable;
|
||||
|
||||
public interface d extends Serializable {
|
||||
public interface GaugePainterInterface extends Serializable {
|
||||
String getName();
|
||||
|
||||
void paintGauge(Graphics paramGraphics, s params);
|
||||
@@ -10,16 +10,16 @@ import java.util.HashMap;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
public class f {
|
||||
private static f b = null;
|
||||
public class ScaledImageCache {
|
||||
private static ScaledImageCache b = null;
|
||||
|
||||
private int c = 5;
|
||||
|
||||
HashMap a = new HashMap<>();
|
||||
|
||||
public static f a() {
|
||||
public static ScaledImageCache a() {
|
||||
if (b == null)
|
||||
b = new f();
|
||||
b = new ScaledImageCache();
|
||||
return b;
|
||||
}
|
||||
|
||||
@@ -3,20 +3,20 @@ package com.efiAnalytics.apps.ts.dashboard.renderers;
|
||||
import java.awt.BasicStroke;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class g extends BasicStroke implements Serializable {
|
||||
public g(float paramFloat1, int paramInt1, int paramInt2, float paramFloat2, float[] paramArrayOffloat, float paramFloat3) {
|
||||
public class SerializableStroke extends BasicStroke implements Serializable {
|
||||
public SerializableStroke(float paramFloat1, int paramInt1, int paramInt2, float paramFloat2, float[] paramArrayOffloat, float paramFloat3) {
|
||||
super(paramFloat1, paramInt1, paramInt2, paramFloat2, paramArrayOffloat, paramFloat3);
|
||||
}
|
||||
|
||||
public g(float paramFloat, int paramInt1, int paramInt2) {
|
||||
public SerializableStroke(float paramFloat, int paramInt1, int paramInt2) {
|
||||
super(paramFloat, paramInt1, paramInt2);
|
||||
}
|
||||
|
||||
public g(float paramFloat) {
|
||||
public SerializableStroke(float paramFloat) {
|
||||
this(paramFloat, 2, 0, 10.0F, null, 0.0F);
|
||||
}
|
||||
|
||||
public g() {
|
||||
public SerializableStroke() {
|
||||
this(1.0F, 2, 0, 10.0F, null, 0.0F);
|
||||
}
|
||||
}
|
||||
@@ -12,7 +12,7 @@ import java.awt.geom.Rectangle2D;
|
||||
import java.io.Serializable;
|
||||
import java.util.HashMap;
|
||||
|
||||
class b implements Shape, Serializable {
|
||||
class SweepGaugeShape implements Shape, Serializable {
|
||||
Gauge a = null;
|
||||
|
||||
CubicCurve2D.Float b = new CubicCurve2D.Float();
|
||||
@@ -25,7 +25,7 @@ class b implements Shape, Serializable {
|
||||
|
||||
float f = 0.12F;
|
||||
|
||||
a g = new a(this.k, this);
|
||||
SweepPathIterator g = new SweepPathIterator(this.k, this);
|
||||
|
||||
final HashMap h = new HashMap<>();
|
||||
|
||||
@@ -33,7 +33,7 @@ class b implements Shape, Serializable {
|
||||
|
||||
int j = this.i;
|
||||
|
||||
b(AsymetricSweepRenderer paramAsymetricSweepRenderer, Gauge paramGauge) {
|
||||
SweepGaugeShape(AsymetricSweepRenderer paramAsymetricSweepRenderer, Gauge paramGauge) {
|
||||
this.a = paramGauge;
|
||||
}
|
||||
|
||||
@@ -4,14 +4,14 @@ import java.awt.geom.AffineTransform;
|
||||
import java.awt.geom.PathIterator;
|
||||
import java.io.Serializable;
|
||||
|
||||
class a implements PathIterator, Serializable {
|
||||
b a;
|
||||
class SweepPathIterator implements PathIterator, Serializable {
|
||||
SweepGaugeShape a;
|
||||
|
||||
private AffineTransform d = null;
|
||||
|
||||
int b = -1;
|
||||
|
||||
a(AsymetricSweepRenderer paramAsymetricSweepRenderer, b paramb) {
|
||||
SweepPathIterator(AsymetricSweepRenderer paramAsymetricSweepRenderer, SweepGaugeShape paramb) {
|
||||
this.a = paramb;
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class S implements ActionListener {
|
||||
class ActionCommandListener implements ActionListener {
|
||||
S(J paramJ) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -4,7 +4,7 @@ import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import javax.swing.JCheckBoxMenuItem;
|
||||
|
||||
class N implements ActionListener {
|
||||
class CheckboxStateListener implements ActionListener {
|
||||
N(J paramJ) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -9,7 +9,7 @@ import java.awt.event.MouseMotionListener;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
class T extends MouseAdapter implements MouseMotionListener {
|
||||
class ComponentDragListener extends MouseAdapter implements MouseMotionListener {
|
||||
List a = new ArrayList();
|
||||
|
||||
List b = new ArrayList();
|
||||
@@ -4,7 +4,7 @@ import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import javax.swing.JCheckBoxMenuItem;
|
||||
|
||||
class L implements ActionListener {
|
||||
class CrosshairToggleListener implements ActionListener {
|
||||
L(J paramJ) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class r implements ActionListener {
|
||||
class DeleteTabListener implements ActionListener {
|
||||
r(n paramn, int paramInt) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class i implements ActionListener {
|
||||
class EcuConfigActionListener implements ActionListener {
|
||||
i(TuneViewComponent paramTuneViewComponent) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -4,7 +4,7 @@ import G.R;
|
||||
import G.T;
|
||||
import c.d;
|
||||
|
||||
class w implements d {
|
||||
class EcuConfigDelegate implements d {
|
||||
J a;
|
||||
|
||||
boolean b = true;
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class j implements ActionListener {
|
||||
class EcuConfigSelectionListener implements ActionListener {
|
||||
j(TuneViewComponent paramTuneViewComponent) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class M implements ActionListener {
|
||||
class EditActionListener implements ActionListener {
|
||||
M(J paramJ) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -2,7 +2,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
|
||||
import com.efiAnalytics.apps.ts.dashboard.u;
|
||||
|
||||
class K implements u {
|
||||
class EditModeHandler implements u {
|
||||
K(J paramJ) {}
|
||||
|
||||
public boolean a() {
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.efiAnalytics.apps.ts.tuningViews;
|
||||
|
||||
class q implements Runnable {
|
||||
class EditModeRunnable implements Runnable {
|
||||
q(n paramn, J paramJ) {}
|
||||
|
||||
public void run() {
|
||||
@@ -9,7 +9,7 @@ import r.a;
|
||||
import r.j;
|
||||
import s.g;
|
||||
|
||||
class f implements ActionListener {
|
||||
class FileSelectActionListener implements ActionListener {
|
||||
f(b paramb) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -6,7 +6,7 @@ import java.awt.Point;
|
||||
import java.awt.event.MouseEvent;
|
||||
import javax.swing.JComponent;
|
||||
|
||||
public class g extends JComponent {
|
||||
public class MouseEventShield extends JComponent {
|
||||
TuneViewComponent a;
|
||||
|
||||
public g(TuneViewComponent paramTuneViewComponent) {
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class t implements ActionListener {
|
||||
class MoveTabLeftListener implements ActionListener {
|
||||
t(n paramn, int paramInt) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class u implements ActionListener {
|
||||
class MoveTabRightListener implements ActionListener {
|
||||
u(n paramn, int paramInt) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.awt.event.ItemEvent;
|
||||
import java.awt.event.ItemListener;
|
||||
|
||||
class d implements ItemListener {
|
||||
class OtherCheckboxListener implements ItemListener {
|
||||
d(b paramb) {}
|
||||
|
||||
public void itemStateChanged(ItemEvent paramItemEvent) {
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.efiAnalytics.apps.ts.tuningViews;
|
||||
|
||||
class P implements Runnable {
|
||||
class PanelUpdateRunnable implements Runnable {
|
||||
P(J paramJ) {}
|
||||
|
||||
public void run() {
|
||||
@@ -5,7 +5,7 @@ import java.awt.Image;
|
||||
import javax.swing.JComponent;
|
||||
import javax.swing.UIManager;
|
||||
|
||||
class e extends JComponent {
|
||||
class PreviewImageComponent extends JComponent {
|
||||
private Image b = null;
|
||||
|
||||
e(b paramb) {}
|
||||
@@ -7,7 +7,7 @@ import java.awt.Dimension;
|
||||
import java.awt.Insets;
|
||||
import java.awt.LayoutManager2;
|
||||
|
||||
public class l implements LayoutManager2 {
|
||||
public class RelativeLayoutManager implements LayoutManager2 {
|
||||
public void layoutContainer(Container paramContainer) {
|
||||
Component[] arrayOfComponent = paramContainer.getComponents();
|
||||
Insets insets = paramContainer.getInsets();
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
|
||||
class s implements ActionListener {
|
||||
class ReloadTabListener implements ActionListener {
|
||||
s(n paramn, int paramInt) {}
|
||||
|
||||
public void actionPerformed(ActionEvent paramActionEvent) {
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.efiAnalytics.apps.ts.tuningViews;
|
||||
|
||||
public interface m {
|
||||
public interface RenameCallback {
|
||||
boolean a(String paramString1, String paramString2);
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
class X extends Thread {
|
||||
class RepaintThread extends Thread {
|
||||
boolean a = true;
|
||||
|
||||
X(J paramJ) {}
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import javax.swing.event.ChangeEvent;
|
||||
import javax.swing.event.ChangeListener;
|
||||
|
||||
class o implements ChangeListener {
|
||||
class TabChangeListener implements ChangeListener {
|
||||
o(n paramn) {}
|
||||
|
||||
public void stateChanged(ChangeEvent paramChangeEvent) {
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
|
||||
class x extends MouseAdapter {
|
||||
class TabPopupMouseAdapter extends MouseAdapter {
|
||||
x(n paramn) {}
|
||||
|
||||
public void mouseClicked(MouseEvent paramMouseEvent) {}
|
||||
@@ -2,7 +2,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
|
||||
import bH.D;
|
||||
|
||||
class B implements m {
|
||||
class TabRenameHandler implements m {
|
||||
J a;
|
||||
|
||||
String b;
|
||||
@@ -6,7 +6,7 @@ import java.awt.Dimension;
|
||||
import java.awt.Insets;
|
||||
import java.awt.LayoutManager2;
|
||||
|
||||
public class h implements LayoutManager2 {
|
||||
public class TuneViewComponentLayout implements LayoutManager2 {
|
||||
TuneViewComponent a;
|
||||
|
||||
g b;
|
||||
@@ -6,7 +6,7 @@ import java.util.List;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
class v implements Runnable {
|
||||
class TuneViewFileRunnable implements Runnable {
|
||||
k a;
|
||||
|
||||
List b;
|
||||
@@ -3,7 +3,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
import java.io.File;
|
||||
import java.io.FilenameFilter;
|
||||
|
||||
class I implements FilenameFilter {
|
||||
class TuneViewPrefixFilter implements FilenameFilter {
|
||||
public boolean accept(File paramFile, String paramString) {
|
||||
return paramString.startsWith(k.a);
|
||||
}
|
||||
@@ -8,7 +8,7 @@ import java.awt.event.ItemListener;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
class c implements ItemListener {
|
||||
class TuningViewComboListener implements ItemListener {
|
||||
c(b paramb) {}
|
||||
|
||||
public void itemStateChanged(ItemEvent paramItemEvent) {
|
||||
@@ -24,7 +24,7 @@ import r.j;
|
||||
import s.g;
|
||||
import v.g;
|
||||
|
||||
public class z implements e, a {
|
||||
public class TuningViewController implements e, a {
|
||||
n a;
|
||||
|
||||
a b = null;
|
||||
@@ -8,7 +8,7 @@ import java.util.ArrayList;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
public class F extends ArrayList {
|
||||
public class TuningViewData extends ArrayList {
|
||||
private String a = "";
|
||||
|
||||
private String b = "Tuning View";
|
||||
@@ -16,7 +16,7 @@ import r.j;
|
||||
import s.g;
|
||||
import v.g;
|
||||
|
||||
public class k {
|
||||
public class TuningViewFile {
|
||||
public static String a = "TuneView_";
|
||||
|
||||
File b = null;
|
||||
@@ -4,7 +4,7 @@ import java.io.File;
|
||||
import java.io.FilenameFilter;
|
||||
import r.a;
|
||||
|
||||
class H implements FilenameFilter {
|
||||
class TuningViewFileFilter implements FilenameFilter {
|
||||
public boolean accept(File paramFile, String paramString) {
|
||||
return paramString.toLowerCase().endsWith(a.cp.toLowerCase());
|
||||
}
|
||||
@@ -7,7 +7,7 @@ import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
import s.g;
|
||||
|
||||
class y extends Thread {
|
||||
class TuningViewFileLoadThread extends Thread {
|
||||
k a;
|
||||
|
||||
J b;
|
||||
@@ -15,7 +15,7 @@ import r.j;
|
||||
import r.o;
|
||||
import r.p;
|
||||
|
||||
public class G {
|
||||
public class TuningViewFileLoader {
|
||||
public static List a(List<R> paramList) {
|
||||
ArrayList arrayList = new ArrayList();
|
||||
for (R r : paramList)
|
||||
@@ -4,7 +4,7 @@ import java.awt.Component;
|
||||
import java.awt.KeyEventDispatcher;
|
||||
import java.awt.event.KeyEvent;
|
||||
|
||||
public class R implements KeyEventDispatcher {
|
||||
public class TuningViewKeyDispatcher implements KeyEventDispatcher {
|
||||
J a = null;
|
||||
|
||||
R(J paramJ1, J paramJ2) {
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.efiAnalytics.apps.ts.tuningViews;
|
||||
|
||||
class E implements Runnable {
|
||||
class TuningViewLayoutRunnable implements Runnable {
|
||||
E(D paramD) {}
|
||||
|
||||
public void run() {
|
||||
@@ -13,7 +13,7 @@ import r.j;
|
||||
import s.g;
|
||||
import v.g;
|
||||
|
||||
class C implements a {
|
||||
class TuningViewLoadAction implements a {
|
||||
private b c = null;
|
||||
|
||||
private String[] d = null;
|
||||
@@ -2,7 +2,7 @@ package com.efiAnalytics.apps.ts.tuningViews;
|
||||
|
||||
import javax.swing.SwingUtilities;
|
||||
|
||||
class D implements Runnable {
|
||||
class TuningViewLoadRunnable implements Runnable {
|
||||
D(C paramC) {}
|
||||
|
||||
public void run() {
|
||||
@@ -6,7 +6,7 @@ import java.awt.Component;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
class O extends Thread {
|
||||
class TuningViewLoadThread extends Thread {
|
||||
O(J paramJ, ArrayList paramArrayList, b paramb, Component paramComponent) {}
|
||||
|
||||
public void run() {
|
||||
@@ -7,7 +7,7 @@ import com.efiAnalytics.ui.bV;
|
||||
import javax.swing.SwingUtilities;
|
||||
import v.g;
|
||||
|
||||
class V implements a {
|
||||
class TuningViewLoader implements a {
|
||||
private b b = null;
|
||||
|
||||
private String[] c = null;
|
||||
@@ -7,7 +7,7 @@ import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
import javax.swing.SwingUtilities;
|
||||
|
||||
class p extends Thread {
|
||||
class TuningViewLoaderAsync extends Thread {
|
||||
p(n paramn, List paramList) {}
|
||||
|
||||
public void run() {
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.efiAnalytics.apps.ts.tuningViews;
|
||||
|
||||
class W implements Runnable {
|
||||
class TuningViewLoaderRunnable implements Runnable {
|
||||
W(V paramV) {}
|
||||
|
||||
public void run() {
|
||||
@@ -6,7 +6,7 @@ import java.awt.Component;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
class A extends Thread {
|
||||
class TuningViewLoaderThread extends Thread {
|
||||
A(z paramz, ArrayList paramArrayList, b paramb) {}
|
||||
|
||||
public void run() {
|
||||
@@ -6,7 +6,7 @@ import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
import java.awt.event.MouseMotionListener;
|
||||
|
||||
class Q extends MouseAdapter implements MouseMotionListener {
|
||||
class TuningViewMouseAdapter extends MouseAdapter implements MouseMotionListener {
|
||||
private Rectangle b = null;
|
||||
|
||||
Q(J paramJ) {}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user