taglib.tld

来自「J2EE & Tomcat books published by hope」· TLD 代码 · 共 97 行

TLD
97
字号
<?xml version="1.0" encoding="ISO-8859-1" ?><!DOCTYPE taglib        PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"	"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"><!-- a tab library descriptor --><taglib>  <tlibversion>1.0</tlibversion>  <jspversion>1.1</jspversion>  <shortname>j2ee</shortname>  <info>	Stars custom tags  </info>  <!-- insert tag -->  <tag>    <name>insert</name>    <tagclass>org.impact.stars.taglib.InsertTag</tagclass>    <bodycontent>JSP</bodycontent>    <info>	An insertion tag    </info>    <attribute>      <name>id</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>      <name>parameter</name>      <required>true</required>      <rtexprvalue>true</rtexprvalue>    </attribute>  </tag>  <!-- banner tags -->  <tag>    <name>banner</name>    <tagclass>org.impact.stars.taglib.banner.BannerTag</tagclass>    <bodycontent>JSP</bodycontent>    <info>      A tag whose body is processed if the banner personalization option      is on for the logged in user.  Should appear only in pages in which      the ProfileMgrWebImpl bean is being used.  See tag handler comments      for usage.    </info>  </tag>  <tag>    <name>bannerImg</name>    <tagclass>org.impact.stars.taglib.banner.BannerImgTag</tagclass>    <bodycontent>empty</bodycontent>    <info>      A tag that just prints out a url for the banner string returned by      the ProfileMgrWebImpl bean.  Should be nested inside banner tag.    </info>  </tag>  <!-- list tags -->  <tag>    <name>searchList</name>    <tagclass>org.impact.stars.taglib.list.SearchListTag</tagclass>    <bodycontent>JSP</bodycontent>    <info>      A tag that for displaying search results    </info>     <!-- no default -->    <attribute>      <name>numItems</name>      <required>true</required>      <rtexprvalue>true</rtexprvalue>    </attribute>          <!-- default is 1 -->    <attribute>      <name>startIndex</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>    </attribute>    <!-- what to display if list is empty -->    <attribute>      <name>emptyList</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>      <name>searchText</name>      <required>true</required>      <rtexprvalue>true</rtexprvalue>    </attribute>  </tag></taglib>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?