comparison dwtx/jface/text/AbstractLineTracker.d @ 146:75302ef3f92f

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents 26688fec6d23
children 000f9136b8f7
comparison
equal deleted inserted replaced
145:02cd5f1224d3 146:75302ef3f92f
200 * Representation of replace and set requests. 200 * Representation of replace and set requests.
201 * 201 *
202 * @since 3.1 202 * @since 3.1
203 */ 203 */
204 protected static class Request { 204 protected static class Request {
205 public final int offset; 205 public const int offset;
206 public final int length; 206 public const int length;
207 public final String text; 207 public const String text;
208 208
209 public this(int offset, int length, String text) { 209 public this(int offset, int length, String text) {
210 this.offset= offset; 210 this.offset= offset;
211 this.length= length; 211 this.length= length;
212 this.text= text; 212 this.text= text;