| 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 40 public class DialogRowTag extends CachedRow 41 { 42 44 47 private static final long serialVersionUID = -378243901735631499L; 48 49 51 54 public DialogRowTag() 55 { 56 super("clsDialogRowStandalone", BlockElementTag.DIV_BLOCK_ELEMENT); 57 m_strIdSuffix = "cmpsite"; 58 } 59 60 62 65 public int doEndTag( 66 ) throws JspException  67 { 68 int iRetValue = super.doEndTag(); 70 71 TagUtils.write(pageContext, 75 getCachedContent(ContextHelpTag.CONTEXT_HELP_CACHE, true)); 76 77 return iRetValue; 78 } 79 } 80 | Popular Tags |