Adds a handle to the constant pool of the class being build. Does nothing if the constant pool already contains a similar item. This method is intended for Attribute sub classes, and is normally not needed by class generators or adapters. @param tag the kind of this handle. Must be {
(
final int tag, final String owner, final String name, final String descriptor)
| 809 | * boolean)}. |
| 810 | */ |
| 811 | @Deprecated |
| 812 | public int newHandle( |
| 813 | final int tag, final String owner, final String name, final String descriptor) { |
| 814 | return newHandle(tag, owner, name, descriptor, tag == Opcodes.H_INVOKEINTERFACE); |
| 815 | } |
| 816 | |
| 817 | /** |
| 818 | * Adds a handle to the constant pool of the class being build. Does nothing if the constant pool |
nothing calls this directly
no test coverage detected