Interface IWireframe
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
PageLayoutBehavior
,WireframeBehavior
public interface IWireframe extends Serializable
Base wireframe interface, allows wireframes that are linked to their parent to register with their parent through the Wicket component tree model.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.wicket.markup.head.HeaderItem
getHeaderItem()
YuiId
getYuiId()
Return the root id of this wireframeboolean
isRendered()
void
render(org.apache.wicket.ajax.AjaxRequestTarget target)
void
resize(org.apache.wicket.ajax.AjaxRequestTarget target)
Resize the wireframe, e.g.
-
-
-
Method Detail
-
getYuiId
YuiId getYuiId()
Return the root id of this wireframe- Returns:
- the root
YuiId
of this wireframe
-
resize
void resize(org.apache.wicket.ajax.AjaxRequestTarget target)
Resize the wireframe, e.g. when it has become visible.- Parameters:
target
-
-
getHeaderItem
org.apache.wicket.markup.head.HeaderItem getHeaderItem()
-
isRendered
boolean isRendered()
-
render
void render(org.apache.wicket.ajax.AjaxRequestTarget target)
-
-