
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 starter implements IRemote{
	public static starter mostCurrent;
	public static RemoteObject processBA;
    public static boolean processGlobalsRun;
    public static RemoteObject myClass;
    public static RemoteObject remoteMe;
	public starter() {
		mostCurrent = this;
	}
    public RemoteObject getRemoteMe() {
        return remoteMe;    
    }
    
public boolean isSingleton() {
		return true;
	}
    static {
        anywheresoftware.b4a.pc.RapidSub.moduleToObject.put(new B4XClass("starter"), "b4a.bbb.starter");
	}
     public static RemoteObject getObject() {
		return myClass;
	 }
	public RemoteObject _service;
    private PCBA pcBA;

	public PCBA create(Object[] args) throws ClassNotFoundException{
		processBA = (RemoteObject) args[1];
        _service = (RemoteObject) args[2];
        remoteMe = RemoteObject.declareNull("b4a.bbb.starter");
        anywheresoftware.b4a.keywords.Common.Density = (Float)args[3];
		pcBA = new PCBA(this, starter.class);
        main_subs_0.initializeProcessGlobals();
		return pcBA;
	}
public static RemoteObject __c = RemoteObject.declareNull("anywheresoftware.b4a.keywords.Common");
public static RemoteObject _manager = RemoteObject.declareNull("anywheresoftware.b4a.objects.BleManager2");
public static RemoteObject _currentstatetext = RemoteObject.createImmutable("");
public static RemoteObject _currentstate = RemoteObject.createImmutable(0);
public static RemoteObject _connected = RemoteObject.createImmutable(false);
public static RemoteObject _connectedname = RemoteObject.createImmutable("");
public static RemoteObject _connectedservices = RemoteObject.declareNull("anywheresoftware.b4a.objects.collections.List");
public static RemoteObject _rp = RemoteObject.declareNull("anywheresoftware.b4a.objects.RuntimePermissions");
public static RemoteObject _bc = RemoteObject.declareNull("anywheresoftware.b4a.agraham.byteconverter.ByteConverter");
public static b4a.bbb.main _main = null;
public static b4a.bbb.param _param = 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[] {"bc",starter._bc,"Cockpit",Debug.moduleToString(b4a.bbb.cockpit.class),"Collecte_data_sensor",Debug.moduleToString(b4a.bbb.collecte_data_sensor.class),"connected",starter._connected,"ConnectedName",starter._connectedname,"ConnectedServices",starter._connectedservices,"currentState",starter._currentstate,"currentStateText",starter._currentstatetext,"HttpUtils2Service",Debug.moduleToString(b4a.bbb.httputils2service.class),"Main",Debug.moduleToString(b4a.bbb.main.class),"manager",starter._manager,"Param",Debug.moduleToString(b4a.bbb.param.class),"rp",starter._rp,"Service",starter.mostCurrent._service,"Setup",Debug.moduleToString(b4a.bbb.setup.class)};
}
}