Adds a CONSTANT_Class_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param value the internal name of a class. @return a new or already existing Symbol with the given value.
(final String value)
| 524 | * @return a new or already existing Symbol with the given value. |
| 525 | */ |
| 526 | Symbol addConstantClass(final String value) { |
| 527 | return addConstantUtf8Reference(Symbol.CONSTANT_CLASS_TAG, value); |
| 528 | } |
| 529 | |
| 530 | /** |
| 531 | * Adds a CONSTANT_Fieldref_info to the constant pool of this symbol table. Does nothing if the |
no test coverage detected