mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-25 14:15:20 +00:00
33 lines
539 B
Java
33 lines
539 B
Java
package ax;
|
|
|
|
class AxInterfaceGolf {
|
|
private String a = null;
|
|
|
|
private boolean b = false;
|
|
|
|
public AxInterfaceGolf(String paramString) {
|
|
this.a = paramString;
|
|
}
|
|
|
|
public void a() {
|
|
this.b = true;
|
|
}
|
|
|
|
public boolean b() {
|
|
return this.b;
|
|
}
|
|
|
|
public String c() {
|
|
return this.a;
|
|
}
|
|
|
|
public String toString() {
|
|
return this.a;
|
|
}
|
|
}
|
|
|
|
|
|
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/ax/G.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |