|
From: Markus B. <mba...@us...> - 2005-12-22 20:07:18
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/extensions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9430/src/org/rubypeople/rdt/ui/extensions Modified Files: ITextHoverProvider.java Log Message: added patch from murphee: removed "RI: " prefix, shows 15 instead of 3 lines of RI result, uses a different flag for RI which shows less cluttered formatting Index: ITextHoverProvider.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/extensions/ITextHoverProvider.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ITextHoverProvider.java 9 Dec 2005 02:05:06 -0000 1.1 --- ITextHoverProvider.java 22 Dec 2005 20:07:10 -0000 1.2 *************** *** 12,15 **** --- 12,21 ---- */ public interface ITextHoverProvider { + /** + * + * @param textViewer the ITextViewer that shows this hover + * @param hoverRegion the region that was preselected by the Ruby Hover system + * @return the hover text OR null if no text was found + */ public String getHoverInfo(ITextViewer textViewer, IRegion hoverRegion); } |