KickJava   Java API By Example, From Geeks To Geeks.

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


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 import javax.servlet.jsp.JspTagException JavaDoc;
13 import javax.servlet.jsp.jstl.core.*;
14
15 import org.mmbase.bridge.*;
16 import org.mmbase.bridge.jsp.taglib.CloudProvider;
17
18 /**
19  * A Query container can be used around node-list Tags. Basicly, it adminstrates a Query object.
20  *
21  * @author Michiel Meeuwissen
22  * @since MMBase-1.7
23  * @version $Id: QueryContainer.java,v 1.8 2006/07/04 12:16:09 michiel Exp $
24  */

25 public interface QueryContainer extends CloudProvider {
26
27     /**
28      * Returns the currently by the container defined query object. Subtags can use this query
29      * object to change it or to use it.
30      */

31     Query getQuery();
32
33     void setJspvar(String JavaDoc jv);
34
35
36 }
37
Popular Tags