package foo;
import java.io.IOException;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.SimpleTagSupport;

public class EmployeeTagHandler extends SimpleTagSupport {
  public EmployeeTagHandler() {  }
 
  public void doTag() throws JspException, IOException {
    getJspContext().getOut().write("The title for " + empID + " is " + getTitle());
  }
 
  public void setEmpID(int empID) { this.empID = empID; }
 
  public String getTitle() {
    if (empID == 1) return "CEO";
    if (empID == 2) return "CFO";
    return "Regular";
  }
 
  private int empID;
}
Hosted by www.Geocities.ws

1