comparison dwtx/jface/text/source/AnnotationBarHoverManager.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
153 153
154 154
155 /** 155 /**
156 * Creates a new information control closer. 156 * Creates a new information control closer.
157 */ 157 */
158 public Closer() { 158 public this() {
159 } 159 }
160 160
161 /* 161 /*
162 * @see IInformationControlCloser#setSubjectControl(Control) 162 * @see IInformationControlCloser#setSubjectControl(Control)
163 */ 163 */
383 * @param ruler the vertical ruler this manager connects to 383 * @param ruler the vertical ruler this manager connects to
384 * @param annotationHover the annotation hover providing the information to be displayed 384 * @param annotationHover the annotation hover providing the information to be displayed
385 * @param creator the information control creator 385 * @param creator the information control creator
386 * @deprecated As of 2.1, replaced by {@link AnnotationBarHoverManager#AnnotationBarHoverManager(IVerticalRulerInfo, ISourceViewer, IAnnotationHover, IInformationControlCreator)} 386 * @deprecated As of 2.1, replaced by {@link AnnotationBarHoverManager#AnnotationBarHoverManager(IVerticalRulerInfo, ISourceViewer, IAnnotationHover, IInformationControlCreator)}
387 */ 387 */
388 public AnnotationBarHoverManager(ISourceViewer sourceViewer, IVerticalRuler ruler, IAnnotationHover annotationHover, IInformationControlCreator creator) { 388 public this(ISourceViewer sourceViewer, IVerticalRuler ruler, IAnnotationHover annotationHover, IInformationControlCreator creator) {
389 this(ruler, sourceViewer, annotationHover, creator); 389 this(ruler, sourceViewer, annotationHover, creator);
390 } 390 }
391 391
392 /** 392 /**
393 * Creates an annotation hover manager with the given parameters. In addition, 393 * Creates an annotation hover manager with the given parameters. In addition,
397 * @param sourceViewer the source viewer this manager connects to 397 * @param sourceViewer the source viewer this manager connects to
398 * @param annotationHover the annotation hover providing the information to be displayed or <code>null</code> if none 398 * @param annotationHover the annotation hover providing the information to be displayed or <code>null</code> if none
399 * @param creator the information control creator 399 * @param creator the information control creator
400 * @since 2.1 400 * @since 2.1
401 */ 401 */
402 public AnnotationBarHoverManager(IVerticalRulerInfo rulerInfo, ISourceViewer sourceViewer, IAnnotationHover annotationHover, IInformationControlCreator creator) { 402 public this(IVerticalRulerInfo rulerInfo, ISourceViewer sourceViewer, IAnnotationHover annotationHover, IInformationControlCreator creator) {
403 super(creator); 403 super(creator);
404 404
405 Assert.isNotNull(sourceViewer); 405 Assert.isNotNull(sourceViewer);
406 406
407 fSourceViewer= sourceViewer; 407 fSourceViewer= sourceViewer;