1 23 24 package org.infoglue.deliver.taglib.page; 25 26 import javax.servlet.jsp.JspException ; 27 28 import org.infoglue.deliver.taglib.TemplateControllerTag; 29 30 33 public class PageContextTag extends TemplateControllerTag 34 { 35 private static final long serialVersionUID = 3905242346756059449L; 36 37 public PageContextTag() 38 { 39 super(); 40 } 41 42 48 public int doStartTag() throws JspException 49 { 50 return EVAL_BODY_INCLUDE; 51 } 52 53 public int doEndTag() throws JspException  54 { 55 setResultAttribute(getController()); 56 return EVAL_PAGE; 57 } 58 } 59 | Popular Tags |