blob: dd8b4fa3bd69bf53d91469bf633231a476bb6ea9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package cuchaz.enigma.gui;
import cuchaz.enigma.mapping.ClassEntry;
public class DecoratedClassEntry extends ClassEntry {
private static final long serialVersionUID = -8798725308554217105L;
private String m_decoration;
public DecoratedClassEntry(ClassEntry other, String decoration) {
super(other);
m_decoration = decoration;
}
public String getDecoration() {
return m_decoration;
}
}
|