Package com.zaranux.os.client

Source Code of com.zaranux.os.client.Zaranux

package com.zaranux.os.client;

import com.openmashupos.core.client.OMOS;
import com.zaranux.client.api.AsyncCallback;
import com.zaranux.client.app.core.Proxy;
import com.zaranux.client.app.core.ZaranuxProxy;
import com.zaranux.client.app.core.ZaranuxletProxy;
import com.zaranux.os.client.core.Kernel;

public class Zaranux extends OMOS { //implements EntryPoint {
 
  Kernel kernel;

  public void  onOMOSLoad() //onModuleLoad()
  {
    Proxy dummy = new ZaranuxletProxy();
    Proxy dummy2 = new ZaranuxProxy();

    Kernel kernel = new Kernel();
    kernel.boot(new AsyncCallback<Boolean>()
        {
        public void onSuccess(Boolean success)
        {
        }
        public void onFailure(Throwable caught)
        {
        }
    }
    );
  }


}
TOP

Related Classes of com.zaranux.os.client.Zaranux

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.