Advertisement
Guest User

myTags.tld

a guest
Dec 2nd, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
  5. version="2.0">
  6. <tlib-version>1.0</tlib-version>
  7. <short-name>our-tags</short-name>
  8.  
  9. <uri>http://sheridancollege.ca/prog32178</uri>
  10.  
  11. <!-- define the taglib -->
  12. <tag>
  13. <description>Hello with Attribute</description>
  14. <name>helloWithAttr</name> <!-- tag name -->
  15. <tag-class>testpack.CustomTag</tag-class> <!-- testpack.DefiningClass, i made mine clled testpack.CustomTag -->
  16. <body-content>empty</body-content>
  17. <attribute>
  18. <name>color</name>
  19. <required>true</required>
  20. <rtexprvalue>true</rtexprvalue>
  21. </attribute>
  22. </tag>
  23.  
  24.  
  25. </taglib>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement