mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-25 22:25:34 +00:00
stuff
This commit is contained in:
56
app/P/PInterfaceAlpha.java
Normal file
56
app/P/PInterfaceAlpha.java
Normal file
@@ -0,0 +1,56 @@
|
||||
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
|
||||
*/
|
||||
Reference in New Issue
Block a user