Package nl.gx.webmanager.cms.element
Interface AnchorElement
-
- All Superinterfaces:
DelegatedControllerAware
,Element
,Presentable
,Wrapper
public interface AnchorElement extends Element
An anchor element displays links to AnchorItems on the page and may optionally display a link to the top of the page.- See Also:
AnchorItem
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnchorItem[]
getItems()
Returns all anchor items associated to this anchor element.boolean
isLinkedToTop()
Return true if the back-to-top link is enabled.void
setItems(AnchorItem[] items)
Sets all anchor items associated to this anchor element.-
Methods inherited from interface nl.gx.webmanager.springmvc.DelegatedControllerAware
getDelegatedController, setDelegatedController
-
Methods inherited from interface nl.gx.webmanager.cms.element.Element
cleanup, copy, getAnchorElement, getEditElementHeader, getElementHolder, getHeader, getIcon, getId, getIdentity, getLastModifiedDate, getMediaItemVersion, getPageModel, getPageModelElement, getPageVersion, getPersonalizationAttributes, getPersonalizationItems, getPersonalizationOperator, getReferencedContentItems, getTitle, getTypeIdentifier, getWebsite, isAuthorized, setAuthorized, setDefaultPresentation, setEditElementHeader, setHeader, setIcon, setIdentity, setLastModifiedDate, setPersonalizationAttributes, setPersonalizationItems, setPersonalizationOperator, setTitle
-
Methods inherited from interface nl.gx.webmanager.cms.core.Presentable
getPresentation, getPresentationVariant, render, render, setPresentation, setPresentationVariant
-
-
-
-
Method Detail
-
getItems
AnchorItem[] getItems()
Returns all anchor items associated to this anchor element.- Returns:
- all anchor items associated to this anchor element.
-
setItems
void setItems(AnchorItem[] items)
Sets all anchor items associated to this anchor element.- Parameters:
items
- all anchor items associated to this anchor element
-
isLinkedToTop
boolean isLinkedToTop()
Return true if the back-to-top link is enabled.- Returns:
- true if the back-to-top link is enabled.
-
-