crogers | 598da98 | 2010-05-07 18:23:43 +0000 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="ISO-8859-1" ?> |
| 2 | |
| 3 | <!DOCTYPE taglib |
| 4 | PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" |
| 5 | "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"> |
| 6 | |
| 7 | |
| 8 | <taglib> |
| 9 | |
| 10 | |
| 11 | <!-- ========== Tag Library Description Elements ========================= --> |
| 12 | |
| 13 | |
| 14 | <tlib-version>1.0</tlib-version> |
| 15 | <jsp-version>1.2</jsp-version> |
| 16 | <short-name>testCheckModeOperation</short-name> |
| 17 | <uri>org.eclipse.jst.pagedesigner.tests.testCheckModeOperation</uri> |
| 18 | <description> |
| 19 | A test tld used for verifying the CheckModeOperation. |
| 20 | </description> |
| 21 | |
| 22 | <!-- ========== Tag Descriptions ========================================= --> |
| 23 | |
| 24 | |
| 25 | <tag> |
| 26 | <name>testTagOne</name> |
| 27 | <tag-class>com.foo.SomeClassOne</tag-class> |
| 28 | <body-content>JSP</body-content> |
| 29 | <description> |
| 30 | A simple test tag. This test includes design time metadata mapped to |
| 31 | this tag to exercise the CheckModeOperation. |
| 32 | </description> |
| 33 | |
| 34 | <attribute> |
| 35 | <name>notRequiredAttr1</name> |
| 36 | <required>false</required> |
| 37 | <rtexprvalue>false</rtexprvalue> |
| 38 | <description> |
| 39 | This attribute is optional. |
| 40 | </description> |
| 41 | </attribute> |
| 42 | </tag> |
| 43 | |
| 44 | <tag> |
| 45 | <name>testTagTwo</name> |
| 46 | <tag-class>com.foo.SomeClassTwo</tag-class> |
| 47 | <body-content>JSP</body-content> |
| 48 | <description> |
| 49 | A simple test tag. This test includes design time metadata mapped to |
| 50 | this tag to exercise the CheckModeOperation. |
| 51 | </description> |
| 52 | |
| 53 | <attribute> |
| 54 | <name>requiredAttr1</name> |
| 55 | <required>true</required> |
| 56 | <rtexprvalue>false</rtexprvalue> |
| 57 | <description> |
| 58 | This attribute is required. |
| 59 | </description> |
| 60 | </attribute> |
| 61 | |
| 62 | <attribute> |
| 63 | <name>requiredAttr2</name> |
| 64 | <required>true</required> |
| 65 | <rtexprvalue>false</rtexprvalue> |
| 66 | <description> |
| 67 | This attribute is required. |
| 68 | </description> |
| 69 | </attribute> |
| 70 | </tag> |
| 71 | |
| 72 | </taglib> |