comparison dwtx/jface/text/source/projection/ProjectionAnnotation.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 02cd5f1224d3
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
87 private bool fIsRangeIndication= false; 87 private bool fIsRangeIndication= false;
88 88
89 /** 89 /**
90 * Creates a new expanded projection annotation. 90 * Creates a new expanded projection annotation.
91 */ 91 */
92 public ProjectionAnnotation() { 92 public this() {
93 this(false); 93 this(false);
94 } 94 }
95 95
96 /** 96 /**
97 * Creates a new projection annotation. When <code>isCollapsed</code> 97 * Creates a new projection annotation. When <code>isCollapsed</code>
98 * is <code>true</code> the annotation is initially collapsed. 98 * is <code>true</code> the annotation is initially collapsed.
99 * 99 *
100 * @param isCollapsed <code>true</code> if the annotation should initially be collapsed, <code>false</code> otherwise 100 * @param isCollapsed <code>true</code> if the annotation should initially be collapsed, <code>false</code> otherwise
101 */ 101 */
102 public ProjectionAnnotation(bool isCollapsed) { 102 public this(bool isCollapsed) {
103 super(TYPE, false, null); 103 super(TYPE, false, null);
104 fIsCollapsed= isCollapsed; 104 fIsCollapsed= isCollapsed;
105 } 105 }
106 106
107 /** 107 /**