<?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>student</name>
        <tag-class>mytags.GetStudent</tag-class>
        <body-content>JSP</body-content>
    </tag>
    <tag>
    <tag>
        <name>student_after</name>
        <tag-class>mytags.GetStudentafter</tag-class>
        <body-content>JSP</body-content>
    </tag>
    <tag>
        <name>student_start</name>
        <tag-class>mytags.GetStudentstart</tag-class>
        <attribute>
            <name>name</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
        </attribute>
        <body-content>JSP</body-content>
    </tag>
    <tag>
        <name>student_skip</name>
        <tag-class>mytags.GetStudentskip</tag-class>
        <body-content>JSP</body-content>
    </tag>
    <tag>
        <name>student_body</name>
        <tag-class>mytags.GetStudentagain</tag-class>
        <body-content>JSP</body-content>
    </tag>
    <tag>
        <name>student_yetagain</name>
        <tag-class>mytags.GetStudentyetagain</tag-class>
        <body-content>JSP</body-content>
    </tag>


</taglib>