KickJava   Java API By Example, From Geeks To Geeks.

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


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
14 /**
15  * EditWizard
16  * @javadoc
17  * @author Kars Veling
18  * @since MMBase-1.6
19  * @version $Id: ConnectorCommandGetConstraints.java,v 1.6 2003/06/13 13:30:36 pierre Exp $
20  */

21
22 public class ConnectorCommandGetConstraints extends ConnectorCommand {
23
24     /**
25      * @javadoc
26      */

27     public ConnectorCommandGetConstraints(String JavaDoc objecttype) throws WizardException {
28         super(Dove.GETCONSTRAINTS);
29         addCommandAttr(Dove.ELM_TYPE,objecttype);
30     }
31
32
33 }
34
Popular Tags