KickJava   Java API By Example, From Geeks To Geeks.

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


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 org.mmbase.bridge.NodeQuery;
13
14 /**
15  * A NodeQuery Container can be used around node-list Tags. Basicly, it adminstrates a NodeQuery object.
16  *
17  * @author Michiel Meeuwissen
18  * @since MMBase-1.7
19  * @version $Id: NodeQueryContainer.java,v 1.3 2006/07/04 12:16:09 michiel Exp $
20  */

21 public interface NodeQueryContainer extends QueryContainer {
22
23     /**
24      * Returns the currently by the container defined query object. Subtags can use this query
25      * object to change it or to use it.
26      */

27     NodeQuery getNodeQuery();
28
29
30 }
31
Popular Tags