blob: 922f8f24af0450f4739fd948b44bd79d066dd9b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/*******************************************************************************
* Copyright (c) 2015 Jeff Martin.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser General Public
* License v3.0 which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl.html
* <p>
* Contributors:
* Jeff Martin - initial API and implementation
******************************************************************************/
package cuchaz.enigma.gui.node;
import cuchaz.enigma.translation.representation.entry.ClassEntry;
import javax.swing.tree.DefaultMutableTreeNode;
public class ClassSelectorClassNode extends DefaultMutableTreeNode {
private final ClassEntry obfEntry;
private ClassEntry classEntry;
public ClassSelectorClassNode(ClassEntry obfEntry, ClassEntry classEntry) {
this.obfEntry = obfEntry;
this.classEntry = classEntry;
this.setUserObject(classEntry);
}
public ClassEntry getObfEntry() {
return obfEntry;
}
public ClassEntry getClassEntry() {
return this.classEntry;
}
@Override
public String toString() {
return this.classEntry.getSimpleName();
}
@Override
public boolean equals(Object other) {
return other instanceof ClassSelectorClassNode && equals((ClassSelectorClassNode) other);
}
@Override
public int hashCode() {
return 17 + (classEntry != null ? classEntry.hashCode() : 0);
}
@Override
public Object getUserObject() {
return classEntry;
}
@Override
public void setUserObject(Object userObject) {
String packageName = "";
if (classEntry.getPackageName() != null)
packageName = classEntry.getPackageName() + "/";
if (userObject instanceof String)
this.classEntry = new ClassEntry(packageName + userObject);
else if (userObject instanceof ClassEntry)
this.classEntry = (ClassEntry) userObject;
super.setUserObject(classEntry);
}
public boolean equals(ClassSelectorClassNode other) {
return this.classEntry.equals(other.classEntry);
}
}
|