|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectwicket.Component
wicket.MarkupContainer
wicket.markup.html.WebMarkupContainer
wicket.markup.html.panel.Panel
A panel is a reusable component that holds markup and other components.
Whereas WebMarkupContainer is an inline container like
...
<span wicket:id="xxx">
<span wicket:id="mylabel">My label</span>
....
</span>
...
a Panel has its own associated markup file and the container content is
taken from that file, like:
<span wicket:id="mypanel"/>
TestPanel.html
<wicket:panel>
<span wicket:id="mylabel">My label</span>
....
</wicket:panel>
| Nested Class Summary |
| Nested classes inherited from class wicket.Component |
Component.ComponentModelChange, Component.IVisitor, Component.VisibilityChange |
| Field Summary |
| Fields inherited from class wicket.Component |
FLAG_RESERVED1, FLAG_RESERVED2, FLAG_RESERVED3, FLAG_RESERVED4 |
| Constructor Summary | |
Panel(java.lang.String id)
|
|
Panel(java.lang.String id,
IModel model)
|
|
| Method Summary | |
protected void |
onRender()
Renders this component. |
| Methods inherited from class wicket.markup.html.WebMarkupContainer |
getMarkupType |
| Methods inherited from class wicket.MarkupContainer |
add, autoAdd, contains, findMarkupStream, get, getMarkupStream, internalAdd, internalBeginRequest, internalEndRequest, iterator, onComponentTagBody, remove, removeAll, renderAssociatedMarkup, renderComponentTagBody, replace, setMarkupStream, setModel, size, toString, toString, visitChildren, visitChildren |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public Panel(java.lang.String id)
Component.Component(String)
public Panel(java.lang.String id,
IModel model)
Component.Component(String, IModel)| Method Detail |
protected final void onRender()
onRender in class WebMarkupContainer
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||