93 lines
2.9 KiB
Java
93 lines
2.9 KiB
Java
/*
|
|
* 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);
|
|
}
|
|
}
|
|
|