KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > improve > struts > taglib > layout > ResetTag


1 package fr.improve.struts.taglib.layout;
2
3 /**
4  * @author: Jean-Noël Ribette
5  */

6 public class ResetTag extends ActionTag {
7     public ResetTag() {
8         tag = new org.apache.struts.taglib.html.ResetTag();
9     }
10     public void release() {
11         super.release();
12         tag.release();
13     }
14 }
15
Popular Tags