Adds a CONSTANT_Package_info to the constant pool of this symbol table. Does nothing if the constant pool already contains a similar item. @param packageName the internal name of a package. @return a new or already existing Symbol with the given value.
(final String packageName)
| 993 | * @return a new or already existing Symbol with the given value. |
| 994 | */ |
| 995 | Symbol addConstantPackage(final String packageName) { |
| 996 | return addConstantUtf8Reference(Symbol.CONSTANT_PACKAGE_TAG, packageName); |
| 997 | } |
| 998 | |
| 999 | /** |
| 1000 | * Adds a CONSTANT_Class_info, CONSTANT_String_info, CONSTANT_MethodType_info, |
no test coverage detected