Package org.apache.tiles.beans

Examples of org.apache.tiles.beans.MenuItem


        return menuItem(capitalize(domainConfiguration.getEntityConfiguration().getPluralName()), url);
    }

    private MenuItem menuItem(final String name, final String url) {
        MenuItem menuItem = new SimpleMenuItem();
        menuItem.setValue(name);
        menuItem.setLink(url);
        return menuItem;
    }
View Full Code Here

TOP

Related Classes of org.apache.tiles.beans.MenuItem

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.