91 lines
2.6 KiB
Java
91 lines
2.6 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* javax.baja.sys.BAbsTime
|
|
* javax.baja.sys.BStruct
|
|
* javax.baja.sys.BValue
|
|
* javax.baja.sys.Property
|
|
* javax.baja.sys.Sys
|
|
* javax.baja.sys.Type
|
|
*/
|
|
package javax.baja.alarm.ext;
|
|
|
|
import javax.baja.sys.BAbsTime;
|
|
import javax.baja.sys.BStruct;
|
|
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 BAlarmTimestamps
|
|
extends BStruct {
|
|
public static final Property alarmTime = BAlarmTimestamps.newProperty((int)65, (BValue)BAbsTime.NULL, null);
|
|
public static final Property ackTime = BAlarmTimestamps.newProperty((int)65, (BValue)BAbsTime.NULL, null);
|
|
public static final Property normalTime = BAlarmTimestamps.newProperty((int)65, (BValue)BAbsTime.NULL, null);
|
|
public static final Property count = BAlarmTimestamps.newProperty((int)65, (int)0, null);
|
|
public static final Type TYPE;
|
|
static /* synthetic */ Class class$javax$baja$alarm$ext$BAlarmTimestamps;
|
|
|
|
public BAbsTime getAlarmTime() {
|
|
return (BAbsTime)this.get(alarmTime);
|
|
}
|
|
|
|
public void setAlarmTime(BAbsTime bAbsTime) {
|
|
this.set(alarmTime, (BValue)bAbsTime, null);
|
|
}
|
|
|
|
public BAbsTime getAckTime() {
|
|
return (BAbsTime)this.get(ackTime);
|
|
}
|
|
|
|
public void setAckTime(BAbsTime bAbsTime) {
|
|
this.set(ackTime, (BValue)bAbsTime, null);
|
|
}
|
|
|
|
public BAbsTime getNormalTime() {
|
|
return (BAbsTime)this.get(normalTime);
|
|
}
|
|
|
|
public void setNormalTime(BAbsTime bAbsTime) {
|
|
this.set(normalTime, (BValue)bAbsTime, null);
|
|
}
|
|
|
|
public int getCount() {
|
|
return this.getInt(count);
|
|
}
|
|
|
|
public void setCount(int n) {
|
|
this.setInt(count, n, 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());
|
|
}
|
|
}
|
|
|
|
static {
|
|
Class clazz = class$javax$baja$alarm$ext$BAlarmTimestamps;
|
|
if (clazz == null) {
|
|
clazz = class$javax$baja$alarm$ext$BAlarmTimestamps = BAlarmTimestamps.class("[Ljavax.baja.alarm.ext.BAlarmTimestamps;", false);
|
|
}
|
|
TYPE = Sys.loadType((Class)clazz);
|
|
}
|
|
}
|
|
|