This must be possible but I just can't figure it out in Eclipse. I have
/** ClassA.java */ class A { ... } class B { ... } and I'd like to select class B and extract to its own file so that I get:
/** ClassA.java */ class A { ... } and
/** ClassB.java */ class B { ... } How do I do this in Eclipse?