JBoss Community

Acessing instance initializer via Javassist

created by Alexey Zhukov in Javassist - View the full discussion

Can i access instance initializer of class using Javassist to modificate it, copy to method or delete?

 

class MyClass {     
     static {
          // i can access this one using CtClass.getClassInitializer()
     }
 
     public static void main(String[] args) {
         new MyClass() {
             { // need to access this one
             }
         }
     }
}

Reply to this message by going to Community

Start a new discussion in Javassist at Community