comparison dwtx/jface/text/contentassist/ContentAssistant.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
286 private int fShowStyle; 286 private int fShowStyle;
287 287
288 private final static int SHOW_PROPOSALS= 1; 288 private final static int SHOW_PROPOSALS= 1;
289 private final static int SHOW_CONTEXT_INFO= 2; 289 private final static int SHOW_CONTEXT_INFO= 2;
290 290
291 protected AutoAssistListener() { 291 protected this() {
292 } 292 }
293 293
294 protected void start(int showStyle) { 294 protected void start(int showStyle) {
295 fShowStyle= showStyle; 295 fShowStyle= showStyle;
296 fThread= new Thread(this, JFaceTextMessages.getString("ContentAssistant.assist_delay_timer_name")); //$NON-NLS-1$ 296 fThread= new Thread(this, JFaceTextMessages.getString("ContentAssistant.assist_delay_timer_name")); //$NON-NLS-1$
1027 * overlays the completion proposals with context information list if necessary, and shows the 1027 * overlays the completion proposals with context information list if necessary, and shows the
1028 * context information above the location at which it was activated. If auto activation will be 1028 * context information above the location at which it was activated. If auto activation will be
1029 * enabled, without further configuration steps, this content assistant is activated after a 500 1029 * enabled, without further configuration steps, this content assistant is activated after a 500
1030 * milliseconds delay. It uses the default partitioning. 1030 * milliseconds delay. It uses the default partitioning.
1031 */ 1031 */
1032 public ContentAssistant() { 1032 public this() {
1033 fPartitioning= IDocumentExtension3.DEFAULT_PARTITIONING; 1033 fPartitioning= IDocumentExtension3.DEFAULT_PARTITIONING;
1034 } 1034 }
1035 1035
1036 /** 1036 /**
1037 * Sets the document partitioning this content assistant is using. 1037 * Sets the document partitioning this content assistant is using.