1
2
3
4
5
6 package org.weda.tapestry.component;
7
8 import org.apache.tapestry.AbstractComponent;
9 import org.apache.tapestry.IMarkupWriter;
10 import org.apache.tapestry.IRequestCycle;
11 import org.apache.tapestry.annotations.ComponentClass;
12
13 /**
14 *
15 * @author Mikhail Titov
16 */
17 @ComponentClass(allowBody=true, allowInformalParameters=false)
18 public class ActionPanelRenderBody extends AbstractComponent{
19 protected void renderComponent(IMarkupWriter writer, IRequestCycle cycle){
20 ActionPanel actionPanel = (ActionPanel)getContainer();
21 actionPanel.finishRenderBody();
22 }
23
24
25 }