タイプ、メソッド、フィールドの名前を変更する Eclipse プラグインを作成しています。次のコードを使用して、クラスとソース ファイルの名前を変更できますが、他のクラスでのクラスの使用箇所を見つける方法がわかりません。
ITextEditor editor = (ITextEditor) PlatformUI.getWorkbench()
.getActiveWorkbenchWindow().getActivePage().getActiveEditor();
ITextSelection selection = (ITextSelection) editor
.getSelectionProvider().getSelection();
IEditorInput editorInput = editor.getEditorInput();
IJavaElement elem = JavaUI.getEditorInputJavaElement(editorInput);
if (elem instanceof ICompilationUnit) {
ICompilationUnit unit = (ICompilationUnit) elem;
IJavaElement selected = null;
try {
selected = unit.getElementAt(selection.getOffset());
} catch (JavaModelException e) {
e.printStackTrace();
}
if(selected.getElementType() == IJavaElement.TYPE) {
IType type = (IType) selected;
InputDialog input = new InputDialog(HandlerUtil.getActiveShell(event), "Rename...",
"Enter the new name for Type: " + selected.getElementName() , selected.getElementName(), null);
if(input.open() == InputDialog.OK)
{
try {
type.rename(input.getValue(), true, null);
} catch (JavaModelException e) {
e.printStackTrace();
}
}
}
}