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

mod rewrite - Using "?" when rewriting the URL -

Admob integration with pygame in android -

python - duplicate table (identical) including primary key - using django south -