KickJava   Java API By Example, From Geeks To Geeks.

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


1 package fr.improve.struts.taglib.layout;
2
3 import javax.servlet.jsp.PageContext JavaDoc;
4 import javax.servlet.jsp.tagext.Tag JavaDoc;
5
6 /**
7  * Base class for all Struts-Layout tags.
8  *
9  * This class allows the tag find their parent even in the case of dynamic includes.
10  */

11 public interface LayoutTag extends Tag JavaDoc {
12   public abstract PageContext JavaDoc getPageContext();
13 }
14
Popular Tags