Bytecode Transformations: ClassData
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface ClassData { | |
/** | |
* Fully qualified name of the class. | |
*/ | |
val className: String | |
/** | |
* List of the annotations the class has. | |
*/ | |
val classAnnotations: List<String> | |
/** | |
* List of all the interfaces that this class or a superclass of this class implements. | |
*/ | |
val interfaces: List<String> | |
/** | |
* List of all the super classes that this class or a super class of this class extends. | |
*/ | |
val superClasses: List<String> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment