2026-03-17 13:31:18 -07:00

67 lines
1.7 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* javax.baja.sys.BComponent
* javax.baja.sys.Property
* javax.baja.sys.Sys
* javax.baja.sys.Type
*/
package com.tridium.program;
import javax.baja.sys.BComponent;
import javax.baja.sys.Property;
import javax.baja.sys.Sys;
import javax.baja.sys.Type;
/*
* Illegal identifiers - consider using --renameillegalidents true
*/
public class BRobotResult
extends BComponent {
public static final Property log = BRobotResult.newProperty((int)0, (String)"", null);
public static final Type TYPE;
static /* synthetic */ Class class$com$tridium$program$BRobotResult;
public String getLog() {
return this.getString(log);
}
public void setLog(String string) {
this.setString(log, string, 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 BRobotResult(String string) {
this.setLog(string);
}
public BRobotResult() {
}
static {
Class clazz = class$com$tridium$program$BRobotResult;
if (clazz == null) {
clazz = class$com$tridium$program$BRobotResult = BRobotResult.class("[Lcom.tridium.program.BRobotResult;", false);
}
TYPE = Sys.loadType((Class)clazz);
}
}