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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/*******************************************************************************
* 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.translation.representation.entry;
import com.google.common.base.Preconditions;
import cuchaz.enigma.translation.Translator;
import cuchaz.enigma.translation.mapping.EntryMapping;
import cuchaz.enigma.translation.representation.TypeDescriptor;
import cuchaz.enigma.utils.Utils;
import javax.annotation.Nullable;
public class FieldEntry extends ParentedEntry<ClassEntry> implements Comparable<FieldEntry> {
protected final TypeDescriptor desc;
public FieldEntry(ClassEntry parent, String name, TypeDescriptor desc) {
this(parent, name, desc, null);
}
public FieldEntry(ClassEntry parent, String name, TypeDescriptor desc, String javadocs) {
super(parent, name, javadocs);
Preconditions.checkNotNull(parent, "Owner cannot be null");
Preconditions.checkNotNull(desc, "Field descriptor cannot be null");
this.desc = desc;
}
public static FieldEntry parse(String owner, String name, String desc) {
return new FieldEntry(new ClassEntry(owner), name, new TypeDescriptor(desc), null);
}
@Override
public Class<ClassEntry> getParentType() {
return ClassEntry.class;
}
public TypeDescriptor getDesc() {
return this.desc;
}
@Override
public FieldEntry withName(String name) {
return new FieldEntry(parent, name, desc, null);
}
@Override
public FieldEntry withParent(ClassEntry parent) {
return new FieldEntry(parent, this.name, this.desc, null);
}
@Override
protected FieldEntry translate(Translator translator, @Nullable EntryMapping mapping) {
String translatedName = mapping != null ? mapping.getTargetName() : name;
String docs = mapping != null ? mapping.getJavadoc() : null;
return new FieldEntry(parent, translatedName, translator.translate(desc), docs);
}
@Override
public int hashCode() {
return Utils.combineHashesOrdered(this.parent, this.name, this.desc);
}
@Override
public boolean equals(Object other) {
return other instanceof FieldEntry && equals((FieldEntry) other);
}
public boolean equals(FieldEntry other) {
return this.parent.equals(other.parent) && name.equals(other.name) && desc.equals(other.desc);
}
@Override
public boolean canConflictWith(Entry<?> entry) {
return entry instanceof FieldEntry && ((FieldEntry) entry).parent.equals(parent);
}
@Override
public String toString() {
return this.parent.getFullName() + "." + this.name + ":" + this.desc;
}
@Override
public int compareTo(FieldEntry entry) {
return (name + desc.toString()).compareTo(entry.name + entry.desc.toString());
}
}
|