Top Deprecated
asm 9.6

Deprecated API


No API in this release is deprecated for removal.

Deprecated Item Summary

SinceDeprecated Item and Description
org.objectweb.asm.ClassReader.b

Use readByte(int) and the other read methods instead. This field will eventually be deleted.

Returns:

the index of a new or already existing method type reference item.
org.objectweb.asm.ClassWriter.newHandle
(final int tag, final String
the internal name of the field or method owner class (see Type#getInternalName()).
owner
,
final String
the name of the field or method.
name
,
final String
the descriptor of the field or method.
descriptor
)

this method is superseded by newHandle(int, String, String, String, boolean).

org.objectweb.asm.Handle.Handle(final int tag, final String
the internal name of the class that owns the field or method designated by this handle (see Type#getInternalName()).
owner
,
final String
the name of the field or method designated by this handle.
name
,
final String
the descriptor of the field or method designated by this handle.
descriptor
)

this constructor has been superseded by Handle(int, String, String, String, boolean).

org.objectweb.asm.MethodVisitor.visitMethodInsn(final int
the opcode of the type instruction to be visited. This opcode is either INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACE.
opcode
,
final String
the internal name of the method's owner class (see Type#getInternalName()).
owner
,
final String
the method's name.
name
,
final String
the method's descriptor (see Type).
descriptor
)

use visitMethodInsn(int, String, String, String, boolean) instead.