Idea Community Version
Hi all,
I'm developing a plugin for IDEA community version 9 which had originally built for IDEA 6.So this is actually an upgrading work.
While doing that I encountered a problem such that Two classes are missing, which are:
- com.intellij.ide.util.TreeClassChooserDialog
- com.intellij.find.FindProgressIndicator.
I went through the API and noticed that such classes are not exist.
So I want to know whether these two class are removed from the API and what are the alternate classes I can use?
Please sign in to leave a comment.
Hello Thisum,
These classes were never part of the API and never designed to be used by
plugins; however, they do still exist in idea.jar. The correct way to access
the former API is to use the TreeClassChooserFactory API class. For the latter,
you can use the standard ProgressManager API, which creates an instance of
ProgressIndicator for you automatically.
--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"
Thank you for the quick support!
I solved my problem.