Package org.damour.base.demo.client

Source Code of org.damour.base.demo.client.DemoApplication

package org.damour.base.demo.client;

import org.damour.base.client.BaseApplicationUI;
import org.damour.base.client.ui.toolbar.ToolBar;

public class DemoApplication extends BaseApplicationUI {

  public void loadApplication() {
    getApplicationContentDeck().add(new Launcher(getAuthenticatedUser()));
    getApplicationContentDeck().showWidget(0);
  }

  public ToolBar buildApplicationToolBar() {
    ToolBar tb = super.buildApplicationToolBar();
//    tb.add(new Label("hello"));
//    tb.addPadding(5);
    return tb;
  }

}
TOP

Related Classes of org.damour.base.demo.client.DemoApplication

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.