Package com.stormBrain.client

Source Code of com.stormBrain.client.StormBrain

package com.stormBrain.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.Frame;

/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class StormBrain implements EntryPoint {
  public void onModuleLoad() {
    SBQuoteService service = new SBQuoteService();
    service.activate();
   
    SBTabControl control = new SBTabControl();
    control.addPanel("Home", new Frame("/html/home.html"));
    control.addPanel("baseData", new Frame("/html/baseData.html"));       
    control.activate();
  }
}
TOP

Related Classes of com.stormBrain.client.StormBrain

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.