KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > applications > editwizard > ConnectorCommandGetList


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.applications.editwizard;
11
12 import org.mmbase.applications.dove.Dove;
13 import org.w3c.dom.*;
14
15 /**
16  * EditWizard
17  * @javadoc
18  * @author Kars Veling
19  * @since MMBase-1.6
20  * @version $Id: ConnectorCommandGetList.java,v 1.6 2003/06/13 13:30:36 pierre Exp $
21  */

22
23 public class ConnectorCommandGetList extends ConnectorCommand {
24
25     /**
26      * @javadoc
27      */

28     public ConnectorCommandGetList(Node query) throws WizardException {
29         super(Dove.GETLIST);
30         addQuery(query);
31     }
32
33     /**
34      * @javadoc
35      */

36     public void addQuery(Node query) {
37         addCommandNode(query.cloneNode(true));
38     }
39 }
40
Popular Tags