example-taglib.tld
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!--
  3.  Licensed to the Apache Software Foundation (ASF) under one or more
  4.   contributor license agreements.  See the NOTICE file distributed with
  5.   this work for additional information regarding copyright ownership.
  6.   The ASF licenses this file to You under the Apache License, Version 2.0
  7.   (the "License"); you may not use this file except in compliance with
  8.   the License.  You may obtain a copy of the License at
  9.       http://www.apache.org/licenses/LICENSE-2.0
  10.   Unless required by applicable law or agreed to in writing, software
  11.   distributed under the License is distributed on an "AS IS" BASIS,
  12.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.   See the License for the specific language governing permissions and
  14.   limitations under the License.
  15. -->
  16. <!DOCTYPE taglib
  17.         PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
  18. "http://java.sun.com/j2ee/dtd/web-jsptaglibrary_1_2.dtd">
  19. <taglib>
  20.   <tlib-version>1.0</tlib-version>
  21.   <jsp-version>1.2</jsp-version>
  22.   <short-name>simple</short-name>
  23.   <uri>http://jakarta.apache.org/tomcat/example-taglib</uri>
  24.   <description>
  25. A simple tab library for the examples
  26.   </description>
  27.   <tag>
  28.     <name>ShowSource</name>
  29.     <tag-class>examples.ShowSource</tag-class>
  30.     <description> Display JSP sources </description>
  31.     <attribute>
  32.        <name>jspFile</name>
  33.        <required>true</required>
  34.        <rtexprvalue>true</rtexprvalue>
  35.     </attribute>
  36.   </tag>       
  37.   <!-- A simple Tag -->
  38.   <!-- foo tag -->
  39.   <tag>
  40.     <name>foo</name>
  41.     <tag-class>examples.FooTag</tag-class>
  42.     <tei-class>examples.FooTagExtraInfo</tei-class>
  43.     <body-content>JSP</body-content>
  44.     <description>
  45. Perform a server side action; uses 3 mandatory attributes
  46.     </description>
  47.     <attribute>
  48.       <name>att1</name>
  49.       <required>true</required>
  50.     </attribute>
  51.     <attribute>
  52.       <name>att2</name>
  53.       <required>true</required>
  54.     </attribute>
  55.     <attribute>
  56.       <name>att3</name>
  57.       <required>true</required>
  58.     </attribute>
  59.   </tag>
  60.   <!-- Another simple tag -->
  61.   <!-- log tag -->
  62.   <tag>
  63.     <name>log</name>
  64.     <tag-class>examples.LogTag</tag-class>
  65.     <body-content>TAGDEPENDENT</body-content>
  66.     <description>
  67. Perform a server side action; Log the message.
  68.     </description>
  69.     <attribute>
  70. <name>toBrowser</name>
  71. <required>false</required>
  72.     </attribute>
  73.   </tag>
  74.   
  75. </taglib>