mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 09:05:52 +07:00
GitOrigin-RevId: 725a3ef71071db161da156688989bbcfbc0a4802
24 lines
391 B
Java
24 lines
391 B
Java
public class ao implements Comparable<ao> {
|
|
protected String a;
|
|
protected Thread.State b;
|
|
protected double c;
|
|
protected long d;
|
|
protected long e;
|
|
|
|
public String a() {
|
|
return this.a;
|
|
}
|
|
|
|
public Thread.State b() {
|
|
return this.b;
|
|
}
|
|
|
|
public double c() {
|
|
return this.c;
|
|
}
|
|
|
|
public int a(ao param1) {
|
|
// $FF: Couldn't be decompiled
|
|
}
|
|
}
|