Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[emfrefactor-dev] Move method Refactoring

Hi,
Let me explain the problem with an example.

A class
A
{

int a ;
int b;
public void printa1()
{}

}
If i want to move this method to to another class B, i am unable to do this.

But if i pass the class B object in function
printa1(B b){}, only then i am able to do move method to class B.

Can anyone explain, why is this happening in eclipse?

Regards
Lehmia kiran

Back to the top