This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ManagedBean | |
| @SessionScoped | |
| public class BloggerBean { | |
| private MenuModel simpleMenuModel = new DefaultMenuModel(); | |
| public BloggerBean() { | |
| MenuItem menuItem = new MenuItem(); | |
| menuItem.setValue("Computers"); | |
| menuItem.setUrl("#"); |
NewerOlder