Package io.papermc.asm
Interface ClassProcessingContext
@DefaultQualifier(org.checkerframework.checker.nullness.qual.NonNull.class)
public interface ClassProcessingContext
-
Method Summary
Modifier and TypeMethodDescriptionReturns the name of the class currently being processed.Returns the name of the super class of the class currently being processed.
-
Method Details
-
classInfoProvider
ClassInfoProvider classInfoProvider() -
processingClassName
String processingClassName()Returns the name of the class currently being processed. Only available once the class header has been visited.- Returns:
- name of the class currently being processed
-
processingClassSuperClassName
Returns the name of the super class of the class currently being processed. Only available once the class header has been visited.- Returns:
- name of the super class of the class currently being processed
-