⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 taglib.tld

📁 <Java网络程序设计 J2EE>随书源码
💻 TLD
📖 第 1 页 / 共 2 页
字号:
      body of this tag is processed once for each item actually in the list.      This tag merely keeps a copy of the current item for the inner tags to      refer to.  Must appear in a list tag.    </description>        <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.        <tldx>            <packagename>com.icconcept.j2ee.icwork.taglib.list</packagename>            <extendsSupportClass>TRUE</extendsSupportClass>            <supportClass>BodyTagSupport</supportClass>            <implementsTryCatchFinally>FALSE</implementsTryCatchFinally>            <findparent>FALSE</findparent>        </tldx>        -->  </tag>  <tag>    <name>productAttribute</name>        <tag-class>com.icconcept.j2ee.icwork.taglib.list.ProductAttributeTag</tag-class>        <body-content>empty</body-content>        <description>      A tag to print out attributes of a Product object.  It should appear      in an items tag.  Depending on the value of the attribute specified,      a different string is printed.  Possible values are "name", "id",      and "description".    </description>        <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.        <tldx>            <packagename>com.icconcept.j2ee.icwork.taglib.list</packagename>            <extendsSupportClass>TRUE</extendsSupportClass>            <supportClass>TagSupport</supportClass>            <implementsTryCatchFinally>FALSE</implementsTryCatchFinally>            <findparent>FALSE</findparent>        </tldx>        -->    <!-- default is "name" -->    <attribute>      <name>attribute</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>            <type>String</type>            <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.            <tldx>                <IsReferenceID>FALSE</IsReferenceID>                <ReferencesTag>FALSE</ReferencesTag>                <ReferenceScope>Session</ReferenceScope>                <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>            </tldx>            -->    </attribute>  </tag>  <tag>    <name>nextForm</name>        <tag-class>com.icconcept.j2ee.icwork.taglib.list.NextFormTag</tag-class>        <body-content>JSP</body-content>        <description>      Prints out a form which, when submitted will reload the page, with      the list displaying the next bunch of items.  The action attribute      should be set to the url recognized by the requestmappings.xml file      as the current page, e.g. "editaccount" (not the actual path, e.g.       editaccount.jsp).  Should appear in a list tag.  The body shouldn't      be processed if there are no more items to fetch (sort of works right      now but not quite).    </description>        <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.        <tldx>            <packagename>com.icconcept.j2ee.icwork.taglib.list</packagename>            <extendsSupportClass>TRUE</extendsSupportClass>            <supportClass>BodyTagSupport</supportClass>            <implementsTryCatchFinally>FALSE</implementsTryCatchFinally>            <findparent>FALSE</findparent>        </tldx>        -->    <!-- no default -->    <attribute>      <name>action</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>            <type>String</type>            <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.            <tldx>                <IsReferenceID>FALSE</IsReferenceID>                <ReferencesTag>FALSE</ReferencesTag>                <ReferenceScope>Session</ReferenceScope>                <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>            </tldx>            -->    </attribute>  </tag>  <tag>    <name>prevForm</name>        <tag-class>com.icconcept.j2ee.icwork.taglib.list.PrevFormTag</tag-class>        <body-content>JSP</body-content>        <description>      Similar to a nextForm tag, but loads the page with the previous bunch      of items.  The body won't be processed if the list is at the beginning.    </description>        <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.        <tldx>            <packagename>com.icconcept.j2ee.icwork.taglib.list</packagename>            <extendsSupportClass>TRUE</extendsSupportClass>            <supportClass>BodyTagSupport</supportClass>            <implementsTryCatchFinally>FALSE</implementsTryCatchFinally>            <findparent>FALSE</findparent>        </tldx>        -->    <!-- no default -->    <attribute>      <name>action</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>            <type>String</type>            <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.            <tldx>                <IsReferenceID>FALSE</IsReferenceID>                <ReferencesTag>FALSE</ReferencesTag>                <ReferenceScope>Session</ReferenceScope>                <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>            </tldx>            -->    </attribute>  </tag>  <!-- cart tag -->  <tag>    <name>cart</name>        <tag-class>com.icconcept.j2ee.icwork.taglib.list.CartListTag</tag-class>        <body-content>JSP</body-content>        <description>      A tag that implements a my list, fetching a shopping cart list from the      ShoppingCartWebImpl bean using the given number of items and starting      index.     </description>        <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.        <tldx>            <packagename>com.icconcept.j2ee.icwork.taglib.list</packagename>            <extendsSupportClass>TRUE</extendsSupportClass>            <supportClass>BodyTagSupport</supportClass>            <implementsTryCatchFinally>FALSE</implementsTryCatchFinally>            <findparent>FALSE</findparent>        </tldx>        -->     <!-- no default -->    <attribute>      <name>numItems</name>      <required>true</required>      <rtexprvalue>true</rtexprvalue>            <type>String</type>            <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.            <tldx>                <IsReferenceID>FALSE</IsReferenceID>                <ReferencesTag>FALSE</ReferencesTag>                <ReferenceScope>Session</ReferenceScope>                <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>            </tldx>            -->    </attribute>          <!-- default is 1 -->    <attribute>      <name>startIndex</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>            <type>String</type>            <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.            <tldx>                <IsReferenceID>FALSE</IsReferenceID>                <ReferencesTag>FALSE</ReferencesTag>                <ReferenceScope>Session</ReferenceScope>                <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>            </tldx>            -->    </attribute>    <!-- Message displayed when shopping cart is empty -->    <attribute>      <name>cartEmptyMessage</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>            <type>String</type>            <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.            <tldx>                <IsReferenceID>FALSE</IsReferenceID>                <ReferencesTag>FALSE</ReferencesTag>                <ReferenceScope>Session</ReferenceScope>                <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>            </tldx>            -->    </attribute>  </tag>  <tag>    <name>cartAttribute</name>        <tag-class>com.icconcept.j2ee.icwork.taglib.list.CartItemAttributeTag</tag-class>        <body-content>empty</body-content>        <description>      A tag to print out attributes of a CartItem object.  It should appear      in an items tag.  Depending on the value of the attribute specified,      a different string is printed.  Possible values are "name", "itemid",      and "productid", "attribute", "quantity", "unitcost", "totalcost".    </description>        <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.        <tldx>            <packagename>com.icconcept.j2ee.icwork.taglib.list</packagename>            <extendsSupportClass>TRUE</extendsSupportClass>            <supportClass>TagSupport</supportClass>            <implementsTryCatchFinally>FALSE</implementsTryCatchFinally>            <findparent>FALSE</findparent>        </tldx>        -->    <!-- default is "name" -->    <attribute>      <name>attribute</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>            <type>String</type>            <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.            <tldx>                <IsReferenceID>FALSE</IsReferenceID>                <ReferencesTag>FALSE</ReferencesTag>                <ReferenceScope>Session</ReferenceScope>                <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>            </tldx>            -->    </attribute>    <attribute>      <name>true</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>            <type>String</type>            <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.            <tldx>                <IsReferenceID>FALSE</IsReferenceID>                <ReferencesTag>FALSE</ReferencesTag>                <ReferenceScope>Session</ReferenceScope>                <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>            </tldx>            -->    </attribute>    <attribute>      <name>false</name>      <required>false</required>      <rtexprvalue>true</rtexprvalue>            <type>String</type>            <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.            <tldx>                <IsReferenceID>FALSE</IsReferenceID>                <ReferencesTag>FALSE</ReferencesTag>                <ReferenceScope>Session</ReferenceScope>                <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>            </tldx>            -->    </attribute>  </tag>  <tag>    <name>productDetails</name>        <tag-class>com.icconcept.j2ee.icwork.taglib.ProductDetailsTag</tag-class>        <body-content>JSP</body-content>        <description>    </description>        <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.        <tldx>            <packagename>com.icconcept.j2ee.icwork.taglib</packagename>            <extendsSupportClass>TRUE</extendsSupportClass>            <supportClass>BodyTagSupport</supportClass>            <implementsTryCatchFinally>FALSE</implementsTryCatchFinally>            <findparent>FALSE</findparent>        </tldx>        -->  </tag>  <tag>    <name>prodDetailsAttr</name>        <tag-class>com.icconcept.j2ee.icwork.taglib.ProductDetailsAttributeTag</tag-class>        <body-content>empty</body-content>        <description>    </description>        <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.        <tldx>            <packagename>com.icconcept.j2ee.icwork.taglib</packagename>            <extendsSupportClass>TRUE</extendsSupportClass>            <supportClass>TagSupport</supportClass>            <implementsTryCatchFinally>FALSE</implementsTryCatchFinally>            <findparent>FALSE</findparent>        </tldx>        -->    <!-- default is "name" -->    <attribute>      <name>attribute</name>      <required>true</required>      <rtexprvalue>true</rtexprvalue>            <type>String</type>            <!-- Forte4J_TLDX:  This comment contains code generation information. Do not delete.            <tldx>                <IsReferenceID>FALSE</IsReferenceID>                <ReferencesTag>FALSE</ReferencesTag>                <ReferenceScope>Session</ReferenceScope>                <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>            </tldx>            -->    </attribute>  </tag></taglib>

⌨️ 快捷键说明

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