link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -0,0 +1,103 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* javax.baja.hx.HxOp
* javax.baja.naming.OrdTarget
* javax.baja.nre.util.Array
*/
package com.tridium.alarm.hx;
import javax.baja.hx.HxOp;
import javax.baja.naming.OrdTarget;
import javax.baja.nre.util.Array;
/*
* Illegal identifiers - consider using --renameillegalidents true
*/
public class AlarmConsoleOp
extends HxOp {
private Array args;
public String getCmd() {
return this.args.size() > 0 ? (String)this.args.get(0) : "";
}
public String getId() {
return this.args.size() > 1 ? (String)this.args.get(1) : "";
}
public String getSortCol() {
return this.args.size() > 2 ? (String)this.args.get(2) : "";
}
/*
* Unable to fully structure code
*/
public void setSortCol(String var1_1) {
block1: {
if (this.args.size() <= 2) ** GOTO lbl7
this.args.set(2, (Object)var1_1);
break block1;
lbl-1000:
// 1 sources
{
this.args.add((Object)"");
lbl7:
// 2 sources
** while (this.args.size() < 2)
}
lbl8:
// 1 sources
this.args.add((Object)var1_1);
}
}
public String getSortOrder() {
return this.args.size() > 3 ? (String)this.args.get(3) : "";
}
/*
* Unable to fully structure code
*/
public void setSortOrder(String var1_1) {
block1: {
if (this.args.size() <= 3) ** GOTO lbl7
this.args.set(3, (Object)var1_1);
break block1;
lbl-1000:
// 1 sources
{
this.args.add((Object)"");
lbl7:
// 2 sources
** while (this.args.size() < 3)
}
lbl8:
// 1 sources
this.args.add((Object)var1_1);
}
}
private final /* synthetic */ void this() {
this.args = new Array();
}
public AlarmConsoleOp(HxOp hxOp) {
super(hxOp.getUniqueName(), (OrdTarget)hxOp, hxOp);
this.this();
}
public AlarmConsoleOp(HxOp hxOp, String[] stringArray) {
super(hxOp.getUniqueName(), (OrdTarget)hxOp, hxOp);
this.this();
this.args = new Array((Object[])stringArray);
}
}
File diff suppressed because it is too large Load Diff