
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 cockpit implements IRemote{
	public static cockpit mostCurrent;
	public static RemoteObject processBA;
    public static boolean processGlobalsRun;
    public static RemoteObject myClass;
    public static RemoteObject remoteMe;
	public cockpit() {
		mostCurrent = this;
	}
    public RemoteObject getRemoteMe() {
        return remoteMe;    
    }
    
	public static void main (String[] args) throws Exception {
		new RDebug(args[0], Integer.parseInt(args[1]), Integer.parseInt(args[2]), args[3]);
		RDebug.INSTANCE.waitForTask();

	}
    static {
        anywheresoftware.b4a.pc.RapidSub.moduleToObject.put(new B4XClass("cockpit"), "b4a.bbb.cockpit");
	}

public boolean isSingleton() {
		return true;
	}
     public static RemoteObject getObject() {
		return myClass;
	 }

	public RemoteObject activityBA;
	public RemoteObject _activity;
    private PCBA pcBA;

	public PCBA create(Object[] args) throws ClassNotFoundException{
		processBA = (RemoteObject) args[1];
		activityBA = (RemoteObject) args[2];
		_activity = (RemoteObject) args[3];
        anywheresoftware.b4a.keywords.Common.Density = (Float)args[4];
        remoteMe = (RemoteObject) args[5];
		pcBA = new PCBA(this, cockpit.class);
        main_subs_0.initializeProcessGlobals();
		return pcBA;
	}
public static RemoteObject __c = RemoteObject.declareNull("anywheresoftware.b4a.keywords.Common");
public static RemoteObject _clv_sensor = RemoteObject.declareNull("b4a.example3.customlistview");
public static RemoteObject _cs = RemoteObject.declareNull("anywheresoftware.b4a.objects.CSBuilder");
public static RemoteObject _btn_setup_sensor = RemoteObject.declareNull("anywheresoftware.b4a.objects.B4XViewWrapper");
public static RemoteObject _lbl_icone_sensor = RemoteObject.declareNull("anywheresoftware.b4a.objects.B4XViewWrapper");
public static RemoteObject _lbl_name = RemoteObject.declareNull("anywheresoftware.b4a.objects.B4XViewWrapper");
public static RemoteObject _lbl_t_consigne = RemoteObject.declareNull("anywheresoftware.b4a.objects.B4XViewWrapper");
public static RemoteObject _lbl_t_live = RemoteObject.declareNull("anywheresoftware.b4a.objects.B4XViewWrapper");
public static b4a.bbb.main _main = null;
public static b4a.bbb.starter _starter = null;
public static b4a.bbb.param _param = null;
public static b4a.bbb.setup _setup = 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[] {"Activity",cockpit.mostCurrent._activity,"Btn_setup_sensor",cockpit.mostCurrent._btn_setup_sensor,"clv_sensor",cockpit.mostCurrent._clv_sensor,"Collecte_data_sensor",Debug.moduleToString(b4a.bbb.collecte_data_sensor.class),"cs",cockpit.mostCurrent._cs,"HttpUtils2Service",Debug.moduleToString(b4a.bbb.httputils2service.class),"lbl_icone_sensor",cockpit.mostCurrent._lbl_icone_sensor,"lbl_name",cockpit.mostCurrent._lbl_name,"lbl_T_Consigne",cockpit.mostCurrent._lbl_t_consigne,"lbl_T_live",cockpit.mostCurrent._lbl_t_live,"Main",Debug.moduleToString(b4a.bbb.main.class),"Param",Debug.moduleToString(b4a.bbb.param.class),"Setup",Debug.moduleToString(b4a.bbb.setup.class),"Starter",Debug.moduleToString(b4a.bbb.starter.class)};
}
}