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

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents 7d818bd32d63
children 1a5b8f8129df
comparison
equal deleted inserted replaced
145:02cd5f1224d3 146:75302ef3f92f
179 /** 179 /**
180 * An unrestricted rewrite session is a sequence of unrestricted replace operations. This 180 * An unrestricted rewrite session is a sequence of unrestricted replace operations. This
181 * session type should only be used for <em>large</em> operations that touch more than about 181 * session type should only be used for <em>large</em> operations that touch more than about
182 * fifty lines. Use {@link #UNRESTRICTED_SMALL} for small operations. 182 * fifty lines. Use {@link #UNRESTRICTED_SMALL} for small operations.
183 */ 183 */
184 public final static DocumentRewriteSessionType UNRESTRICTED= new DocumentRewriteSessionType(); 184 public const static DocumentRewriteSessionType UNRESTRICTED= new DocumentRewriteSessionType();
185 /** 185 /**
186 * An small unrestricted rewrite session is a short sequence of unrestricted replace operations. 186 * An small unrestricted rewrite session is a short sequence of unrestricted replace operations.
187 * This should be used for changes that touch less than about fifty lines. 187 * This should be used for changes that touch less than about fifty lines.
188 * 188 *
189 * @since 3.3 189 * @since 3.3
190 */ 190 */
191 public final static DocumentRewriteSessionType UNRESTRICTED_SMALL= new DocumentRewriteSessionType(); 191 public const static DocumentRewriteSessionType UNRESTRICTED_SMALL= new DocumentRewriteSessionType();
192 /** 192 /**
193 * A sequential rewrite session is a sequence of non-overlapping replace 193 * A sequential rewrite session is a sequence of non-overlapping replace
194 * operations starting at an arbitrary document offset. 194 * operations starting at an arbitrary document offset.
195 */ 195 */
196 public final static DocumentRewriteSessionType SEQUENTIAL= new DocumentRewriteSessionType(); 196 public const static DocumentRewriteSessionType SEQUENTIAL= new DocumentRewriteSessionType();
197 /** 197 /**
198 * A strictly sequential rewrite session is a sequence of non-overlapping 198 * A strictly sequential rewrite session is a sequence of non-overlapping
199 * replace operations from the start of the document to its end. 199 * replace operations from the start of the document to its end.
200 */ 200 */
201 public final static DocumentRewriteSessionType STRICTLY_SEQUENTIAL= new DocumentRewriteSessionType(); 201 public const static DocumentRewriteSessionType STRICTLY_SEQUENTIAL= new DocumentRewriteSessionType();
202 202
203 203
204 /** 204 /**
205 * Prohibit external object creation. 205 * Prohibit external object creation.
206 */ 206 */