template.tld 856 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE taglib
  3. PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
  4. "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
  5. <!-- a tag library descriptor -->
  6. <taglib>
  7. <tlibversion>1.0</tlibversion>
  8. <jspversion>1.1</jspversion>
  9. <shortname>template</shortname>
  10. <uri></uri>
  11. <info>Web Application Framework Template Tags</info>
  12. <!-- Template insert tag -->
  13. <tag>
  14. <name>insert</name>
  15. <tagclass>kr.co.hsnc.j2ee.waf.view.template.tags.InsertTag</tagclass>
  16. <bodycontent>JSP</bodycontent>
  17. <info>An insertion tag</info>
  18. <attribute>
  19. <name>id</name>
  20. <required>false</required>
  21. <rtexprvalue>true</rtexprvalue>
  22. </attribute>
  23. <attribute>
  24. <name>parameter</name>
  25. <required>true</required>
  26. <rtexprvalue>true</rtexprvalue>
  27. </attribute>
  28. </tag>
  29. </taglib>