mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-25 14:15:20 +00:00
56 lines
1.1 KiB
Java
56 lines
1.1 KiB
Java
package P;
|
|
|
|
import G.GInterfaceBl;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class PInterfaceAlpha extends GInterfaceBl {
|
|
private String b = null;
|
|
|
|
private String c = "rising";
|
|
|
|
private String d = null;
|
|
|
|
private String e = null;
|
|
|
|
public String b() {
|
|
return this.b;
|
|
}
|
|
|
|
public void b(String paramString) {
|
|
this.b = paramString;
|
|
}
|
|
|
|
public String c() {
|
|
return this.d;
|
|
}
|
|
|
|
public void c(String paramString) {
|
|
this.d = paramString;
|
|
}
|
|
|
|
public String d() {
|
|
return this.e;
|
|
}
|
|
|
|
public void d(String paramString) {
|
|
this.e = paramString;
|
|
}
|
|
|
|
public List a() {
|
|
ArrayList<String> arrayList = new ArrayList();
|
|
if (this.b != null && !this.b.isEmpty())
|
|
arrayList.add(this.b);
|
|
if (this.d != null && !this.d.isEmpty())
|
|
arrayList.add(this.d);
|
|
if (this.e != null && !this.e.isEmpty())
|
|
arrayList.add(this.e);
|
|
return arrayList;
|
|
}
|
|
}
|
|
|
|
|
|
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/P/a.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |