<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE taglib
        PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
    "http://java.sun.com/j2ee/dtd/web-jsptaglibrary_1_2.dtd">

<taglib>

  <tlib-version>1.0</tlib-version>
  <jsp-version>1.2</jsp-version>
  <short-name>simple</short-name>
  <uri>http://my.stuff/example-taglib</uri>

<tag>
<name>aline</name>
<tag-class>mytags.MyTagHandler1</tag-class>
<body-content>scriptless</body-content>
</tag>

<tag>
<name>today</name>
<tag-class>mytags.MyDateTag</tag-class>
<body-content>scriptless</body-content>
</tag>

<tag>
<name>addTwo</name>
<tag-class>mytags.UseInput</tag-class>
<body-content>scriptless</body-content>
<attribute>  
    <name>number</name>  
    <required>true</required>  
</attribute>  
</tag>

<tag>
<name>student</name>
<tag-class>mytags.GetStudent</tag-class>
<body-content>scriptless</body-content>
<attribute>  
    <name>name</name>  
    <required>true</required> 
    <rtexprvalue>true</rtexprvalue> 
</attribute>  
</tag>
<tag>
    <name>SendMail</name>
    <tag-class>mytags.SimpleMail</tag-class>
    <body-content>scriptless</body-content>
    <attribute>
        <name>from</name>
        <required>true</required>
    </attribute>        
    <attribute>
        <name>to</name>
        <required>true</required>
    </attribute>        
</tag>


</taglib>