Can FindManager(FindManagerImpl) be replaced? I want to replace FindManagerImpl with CustomeFindManagerImpl. Because I want to rewrite 'Incremental Search (findString()method)'.
No, you cannot. However, the incremental search action is not implemented by the FindManager class, so you don't need this at all. If you want to write a different UI for incremental search, just go ahead, create a new action and provide the implementation.
-- Dmitry Jemerov Development Lead JetBrains, Inc. http://www.jetbrains.com/ "Develop with Pleasure!"
Hello masanobu,
No, you cannot. However, the incremental search action is not implemented
by the FindManager class, so you don't need this at all. If you want to write
a different UI for incremental search, just go ahead, create a new action
and provide the implementation.
--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"
Thank you for the answer.
I understood it.