1 | ConstantPoolEntry entry = constantPool.getEntry(i);↵ | | |
|
|
2 | if (entry != null↵ | | 1 | Object element = entries.elementAt(i);↵
|
|
| | | 2 | if (element instanceof InterfaceMethodRefCPInfo) {↵
|
3 | && entry.getTag() == ConstantPoolEntry.CONSTANT_CLASS) {↵ | | 3 | ↵
|
4 | ClassCPInfo classEntry = (Class↵ | | 4 | InterfaceMethodRefCPInfo interfaceMethodRefEntry↵
|
5 | CPInfo) entry;↵ | | 5 | = (InterfaceMethodRefCPInfo) element;↵
|
|
6 | if (!classEntry.getClassName().equals(c↵ | | 6 | if (interfaceMethodRefEntry.getInterfaceMethodClassName().equals(↵
|
7 | lassName)) {↵ | | 7 | interfaceMethodClassName)↵
|
|
8 | classRefs.addElement(↵ | | 8 | ↵
|
9 | ClassFileUtils.convertSlashName(classEntry.getClassName()))↵ | | 9 | && interfaceMethodRefEntry.getInterfaceMethodName().equals(↵
|
| | | 10 | interfaceMethodName)↵
|
| | | 11 | && interfaceMethodRefEntry.getInterfaceMethodType().equals(↵
|
| | | 12 | interfaceMethodType)) {↵
|
10 | ;↵ | | 13 | index = i;↵
|
11 | }↵ | | 14 | }↵
|
12 | } | | 15 | }
|