77 lines
2.1 KiB
Java
77 lines
2.1 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* javax.baja.sys.BStruct
|
|
* javax.baja.sys.Property
|
|
* javax.baja.sys.Sys
|
|
* javax.baja.sys.Type
|
|
*/
|
|
package javax.baja.alarm.ext;
|
|
|
|
import javax.baja.sys.BStruct;
|
|
import javax.baja.sys.Property;
|
|
import javax.baja.sys.Sys;
|
|
import javax.baja.sys.Type;
|
|
|
|
/*
|
|
* Illegal identifiers - consider using --renameillegalidents true
|
|
*/
|
|
public class BLimitEnable
|
|
extends BStruct {
|
|
public static final Property lowLimitEnable = BLimitEnable.newProperty((int)0, (boolean)false, null);
|
|
public static final Property highLimitEnable = BLimitEnable.newProperty((int)0, (boolean)false, null);
|
|
public static final Type TYPE;
|
|
static /* synthetic */ Class class$javax$baja$alarm$ext$BLimitEnable;
|
|
|
|
public boolean getLowLimitEnable() {
|
|
return this.getBoolean(lowLimitEnable);
|
|
}
|
|
|
|
public void setLowLimitEnable(boolean bl) {
|
|
this.setBoolean(lowLimitEnable, bl, null);
|
|
}
|
|
|
|
public boolean getHighLimitEnable() {
|
|
return this.getBoolean(highLimitEnable);
|
|
}
|
|
|
|
public void setHighLimitEnable(boolean bl) {
|
|
this.setBoolean(highLimitEnable, bl, null);
|
|
}
|
|
|
|
public Type getType() {
|
|
return TYPE;
|
|
}
|
|
|
|
public boolean isHighLimitEnabled() {
|
|
return this.getHighLimitEnable();
|
|
}
|
|
|
|
public boolean isLowLimitEnabled() {
|
|
return this.getLowLimitEnable();
|
|
}
|
|
|
|
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());
|
|
}
|
|
}
|
|
|
|
static {
|
|
Class clazz = class$javax$baja$alarm$ext$BLimitEnable;
|
|
if (clazz == null) {
|
|
clazz = class$javax$baja$alarm$ext$BLimitEnable = BLimitEnable.class("[Ljavax.baja.alarm.ext.BLimitEnable;", false);
|
|
}
|
|
TYPE = Sys.loadType((Class)clazz);
|
|
}
|
|
}
|
|
|