Adds a CONSTANT_Fieldref_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param owner the internal name of a class. @param name a field name. @param descriptor a field descriptor. @return a new or already existing Symbol with the gi
(final String owner, final String name, final String descriptor)
| 537 | * @return a new or already existing Symbol with the given value. |
| 538 | */ |
| 539 | Symbol addConstantFieldref(final String owner, final String name, final String descriptor) { |
| 540 | return addConstantMemberReference(Symbol.CONSTANT_FIELDREF_TAG, owner, name, descriptor); |
| 541 | } |
| 542 | |
| 543 | /** |
| 544 | * Adds a CONSTANT_Methodref_info or CONSTANT_InterfaceMethodref_info to the constant pool of this |
no test coverage detected