]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.eclipse.ui/src/org/argeo/eclipse/ui/jcr/WrappedNode.java
Start working on pseudo Eclipse Forms in order to ease transition to
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui / src / org / argeo / eclipse / ui / jcr / WrappedNode.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.eclipse.ui.jcr;
17
18 import javax.jcr.Node;
19
20 /** Wrap a node (created from a {@link NodesWrapper}) */
21 public class WrappedNode {
22 private final NodesWrapper parent;
23 private final Node node;
24
25 public WrappedNode(NodesWrapper parent, Node node) {
26 super();
27 this.parent = parent;
28 this.node = node;
29 }
30
31 public NodesWrapper getParent() {
32 return parent;
33 }
34
35 public Node getNode() {
36 return node;
37 }
38
39 public String toString() {
40 return "wrapped " + node;
41 }
42
43 @Override
44 public int hashCode() {
45 return node.hashCode();
46 }
47
48 @Override
49 public boolean equals(Object obj) {
50 if (obj instanceof WrappedNode)
51 return node.equals(((WrappedNode) obj).getNode());
52 else
53 return false;
54 }
55
56 }