comparison dwtx/jface/internal/text/link/contentassist/ContentAssistant2.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
241 private int fShowStyle; 241 private int fShowStyle;
242 242
243 private final static int SHOW_PROPOSALS= 1; 243 private final static int SHOW_PROPOSALS= 1;
244 private final static int SHOW_CONTEXT_INFO= 2; 244 private final static int SHOW_CONTEXT_INFO= 2;
245 245
246 protected AutoAssistListener() { 246 protected this() {
247 } 247 }
248 248
249 protected void start(int showStyle) { 249 protected void start(int showStyle) {
250 fShowStyle= showStyle; 250 fShowStyle= showStyle;
251 fThread= new Thread(this, ContentAssistMessages.getString("ContentAssistant.assist_delay_timer_name")); //$NON-NLS-1$ 251 fThread= new Thread(this, ContentAssistMessages.getString("ContentAssistant.assist_delay_timer_name")); //$NON-NLS-1$
723 * overlays the completion proposals with context information list if necessary, and 723 * overlays the completion proposals with context information list if necessary, and
724 * shows the context information above the location at which it was activated. If auto 724 * shows the context information above the location at which it was activated. If auto
725 * activation will be enabled, without further configuration steps, this content assistant 725 * activation will be enabled, without further configuration steps, this content assistant
726 * is activated after a 500 ms delay. It uses the default partitioning. 726 * is activated after a 500 ms delay. It uses the default partitioning.
727 */ 727 */
728 public ContentAssistant2() { 728 public this() {
729 setContextInformationPopupOrientation(CONTEXT_INFO_ABOVE); 729 setContextInformationPopupOrientation(CONTEXT_INFO_ABOVE);
730 setInformationControlCreator(getInformationControlCreator()); 730 setInformationControlCreator(getInformationControlCreator());
731 731
732 // JavaTextTools textTools= JavaPlugin.getDefault().getJavaTextTools(); 732 // JavaTextTools textTools= JavaPlugin.getDefault().getJavaTextTools();
733 // IColorManager manager= textTools.getColorManager(); 733 // IColorManager manager= textTools.getColorManager();