| 1 package fr.improve.struts.taglib.layout.util; 2 3 import javax.servlet.jsp.JspException ; 4 import javax.servlet.jsp.PageContext ; 5 import javax.servlet.jsp.tagext.TagSupport ; 6 10 public interface PanelInterface { 11 public void doAfterBody(StringBuffer buffer) throws JspException ; 12 public void doBeforeBody(StringBuffer buffer, String align) throws JspException ; 13 public void doEndPanel(StringBuffer buffer); 14 public void doPrintBlankLine(StringBuffer buffer, int cols) throws JspException ; 15 19 public void doPrintTitle(StringBuffer buffer, String title); 20 public void doStartPanel(StringBuffer buffer, String align, String width); 21 25 public void init(PageContext pageContext, String in_styleClass, TagSupport in_tag) throws JspException ; 26 } 27 | Popular Tags |