KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > containers > FunctionContainerReferrer


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.containers;
11 import javax.servlet.jsp.JspTagException JavaDoc;
12
13 /**
14  * Function Container referrer can print function results
15  *
16  * @author Michiel Meeuwissen
17  * @since MMBase-1.7
18  * @version $Id: FunctionContainerReferrer.java,v 1.2 2003/08/11 15:26:36 michiel Exp $
19  */

20 public interface FunctionContainerReferrer extends ContainerReferrer {
21
22     /**
23      * If it should not use parent container
24      */

25     void setContainer(String JavaDoc c) throws JspTagException JavaDoc;
26 }
27
Popular Tags