您的位置:首页 > 编程语言 > Java开发

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

2007-06-15 11:39 423 查看
package com.avantouch.common.web.struts.taglib;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.jsp.JspException;

import org.apache.struts.util.RequestUtils;
import org.apache.struts.util.ResponseUtils;

/**
 * <p>Title ColumneditTag.java</p>
 * <p>Description  </p>
 * <p>Copyright:  Copyright (c) 2004 AvanTouch,Inc</p>
 * <p>Company:  AvanTouch,Inc</p>
 * @author:  david 2004-12-7
 * @modifier:
 * @version  1.0
 */
public class ColumneditTag extends ContentBase {
 private static final long serialVersionUID = 1L;
 private String link = null;
 private String name = null;
 private String property = null;
 private String method = "edit";
 /**
 * The scope of the bean specified by the name property, if any.
 */
 protected String scope = null;

 public int doStartTag() throws JspException {
  setAlign("center");
  writeTDHeaders();
  writeHyperlink();
  return (SKIP_BODY);
 }

 public int doEndTag() throws JspException {
  writeTDEnd();
  release();
  // Continue processing this page
  return (EVAL_PAGE);
 }
 /**
   * write  hyperlink
   * p><code>writeHyperlink</code></p>
   * @throws JspException
   * @author david 2004-12-7
   * @Since 1.0
   */
 public void writeHyperlink() throws JspException {
  String prefixPath = ((HttpServletRequest) pageContext.getRequest()).getContextPath();
  Object value = null;
  if (name != null) {
   value = RequestUtils.lookup(pageContext, name, property, scope);
  } else {
   value = property;
  }
  link = link + "?method=" + method + "&key=" + value;
  StringBuffer buf = new StringBuffer("<A");
  buf.append("  href=/"" + link + "/"");
  if (getTitle() != null) {
   buf.append("  TITLE=/"" + getTitle() + "/"");
  } else {
   buf.append("  TITLE=/"edit this record/"");
  }
  prepareEvents(buf);
  buf.append(">");
  buf.append("<img width='16' height='16' border='0' src='" + prefixPath + "/images/buttons/edit.gif'>");
  buf.append("</A>");
  ResponseUtils.write(pageContext, buf.toString());
 } // end writeHyperlink

 /**
  * Release all allocated resources.
  */
 public void release() {
  super.release();
  link = null;
  name = null;
  property = null;
  scope = null;
 }

 public String getLink() {
  return link;
 }

 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 setLink(String action) {
  this.link = action;
 }

 public void setScope(String scope) {
  this.scope = scope;
 }

 public String getMethod() {
  return method;
 }

 public void setMethod(String string) {
  method = string;
 }

}
 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息