KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ojb > tools > mapping > reversedb2 > ojbmetatreemodel > actions > ActionAddClassDescriptor


1 package org.apache.ojb.tools.mapping.reversedb2.ojbmetatreemodel.actions;
2
3 /* Copyright 2002-2005 The Apache Software Foundation
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17
18 /**
19  * @author <a HREF="mailto:bfl@florianbruckner.com">Florian Bruckner</a>
20  * @version $Id: ActionAddClassDescriptor.java,v 1.1.2.1 2005/12/21 22:33:29 tomdz Exp $
21  */

22 public class ActionAddClassDescriptor extends javax.swing.AbstractAction JavaDoc
23 {
24     private org.apache.ojb.tools.mapping.reversedb2.ojbmetatreemodel.OjbMetaRootNode rootNode;
25     /** Creates a new instance of ActionAddClassDescriptor */
26     public ActionAddClassDescriptor(org.apache.ojb.tools.mapping.reversedb2.ojbmetatreemodel.OjbMetaRootNode pRootNode)
27     {
28         super("Add Class");
29         rootNode = pRootNode;
30     }
31
32     /** Invoked when an action occurs.
33      *
34      */

35     public void actionPerformed(java.awt.event.ActionEvent JavaDoc e)
36     {
37         System.out.println("Action Command: " + e.getActionCommand());
38         System.out.println("Action Params : " + e.paramString());
39         System.out.println("Action Source : " + e.getSource());
40         System.out.println("Action SrcCls : " + e.getSource().getClass().getName());
41         org.apache.ojb.broker.metadata.ClassDescriptor cld =
42             new org.apache.ojb.broker.metadata.ClassDescriptor(rootNode.getRepository());
43         // cld.setClassNameOfObject("New Class");
44
cld.setTableName("New Table");
45         rootNode.addClassDescriptor(cld);
46     }
47
48 }
49
Popular Tags