comparison dwtx/jface/text/source/DefaultAnnotationHover.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
107 /** 107 /**
108 * Creates a new default annotation hover. 108 * Creates a new default annotation hover.
109 * 109 *
110 * @since 3.4 110 * @since 3.4
111 */ 111 */
112 public DefaultAnnotationHover() { 112 public this() {
113 this(false); 113 this(false);
114 } 114 }
115 115
116 /** 116 /**
117 * Creates a new default annotation hover. 117 * Creates a new default annotation hover.
118 * 118 *
119 * @param showLineNumber <code>true</code> if the line number should be shown when no annotation is found 119 * @param showLineNumber <code>true</code> if the line number should be shown when no annotation is found
120 * @since 3.4 120 * @since 3.4
121 */ 121 */
122 public DefaultAnnotationHover(bool showLineNumber) { 122 public this(bool showLineNumber) {
123 fShowLineNumber= showLineNumber; 123 fShowLineNumber= showLineNumber;
124 } 124 }
125 125
126 /* 126 /*
127 * @see dwtx.jface.text.source.IAnnotationHover#getHoverInfo(dwtx.jface.text.source.ISourceViewer, int) 127 * @see dwtx.jface.text.source.IAnnotationHover#getHoverInfo(dwtx.jface.text.source.ISourceViewer, int)