Package | Description |
---|---|
org.objectweb.asm |
Provides a small and fast bytecode manipulation framework.
|
org.objectweb.asm.commons |
Provides some useful class and method adapters.
|
org.objectweb.asm.tree |
Provides an ASM visitor that constructs a tree representation of the
classes it visits.
|
org.objectweb.asm.util |
Provides ASM visitors that can be useful for programming and
debugging purposes.
|
Modifier and Type | Method and Description |
---|---|
RecordComponentVisitor |
RecordComponentVisitor.getDelegate()
The record visitor to which this visitor must delegate method calls.
|
RecordComponentVisitor |
ClassWriter.visitRecordComponent(String name,
String descriptor,
String signature) |
RecordComponentVisitor |
ClassVisitor.visitRecordComponent(String name,
String descriptor,
String signature)
Visits a record component of the class.
|
Constructor and Description |
---|
RecordComponentVisitor(int api,
RecordComponentVisitor recordComponentVisitor)
Constructs a new
RecordComponentVisitor . |
Modifier and Type | Class and Description |
---|---|
class |
RecordComponentRemapper
A
RecordComponentVisitor that remaps types with a Remapper . |
Modifier and Type | Method and Description |
---|---|
protected RecordComponentVisitor |
ClassRemapper.createRecordComponentRemapper(RecordComponentVisitor recordComponentVisitor)
Constructs a new remapper for record components.
|
RecordComponentVisitor |
ClassRemapper.visitRecordComponent(String name,
String descriptor,
String signature) |
Modifier and Type | Method and Description |
---|---|
protected RecordComponentVisitor |
ClassRemapper.createRecordComponentRemapper(RecordComponentVisitor recordComponentVisitor)
Constructs a new remapper for record components.
|
Constructor and Description |
---|
RecordComponentRemapper(int api,
RecordComponentVisitor recordComponentVisitor,
Remapper remapper)
Constructs a new
RecordComponentRemapper . |
RecordComponentRemapper(RecordComponentVisitor recordComponentVisitor,
Remapper remapper)
Constructs a new
RecordComponentRemapper . |
Modifier and Type | Class and Description |
---|---|
class |
RecordComponentNode
A node that represents a record component.
|
Modifier and Type | Method and Description |
---|---|
RecordComponentVisitor |
ClassNode.visitRecordComponent(String name,
String descriptor,
String signature) |
Modifier and Type | Class and Description |
---|---|
class |
CheckRecordComponentAdapter
A
RecordComponentVisitor that checks that its methods are properly used. |
class |
TraceRecordComponentVisitor
A
RecordComponentVisitor that prints the record components it visits with a Printer . |
Modifier and Type | Method and Description |
---|---|
RecordComponentVisitor |
CheckClassAdapter.visitRecordComponent(String name,
String descriptor,
String signature) |
RecordComponentVisitor |
TraceClassVisitor.visitRecordComponent(String name,
String descriptor,
String signature) |
Constructor and Description |
---|
CheckRecordComponentAdapter(int api,
RecordComponentVisitor recordComponentVisitor)
Constructs a new
CheckRecordComponentAdapter . |
CheckRecordComponentAdapter(RecordComponentVisitor recordComponentVisitor)
Constructs a new
CheckRecordComponentAdapter . |
TraceRecordComponentVisitor(RecordComponentVisitor recordComponentVisitor,
Printer printer)
Constructs a new
TraceRecordComponentVisitor . |
Copyright © 2023. All rights reserved.