61 lines
1.8 KiB
Java
61 lines
1.8 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* javax.baja.sys.Sys
|
|
* javax.baja.sys.Type
|
|
* javax.baja.ui.BWidget
|
|
* javax.baja.ui.CommandArtifact
|
|
* javax.baja.workbench.BWbShell
|
|
* javax.baja.workbench.tool.BWbTool
|
|
*/
|
|
package com.tridium.platcrypto.ui;
|
|
|
|
import com.tridium.platcrypto.ui.BCertificateSignerDialog;
|
|
import javax.baja.sys.Sys;
|
|
import javax.baja.sys.Type;
|
|
import javax.baja.ui.BWidget;
|
|
import javax.baja.ui.CommandArtifact;
|
|
import javax.baja.workbench.BWbShell;
|
|
import javax.baja.workbench.tool.BWbTool;
|
|
|
|
/*
|
|
* Illegal identifiers - consider using --renameillegalidents true
|
|
*/
|
|
public class BCertificateSignerTool
|
|
extends BWbTool {
|
|
public static final Type TYPE;
|
|
static /* synthetic */ Class class$com$tridium$platcrypto$ui$BCertificateSignerTool;
|
|
|
|
public Type getType() {
|
|
return TYPE;
|
|
}
|
|
|
|
public CommandArtifact invoke(BWbShell bWbShell) throws Exception {
|
|
BCertificateSignerDialog.show((BWidget)bWbShell);
|
|
return null;
|
|
}
|
|
|
|
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$platcrypto$ui$BCertificateSignerTool;
|
|
if (clazz == null) {
|
|
clazz = class$com$tridium$platcrypto$ui$BCertificateSignerTool = BCertificateSignerTool.class("[Lcom.tridium.platcrypto.ui.BCertificateSignerTool;", false);
|
|
}
|
|
TYPE = Sys.loadType((Class)clazz);
|
|
}
|
|
}
|
|
|