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,74 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* javax.baja.sys.BFrozenEnum
* javax.baja.sys.Sys
* javax.baja.sys.Type
*/
package com.tridium.platform.ewf;
import javax.baja.sys.BFrozenEnum;
import javax.baja.sys.Sys;
import javax.baja.sys.Type;
/*
* Illegal identifiers - consider using --renameillegalidents true
*/
public final class BEwfBootCommand
extends BFrozenEnum {
public static final int NO_CMD = 0;
public static final int ENABLE = 1;
public static final int DISABLE = 2;
public static final int SET_LEVEL = 3;
public static final int COMMIT = 4;
public static final int UNKNOWN = 5;
public static final BEwfBootCommand noCmd = new BEwfBootCommand(0);
public static final BEwfBootCommand enable = new BEwfBootCommand(1);
public static final BEwfBootCommand disable = new BEwfBootCommand(2);
public static final BEwfBootCommand setLevel = new BEwfBootCommand(3);
public static final BEwfBootCommand commit = new BEwfBootCommand(4);
public static final BEwfBootCommand unknown = new BEwfBootCommand(5);
public static final Type TYPE;
public static final BEwfBootCommand DEFAULT;
static /* synthetic */ Class class$com$tridium$platform$ewf$BEwfBootCommand;
public final Type getType() {
return TYPE;
}
public static final BEwfBootCommand make(int n) {
return (BEwfBootCommand)noCmd.getRange().get(n, false);
}
public static final BEwfBootCommand make(String string) {
return (BEwfBootCommand)noCmd.getRange().get(string);
}
static /* synthetic */ Class class(String string, boolean bl) {
try {
Class<?> clazz = Class.forName(string);
if (!bl) {
clazz = clazz.getComponentType();
}
return clazz;
}
catch (ClassNotFoundException classNotFoundException) {
throw new NoClassDefFoundError(classNotFoundException.getMessage());
}
}
private BEwfBootCommand(int n) {
super(n);
}
static {
Class clazz = class$com$tridium$platform$ewf$BEwfBootCommand;
if (clazz == null) {
clazz = class$com$tridium$platform$ewf$BEwfBootCommand = BEwfBootCommand.class("[Lcom.tridium.platform.ewf.BEwfBootCommand;", false);
}
TYPE = Sys.loadType((Class)clazz);
DEFAULT = noCmd;
}
}
@@ -0,0 +1,68 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* javax.baja.sys.BFrozenEnum
* javax.baja.sys.Sys
* javax.baja.sys.Type
*/
package com.tridium.platform.ewf;
import javax.baja.sys.BFrozenEnum;
import javax.baja.sys.Sys;
import javax.baja.sys.Type;
/*
* Illegal identifiers - consider using --renameillegalidents true
*/
public final class BEwfEnableState
extends BFrozenEnum {
public static final int ENABLED = 0;
public static final int DISABLED = 1;
public static final int UNKNOWN = 2;
public static final BEwfEnableState enabled = new BEwfEnableState(0);
public static final BEwfEnableState disabled = new BEwfEnableState(1);
public static final BEwfEnableState unknown = new BEwfEnableState(2);
public static final Type TYPE;
public static final BEwfEnableState DEFAULT;
static /* synthetic */ Class class$com$tridium$platform$ewf$BEwfEnableState;
public final Type getType() {
return TYPE;
}
public static final BEwfEnableState make(int n) {
return (BEwfEnableState)enabled.getRange().get(n, false);
}
public static final BEwfEnableState make(String string) {
return (BEwfEnableState)enabled.getRange().get(string);
}
static /* synthetic */ Class class(String string, boolean bl) {
try {
Class<?> clazz = Class.forName(string);
if (!bl) {
clazz = clazz.getComponentType();
}
return clazz;
}
catch (ClassNotFoundException classNotFoundException) {
throw new NoClassDefFoundError(classNotFoundException.getMessage());
}
}
private BEwfEnableState(int n) {
super(n);
}
static {
Class clazz = class$com$tridium$platform$ewf$BEwfEnableState;
if (clazz == null) {
clazz = class$com$tridium$platform$ewf$BEwfEnableState = BEwfEnableState.class("[Lcom.tridium.platform.ewf.BEwfEnableState;", false);
}
TYPE = Sys.loadType((Class)clazz);
DEFAULT = enabled;
}
}
@@ -0,0 +1,92 @@
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* javax.baja.sys.BComponent
* javax.baja.sys.BFacets
* javax.baja.sys.BValue
* javax.baja.sys.Property
* javax.baja.sys.Sys
* javax.baja.sys.Type
*/
package com.tridium.platform.ewf;
import com.tridium.platform.ewf.BEwfBootCommand;
import com.tridium.platform.ewf.BEwfEnableState;
import javax.baja.sys.BComponent;
import javax.baja.sys.BFacets;
import javax.baja.sys.BValue;
import javax.baja.sys.Property;
import javax.baja.sys.Sys;
import javax.baja.sys.Type;
/*
* Illegal identifiers - consider using --renameillegalidents true
*/
public class BEwfOverlayAttributes
extends BComponent {
public static final Property enableState = BEwfOverlayAttributes.newProperty((int)3, (BValue)BEwfEnableState.unknown, null);
public static final Property bootCommand = BEwfOverlayAttributes.newProperty((int)3, (BValue)BEwfBootCommand.unknown, null);
public static final Property ramUsage = BEwfOverlayAttributes.newProperty((int)3, (double)0.0, (BFacets)BFacets.makeNumeric((int)3));
public static final Type TYPE;
static /* synthetic */ Class class$com$tridium$platform$ewf$BEwfOverlayAttributes;
public BEwfEnableState getEnableState() {
return (BEwfEnableState)this.get(enableState);
}
public void setEnableState(BEwfEnableState bEwfEnableState) {
this.set(enableState, (BValue)bEwfEnableState, null);
}
public BEwfBootCommand getBootCommand() {
return (BEwfBootCommand)this.get(bootCommand);
}
public void setBootCommand(BEwfBootCommand bEwfBootCommand) {
this.set(bootCommand, (BValue)bEwfBootCommand, null);
}
public double getRamUsage() {
return this.getDouble(ramUsage);
}
public void setRamUsage(double d) {
this.setDouble(ramUsage, d, null);
}
public Type getType() {
return TYPE;
}
static /* synthetic */ Class class(String string, boolean bl) {
try {
Class<?> clazz = Class.forName(string);
if (!bl) {
clazz = clazz.getComponentType();
}
return clazz;
}
catch (ClassNotFoundException classNotFoundException) {
throw new NoClassDefFoundError(classNotFoundException.getMessage());
}
}
public BEwfOverlayAttributes() {
}
public BEwfOverlayAttributes(BEwfEnableState bEwfEnableState, BEwfBootCommand bEwfBootCommand, double d) {
this.setEnableState(bEwfEnableState);
this.setBootCommand(bEwfBootCommand);
this.setRamUsage(d);
}
static {
Class clazz = class$com$tridium$platform$ewf$BEwfOverlayAttributes;
if (clazz == null) {
clazz = class$com$tridium$platform$ewf$BEwfOverlayAttributes = BEwfOverlayAttributes.class("[Lcom.tridium.platform.ewf.BEwfOverlayAttributes;", false);
}
TYPE = Sys.loadType((Class)clazz);
}
}