mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-25 14:15:20 +00:00
40 lines
707 B
Java
40 lines
707 B
Java
package G;
|
|
|
|
public class GComponentCi {
|
|
private String a;
|
|
|
|
private String b;
|
|
|
|
private String c;
|
|
|
|
private double d;
|
|
|
|
public GComponentCi(String paramString1, String paramString2, String paramString3, double paramDouble) {
|
|
this.a = paramString1;
|
|
this.b = paramString2;
|
|
this.c = paramString3;
|
|
this.d = paramDouble;
|
|
}
|
|
|
|
public String a() {
|
|
return this.a;
|
|
}
|
|
|
|
public String b() {
|
|
return this.c;
|
|
}
|
|
|
|
public double c() {
|
|
return this.d;
|
|
}
|
|
|
|
public String d() {
|
|
return this.b;
|
|
}
|
|
}
|
|
|
|
|
|
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/G/ci.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |