Package org.apache.click.extras.control

Examples of org.apache.click.extras.control.Menu


import org.apache.click.extras.control.Menu;

public class MenuBuilder {
 
  public Menu buildMenu() {
    Menu rootMenu = new Menu("rootMenu");
    rootMenu.add(createMenu("Home", "home.htm"));
    rootMenu.add(createMenu("Books", "books.htm"));
    return rootMenu;
  }
View Full Code Here


    rootMenu.add(createMenu("Books", "books.htm"));
    return rootMenu;
  }

  private Menu createMenu(String label, String path) {
    Menu menu = new Menu();
    menu.setLabel(label);
    menu.setPath(path);
    menu.setTitle(label);
    return menu;
  }
View Full Code Here

TOP

Related Classes of org.apache.click.extras.control.Menu

Copyright © 2018 www.massapicom. 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.