KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cayenne > map > event > DataNodeEvent


1 /*****************************************************************
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements. See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership. The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  ****************************************************************/

19
20 package org.apache.cayenne.map.event;
21
22 import org.apache.cayenne.access.DataNode;
23
24 /**
25  * Represents events resulted from DataNode changes
26  * in CayenneModeler.
27  */

28 public class DataNodeEvent extends MapEvent {
29     protected DataNode dataNode;
30
31     /** Creates a node change event. */
32     public DataNodeEvent(Object JavaDoc src, DataNode node) {
33         super(src);
34         setDataNode(node);
35     }
36
37     /** Creates a node event of a specified type. */
38     public DataNodeEvent(Object JavaDoc src, DataNode node, int id) {
39         this(src, node);
40         setId(id);
41     }
42
43     /** Creates a node name change event.*/
44     public DataNodeEvent(Object JavaDoc src, DataNode node, String JavaDoc oldName) {
45         this(src, node);
46         setOldName(oldName);
47     }
48
49     /** Returns node object associated with this event. */
50     public DataNode getDataNode() {
51         return dataNode;
52     }
53
54     /**
55      * Sets the dataNode.
56      *
57      * @param dataNode The dataNode to set
58      */

59     public void setDataNode(DataNode dataNode) {
60         this.dataNode = dataNode;
61     }
62     
63     public String JavaDoc getNewName() {
64         return (dataNode != null) ? dataNode.getName() : null;
65     }
66 }
67
Popular Tags