diff 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
line wrap: on
line diff
--- a/dwtx/jface/text/DocumentRewriteSessionType.d	Sun Aug 24 22:31:00 2008 +0200
+++ b/dwtx/jface/text/DocumentRewriteSessionType.d	Sun Aug 24 22:34:04 2008 +0200
@@ -181,24 +181,24 @@
      * session type should only be used for <em>large</em> operations that touch more than about
      * fifty lines. Use {@link #UNRESTRICTED_SMALL} for small operations.
      */
-    public final static DocumentRewriteSessionType UNRESTRICTED= new DocumentRewriteSessionType();
+    public const static DocumentRewriteSessionType UNRESTRICTED= new DocumentRewriteSessionType();
     /**
      * An small unrestricted rewrite session is a short sequence of unrestricted replace operations.
      * This should be used for changes that touch less than about fifty lines.
      * 
      * @since 3.3
      */
-    public final static DocumentRewriteSessionType UNRESTRICTED_SMALL= new DocumentRewriteSessionType();
+    public const static DocumentRewriteSessionType UNRESTRICTED_SMALL= new DocumentRewriteSessionType();
     /**
      * A sequential rewrite session is a sequence of non-overlapping replace
      * operations starting at an arbitrary document offset.
      */
-    public final static DocumentRewriteSessionType SEQUENTIAL= new DocumentRewriteSessionType();
+    public const static DocumentRewriteSessionType SEQUENTIAL= new DocumentRewriteSessionType();
     /**
      * A strictly sequential rewrite session is a sequence of non-overlapping
      * replace operations from the start of the document to its end.
      */
-    public final static DocumentRewriteSessionType STRICTLY_SEQUENTIAL= new DocumentRewriteSessionType();
+    public const static DocumentRewriteSessionType STRICTLY_SEQUENTIAL= new DocumentRewriteSessionType();
 
 
     /**