Package org.primefaces.model.menu
Class DefaultSubMenu
- java.lang.Object
-
- org.primefaces.model.menu.DefaultSubMenu
-
- All Implemented Interfaces:
Serializable,MenuElement,MenuGroup,Submenu
public class DefaultSubMenu extends Object implements Submenu, Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDefaultSubMenu.Builder
-
Constructor Summary
Constructors Constructor Description DefaultSubMenu()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DefaultSubMenu.Builderbuilder()StringgetClientId()List<MenuElement>getElements()StringgetIcon()StringgetId()Allows access the id property which is managed and auto-assigned by callers like menu model implementations and used to identify the element.StringgetLabel()ObjectgetParent()StringgetStyle()StringgetStyleClass()booleanisDisabled()booleanisExpanded()booleanisRendered()voidsetDisabled(boolean disabled)voidsetElements(List<MenuElement> elements)voidsetExpanded(boolean expanded)voidsetIcon(String icon)voidsetId(String id)Sets the id property which is described inMenuElement.getId().voidsetLabel(String label)voidsetRendered(boolean rendered)voidsetStyle(String style)voidsetStyleClass(String styleClass)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.primefaces.model.menu.MenuGroup
getElementsCount
-
-
-
-
Method Detail
-
getId
public String getId()
Description copied from interface:MenuElementAllows access the id property which is managed and auto-assigned by callers like menu model implementations and used to identify the element. The property is unrelated to theidattribute in the generated XHTML.- Specified by:
getIdin interfaceMenuElement- Returns:
- the id property
-
setId
public void setId(String id)
Description copied from interface:MenuElementSets the id property which is described inMenuElement.getId(). You should have a good reason to call this if you're not extending, but only using PrimeFaces. The property is unrelated to theidattribute in the generated XHTML.- Specified by:
setIdin interfaceMenuElement- Parameters:
id- the id value
-
setStyle
public void setStyle(String style)
-
getStyleClass
public String getStyleClass()
- Specified by:
getStyleClassin interfaceSubmenu
-
setStyleClass
public void setStyleClass(String styleClass)
-
setIcon
public void setIcon(String icon)
-
setLabel
public void setLabel(String label)
-
isDisabled
public boolean isDisabled()
- Specified by:
isDisabledin interfaceSubmenu
-
setDisabled
public void setDisabled(boolean disabled)
-
getElements
public List<MenuElement> getElements()
- Specified by:
getElementsin interfaceMenuGroup
-
setElements
public void setElements(List<MenuElement> elements)
-
isRendered
public boolean isRendered()
- Specified by:
isRenderedin interfaceMenuElement
-
setRendered
public void setRendered(boolean rendered)
-
isExpanded
public boolean isExpanded()
- Specified by:
isExpandedin interfaceSubmenu
-
setExpanded
public void setExpanded(boolean expanded)
-
getClientId
public String getClientId()
- Specified by:
getClientIdin interfaceSubmenu
-
builder
public static DefaultSubMenu.Builder builder()
-
-