mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-25 14:15:20 +00:00
36 lines
619 B
Java
36 lines
619 B
Java
package G;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class GComponentCk implements Serializable {
|
|
private int a;
|
|
|
|
private int b;
|
|
|
|
public GComponentCk(int paramInt1, int paramInt2) {
|
|
this.a = paramInt1;
|
|
this.b = paramInt2;
|
|
}
|
|
|
|
public int a() {
|
|
return this.a;
|
|
}
|
|
|
|
public int b() {
|
|
return this.b;
|
|
}
|
|
|
|
public void a(int paramInt) {
|
|
this.a = paramInt;
|
|
}
|
|
|
|
public void b(int paramInt) {
|
|
this.b = paramInt;
|
|
}
|
|
}
|
|
|
|
|
|
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/G/ck.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |