View Javadoc

1   /*
2    * ActionPanelRenderBody.java
3    * Created on 29 Сентябрь 2006 г., 10:15
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  }