Moving an inner class to another outer class using bcel

172 Views Asked by At

I want to move an inner class from an outer class to another outer class. Is it possible to do it using bcel? For e.g:

class Outer1{
    ---
    class Inner{
     ----
    }
}

will be converted to:

class Outer2{
    ---
    class Inner{
        ----
    }
}

and

class Outer1{
    ----
}

Thanks.

0

There are 0 best solutions below