java - Moving an inner class to another outer class using bcel -


i want move inner class outer class outer class. possible using bcel? e.g:

class outer1{     ---     class inner{      ----     } } 

will converted to:

class outer2{     ---     class inner{         ----     } } 

and

class outer1{     ---- } 

thanks.


Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -