I have imported an Existing Java Application into my Workspace . I see that , a class with same name is present in different packages with in the Application.
For exampl
Directly apply full Class Names wherever applicable. Eg-
public class SomeClass { public someMethod() { com.myapp.someotherpackage.Status = "something"; com.some.other.package.Status = "otherthing"; if(com.myapp.someotherpackage.Status == com.some.other.package.Status) { } .... } }