public final class ANI extends Applet implements Runnable {
// $FF: renamed from: t java.lang.Thread
private Thread field_0;
private int gcCount;
public int iID = 1024;
public String agentScriptFile;
public ANIAgent agent;
public ANIAgentCanvas agCanvas;
public ANIStatus status;
private ANIStatusCanvas stCanvas;
public Color agentBgColor;
public Color statusBgColor;
public Color statusFadeColor;
public Color helpBgColor;
public Color helpBorderColor;
public Color helpTextColor;
public Font helpTextFont;
public int iScrollHeight;
public long lAgentReload;
public String helpImage;
public Image helpImg;
public int wHelpImg;
public int hHelpImg;
public boolean fLicense;
private String chars = new String(" §a\"b$c%d&e/f(g)h=i?j,k.l-m_n:o;p#q~r+s*t\\u|v<w>[0]123456789x{y}z ");
public void stop() {
if (this.status != null) {
this.status.stop();
this.status = null;
}
if (this.agent != null) {
this.agent.stop();
this.agent = null;
}
if (this.field_0 != null) {
this.field_0.stop();
this.field_0 = null;
}
System.gc();
}
public final void wait(int var1) {
try {
Thread.sleep((long)var1);
} catch (InterruptedException var2) {
}
}
public String[][] getParameterInfo() {
String[][] var1 = new String[][]{{"agentscript", "String", "name of agent script file"}, {"agentreloadinterval", "int", "Reload interval for agent script file loading"}, {"agentbackgroundcolor", "int,int,int", "RBG values of the agent area background color"}, {"statusbackgroundcolor", "int,int,int", "RBG values of the status area background color"}, {"statusfadeoutcolor", "int,int,int", "RBG values of the status area fade-out color"}, {"helpimage", "String", "URL or file name of help image"}, {"helpbackgroundcolor", "int,int,int", "RBG values of the help text background color"}, {"helpbordercolor", "int,int,int", "RBG values of the help image border color"}, {"helptextcolor", "int,int,int", "RBG values of the help text color"}};