Class MutableClass


  • public class MutableClass
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      org.objectweb.asm.tree.ClassNode classNode  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addField​(int index, org.objectweb.asm.tree.FieldNode fieldNode)  
      void addInterface​(java.lang.String internalName)  
      void addMethod​(org.objectweb.asm.tree.MethodNode methodNode)  
      java.util.List<org.objectweb.asm.tree.FieldNode> getFields()  
      java.lang.Iterable<? extends org.objectweb.asm.tree.MethodNode> getMethods()  
      java.lang.String getName()  
      boolean hasAnnotation​(java.lang.Class<? extends java.lang.annotation.Annotation> annotationClass)  
      boolean isAnnotation()  
      boolean isInterface()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • classNode

        public final org.objectweb.asm.tree.ClassNode classNode
    • Method Detail

      • isInterface

        public boolean isInterface()
      • isAnnotation

        public boolean isAnnotation()
      • hasAnnotation

        public boolean hasAnnotation​(java.lang.Class<? extends java.lang.annotation.Annotation> annotationClass)
      • getName

        public java.lang.String getName()
      • getMethods

        public java.lang.Iterable<? extends org.objectweb.asm.tree.MethodNode> getMethods()
      • addMethod

        public void addMethod​(org.objectweb.asm.tree.MethodNode methodNode)
      • getFields

        public java.util.List<org.objectweb.asm.tree.FieldNode> getFields()
      • addField

        public void addField​(int index,
                             org.objectweb.asm.tree.FieldNode fieldNode)
      • addInterface

        public void addInterface​(java.lang.String internalName)