| 1 21 22 package org.opensubsystems.patterns.dialoglayout.www; 23 24 import javax.servlet.jsp.JspException ; 25 26 import org.opensubsystems.core.www.BlockElementTag; 27 import org.opensubsystems.core.www.TagUtils; 28 29 39 public class SplitDialogRowTag extends CachedRow 40 { 41 43 46 private static final long serialVersionUID = -360303768303686236L; 47 48 50 53 public SplitDialogRowTag() 54 { 55 super("clsDialogRow", BlockElementTag.DIV_BLOCK_ELEMENT); 56 m_strIdSuffix = "cmpsite"; 57 } 58 59 61 64 public int doEndTag( 65 ) throws JspException  66 { 67 super.doEndTag(); 68 69 TagUtils.write(pageContext, 72 getCachedContent(ContextHelpTag.CONTEXT_HELP_CACHE, true)); 73 74 return (EVAL_PAGE); 75 } 76 } 77 | Popular Tags |