I have a library(com.x.y.z) used in my project.
Recently the package name in library changed to com.a.b.c.
There are many instances of com.x.y.z package in my project and eclipse is showing compile time errors to change package name from com.x.y.z to com.a.b.c. It is hard to do it in every class by pressing Control+Shift+O (import all missing classes at once) as there are more than 100 classes contain the same error.
Is there any special short cut key to import missing classes at once in all classes?