KickJava   Java API By Example, From Geeks To Geeks.

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


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
12
13 import javax.servlet.jsp.JspTagException JavaDoc;
14
15 /**
16  * Every 'ContainerReferrer' tag should have a 'container' attribute.
17  *
18  * @author Michiel Meeuwissen
19  * @since MMBase-1.7
20  * @version $Id: ContainerReferrer.java,v 1.2 2003/12/18 09:05:41 michiel Exp $
21  */

22 public interface ContainerReferrer {
23
24     /**
25      * If it should not use parent container
26      */

27     void setContainer(String JavaDoc c) throws JspTagException JavaDoc;
28
29 }
30
Popular Tags