public class NameAndType { int nameIndex; int descriptorIndex; int tag; public NameAndType(int t, int c, int n) { tag = t; nameIndex = c; descriptorIndex = n; } public int nameIndex() { return nameIndex; } public int descriptorIndex() { return descriptorIndex; } public String toString() { return "NameIndex: " + nameIndex + ";\tDescriptorIndex: " + descriptorIndex; } }