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

97 lines
2.1 KiB
Java

/*
* Decompiled with CFR 0.152.
*/
package com.tridium.sys;
import com.tridium.sys.BIPlatform;
import com.tridium.sys.resource.ResourceReport;
import javax.baja.sys.BObject;
import javax.baja.sys.Sys;
import javax.baja.sys.Type;
/*
* Illegal identifiers - consider using --renameillegalidents true
*/
public class BNullPlatform
extends BObject
implements BIPlatform {
public static final Type TYPE;
static /* synthetic */ Class class$com$tridium$sys$BNullPlatform;
public Type getType() {
return TYPE;
}
public void poll() {
}
public boolean isFlashFileSystem() {
return false;
}
public int getCpuUsage() {
return 0;
}
public int getTotalMemory() {
return 0;
}
public int getMemoryUsage() {
return 0;
}
public void initPlatform() {
}
public void stationStarted() {
}
public boolean isStationAutoSaveEnabled() {
return true;
}
public long getStationAutoSaveFrequency() {
return 3600000L;
}
public int getStationSaveBackupCount() {
return 3;
}
public void resetLocalDaemonSession() {
}
public String checkForStationFault() {
return null;
}
public void queryResources(ResourceReport resourceReport) {
}
public void reportSummaryFields(String[] stringArray, String[] stringArray2) {
}
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$com$tridium$sys$BNullPlatform;
if (clazz == null) {
clazz = class$com$tridium$sys$BNullPlatform = BNullPlatform.class("[Lcom.tridium.sys.BNullPlatform;", false);
}
TYPE = Sys.loadType(clazz);
}
}