comparison dwtx/jface/text/hyperlink/URLHyperlinkDetector.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 26688fec6d23
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
51 /** 51 /**
52 * Creates a new URL hyperlink detector. 52 * Creates a new URL hyperlink detector.
53 * 53 *
54 * @since 3.2 54 * @since 3.2
55 */ 55 */
56 public URLHyperlinkDetector() { 56 public this() {
57 } 57 }
58 58
59 /** 59 /**
60 * Creates a new URL hyperlink detector. 60 * Creates a new URL hyperlink detector.
61 * 61 *
62 * @param textViewer the text viewer in which to detect the hyperlink 62 * @param textViewer the text viewer in which to detect the hyperlink
63 * @deprecated As of 3.2, replaced by {@link URLHyperlinkDetector} 63 * @deprecated As of 3.2, replaced by {@link URLHyperlinkDetector}
64 */ 64 */
65 public URLHyperlinkDetector(ITextViewer textViewer) { 65 public this(ITextViewer textViewer) {
66 } 66 }
67 67
68 /* 68 /*
69 * @see dwtx.jface.text.hyperlink.IHyperlinkDetector#detectHyperlinks(dwtx.jface.text.ITextViewer, dwtx.jface.text.IRegion, bool) 69 * @see dwtx.jface.text.hyperlink.IHyperlinkDetector#detectHyperlinks(dwtx.jface.text.ITextViewer, dwtx.jface.text.IRegion, bool)
70 */ 70 */