123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="ISO-8859-1" ?>
- <!DOCTYPE taglib
- PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
- "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
- <!-- a tag library descriptor -->
- <taglib>
- <tlibversion>1.0</tlibversion>
- <jspversion>1.1</jspversion>
- <shortname>template</shortname>
- <uri></uri>
- <info>Web Application Framework Template Tags</info>
- <!-- Template insert tag -->
- <tag>
- <name>insert</name>
- <tagclass>kr.co.hsnc.j2ee.waf.view.template.tags.InsertTag</tagclass>
- <bodycontent>JSP</bodycontent>
- <info>An insertion tag</info>
- <attribute>
- <name>id</name>
- <required>false</required>
- <rtexprvalue>true</rtexprvalue>
- </attribute>
- <attribute>
- <name>parameter</name>
- <required>true</required>
- <rtexprvalue>true</rtexprvalue>
- </attribute>
- </tag>
- </taglib>
|