|
From: Torsten J. <tor...@on...> - 2004-10-24 21:23:03
|
Dave, the search facility of Spring IDE Extensions is very good. I have a few suggestions: 1. selecting "Search Again" in the search result page with a successful search adds duplicates to the list 2. selecting "Show In / Spring Beans" in the search result page for a node in the result tree view doesn't navigate to the corresponding node in the Spring Beans view For 2. BeanSearchResultPage has to implement IShowInSource and return in getShowInContext() an instance of ShowInContext which holds an input object of BeansViewLocation (prepared with project name, config name, bean name [if available] and property name [if available]) and a selection object of StructuredSelection (IResource of the selected node -> project or [config] file). The input object is recognized by Spring Beans view and the selection object i recognized by Eclipse's resource navigator or JDT's package explorer. For samples please refer to BeansView.getShowInContext() or the Beans UI action ShowInView.run(). Ups, to recognize the input object first instead of the selection (if provided both) I have to modify BeansView.show(). Ok, I will fix this now. You can find the fix in CVS head. Cheers, Torsten |