KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > ContextProvider


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.bridge.jsp.taglib;
11 import javax.servlet.jsp.JspTagException JavaDoc;
12 import javax.servlet.jsp.PageContext JavaDoc;
13 import org.mmbase.bridge.jsp.taglib.util.ContextContainer;
14
15
16 /**
17  * Abstract representation of a 'context' tag. The one context is of
18  * course the context tag itself. But also List tags work as a kind of
19  * contextes.
20  *
21  * @since MMBase-1.7
22  * @author Michiel Meeuwissen
23  * @version $Id: ContextProvider.java,v 1.5 2005/01/05 20:49:36 michiel Exp $
24  **/

25
26 public interface ContextProvider extends TagIdentifier {
27
28     public ContextContainer getContextContainer() throws JspTagException JavaDoc;
29     public PageContext JavaDoc getPageContext() throws JspTagException JavaDoc;
30
31 }
32
Popular Tags