jsp使用自定义标签taglib分页系列——ColumntextTag.java

导读:
  package com.avantouch.common.web.struts.taglib;
  import javax.servlet.jsp.JspException;
  import org.apache.struts.util.RequestUtils;
  import org.apache.struts.util.ResponseUtils;
  import com.avantouch.common.web.struts.taglib.table.TDTag;
  /**
  *

Title ColumntextTag.java


  *

Description


  *

Copyright: Copyright (c) 2004 AvanTouch,Inc


  *

Company: AvanTouch,Inc


  * @author: david 2004-12-7
  * @modifier:
  * @version 1.0
  */
  public class ColumntextTag extends TDTag {
  private static final long serialVersionUID = 1L;
  private String name = null;
  private String property = null;
  /**
  * The scope of the bean specified by the name property, if any.
  */
  protected String scope = null;
  public int doStartTag() throws JspException {
  writeTDHeaders();
  Object value = RequestUtils.lookup(pageContext, name, property, scope);
  ResponseUtils.write(pageContext, value.toString());
  return (SKIP_BODY);
  }
  public int doEndTag() throws JspException {
  writeTDEnd();
  release();
  // Continue processing this page
  return (EVAL_PAGE);
  }
  /**
  * Release all allocated resources.
  */
  public void release() {
  super.release();
  name = null;
  property = null;
  scope = null;
  }
  public String getName() {
  return name;
  }
  public String getProperty() {
  return property;
  }
  public void setName(String name) {
  this.name = name;
  }
  public void setProperty(String property) {
  this.property = property;
  }
  public String getScope() {
  return scope;
  }
  public void setScope(String scope) {
  this.scope = scope;
  }
  }
  
  Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1653447

本文转自
http://blog.csdn.net/cao_david/archive/2007/06/15/1653447.aspx
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值