niagara-ax/modules/cfr_output/javax/baja/util/BServiceContainer.java
2026-03-17 13:31:18 -07:00

63 lines
1.5 KiB
Java

/*
* Decompiled with CFR 0.152.
*/
package javax.baja.util;
import javax.baja.sys.BComponent;
import javax.baja.sys.BIService;
import javax.baja.sys.BIcon;
import javax.baja.sys.Sys;
import javax.baja.sys.Type;
/*
* Illegal identifiers - consider using --renameillegalidents true
*/
public class BServiceContainer
extends BComponent
implements BIService {
public static final Type TYPE;
private static final BIcon icon;
static /* synthetic */ Class class$javax$baja$util$BServiceContainer;
public Type[] getServiceTypes() {
return new Type[]{TYPE};
}
public void serviceStarted() throws Exception {
}
public void serviceStopped() throws Exception {
}
public Type getType() {
return TYPE;
}
public BIcon getIcon() {
return icon;
}
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$util$BServiceContainer;
if (clazz == null) {
clazz = class$javax$baja$util$BServiceContainer = BServiceContainer.class("[Ljavax.baja.util.BServiceContainer;", false);
}
TYPE = Sys.loadType(clazz);
icon = BIcon.std("gears.png");
}
}