
package b4a.bbb;

import java.io.IOException;
import anywheresoftware.b4a.BA;
import anywheresoftware.b4a.pc.PCBA;
import anywheresoftware.b4a.pc.RDebug;
import anywheresoftware.b4a.pc.RemoteObject;
import anywheresoftware.b4a.pc.RDebug.IRemote;
import anywheresoftware.b4a.pc.Debug;
import anywheresoftware.b4a.pc.B4XTypes.B4XClass;
import anywheresoftware.b4a.pc.B4XTypes.DeviceClass;

public class param implements IRemote{
	public static param mostCurrent;
	public static RemoteObject processBA;
    public static boolean processGlobalsRun;
    public static RemoteObject myClass;
    public static RemoteObject remoteMe;
	public param() {
		mostCurrent = this;
	}
    public RemoteObject getRemoteMe() {
        return remoteMe;    
    }
    
public boolean isSingleton() {
		return true;
	}
     private static PCBA pcBA = new PCBA(null, param.class);
    static {
		mostCurrent = new param();
        remoteMe = RemoteObject.declareNull("b4a.bbb.param");
        anywheresoftware.b4a.pc.RapidSub.moduleToObject.put(new B4XClass("param"), "b4a.bbb.param");
        RDebug.INSTANCE.eventTargets.put(new DeviceClass("b4a.bbb.param"), new java.lang.ref.WeakReference<PCBA> (pcBA));
	}
   
	public static RemoteObject runMethod(boolean notUsed, String method, Object... args) throws Exception{
		return (RemoteObject) pcBA.raiseEvent(method.substring(1), args);
	}
    public static void runVoidMethod(String method, Object... args) throws Exception{
		runMethod(false, method, args);
	}
	public PCBA create(Object[] args) throws ClassNotFoundException{
        throw new RuntimeException("CREATE is not supported.");
	}
public static RemoteObject __c = RemoteObject.declareNull("anywheresoftware.b4a.keywords.Common");
public static RemoteObject _list_read = RemoteObject.declareNull("anywheresoftware.b4a.objects.collections.List");
public static b4a.bbb.main _main = null;
public static b4a.bbb.starter _starter = null;
public static b4a.bbb.setup _setup = null;
public static b4a.bbb.cockpit _cockpit = null;
public static b4a.bbb.collecte_data_sensor _collecte_data_sensor = null;
public static b4a.bbb.httputils2service _httputils2service = null;
  public Object[] GetGlobals() {
		return new Object[] {"Cockpit",Debug.moduleToString(b4a.bbb.cockpit.class),"Collecte_data_sensor",Debug.moduleToString(b4a.bbb.collecte_data_sensor.class),"HttpUtils2Service",Debug.moduleToString(b4a.bbb.httputils2service.class),"list_Read",param._list_read,"Main",Debug.moduleToString(b4a.bbb.main.class),"Setup",Debug.moduleToString(b4a.bbb.setup.class),"Starter",Debug.moduleToString(b4a.bbb.starter.class)};
}
}