Package template.page

Source Code of template.page.BorderPage

package template.page;

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

public class BorderPage extends BasePage {

    private static final long serialVersionUID = 1L;

    private Menu rootMenu;

    public BorderPage() {
        MenuFactory menuFactory = new MenuFactory();
        rootMenu = menuFactory.getRootMenu();
        addControl(rootMenu);
    }

    /**
     * @see #getTemplate()
     */
    public String getTemplate() {
        return "border-template.htm";
    }

}
TOP

Related Classes of template.page.BorderPage

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.