JSP 中自定义标签的 Javadoc

发布于 2024-11-07 07:51:33 字数 204 浏览 0 评论 0原文

我正在使用扩展 TagSupport 和 tld 的类创建自定义 JSP 标记。我想创建一个 javadoc,以便当设计者使用这些标签时,例如在 eclipse 中,在 ctrl+space (在 Windows 中)上,设计者必须获取标签信息,并且标签中的每个属性都应该发生同样的事情。我尝试在课堂上给出 /** .. */ ,但没有成功。如何做到这一点?如果有更简单的工具,请提及教程链接。

I am creating a custom JSP tag using a class which extends TagSupport and a tld. I want to create a javadoc such that when a designer uses these tags, like for example in eclipse, on ctrl+space (in windows), the designer must get tag info and same thing should happen for each atribute in the tag. I tried giving /** .. */ in class, it did not work. How to do this ? If there is an easier tool, please mention tutorial link.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最冷一天 2024-11-14 07:51:34

它应该位于 元素和 .tld< 中的 元素。 /代码> 文件。

例如

<tag>
    <description>This tag does foo.</description>
    <name>foo</name>
    ...
    <attribute>
        <description>Sets the value of foo.</description>
        <name>value</name>
        ...
    </attribute>
</tag>

It should go in <description> element of the <tag> and <attribute> elements in the .tld file.

E.g.

<tag>
    <description>This tag does foo.</description>
    <name>foo</name>
    ...
    <attribute>
        <description>Sets the value of foo.</description>
        <name>value</name>
        ...
    </attribute>
</tag>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文