mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-25 06:04:59 +00:00
31 lines
544 B
Java
31 lines
544 B
Java
package bH;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class E implements Serializable {
|
|
private double a = 0.0D;
|
|
|
|
private double b = 0.0D;
|
|
|
|
public double a() {
|
|
return this.a;
|
|
}
|
|
|
|
public void a(double paramDouble) {
|
|
this.a = paramDouble;
|
|
}
|
|
|
|
public double b() {
|
|
return this.b;
|
|
}
|
|
|
|
public void b(double paramDouble) {
|
|
this.b = paramDouble;
|
|
}
|
|
}
|
|
|
|
|
|
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/bH/E.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |