There is no <tag> ... </tag> in tag file. How can I find out what the problem
is?

Thanks

This is the taglib entry in webdoclet

                <jsptaglib filename="hext.tld" 
                        shortname="hext" />

This my class

/**
 * @author <a href="[EMAIL PROTECTED]">Urs Wagner</a>
 * 
 * @jsp.tag
 *              name="extmessage"
 *              body-content="none"
 *              display-name="Extended message tag"
 */
public abstract class HtmlExtMessageTag
        extends HtmlMessageTag
{
        // Key property
    private String key;


    /**
     * @jsp.attribute
     *          required="false"
     *          rtexprvalue="true"
     *          type="java.lang.String"
     */
    public void setKey(String key) {
        
        this.key = key;
    }
}

and this is the resulting tag file

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
"http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd";>

<taglib>

   <tlib-version>1.0</tlib-version>
   <jsp-version>1.2</jsp-version>
   <short-name>hext</short-name>

</taglib>



-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
xdoclet-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to