diff dwtx/jface/text/source/projection/ProjectionViewer.d @ 147:000f9136b8f7

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:35:05 +0200
parents 02cd5f1224d3
children f70d9508c95c
line wrap: on
line diff
--- a/dwtx/jface/text/source/projection/ProjectionViewer.d	Sun Aug 24 22:34:04 2008 +0200
+++ b/dwtx/jface/text/source/projection/ProjectionViewer.d	Sun Aug 24 22:35:05 2008 +0200
@@ -87,22 +87,22 @@
  */
 public class ProjectionViewer : SourceViewer , ITextViewerExtension5 {
 
-    private static final int BASE= INFORMATION; // see ISourceViewer.INFORMATION
+    private static const int BASE= INFORMATION; // see ISourceViewer.INFORMATION
 
     /** Operation constant for the expand operation. */
-    public static final int EXPAND= BASE + 1;
+    public static const int EXPAND= BASE + 1;
     /** Operation constant for the collapse operation. */
-    public static final int COLLAPSE= BASE + 2;
+    public static const int COLLAPSE= BASE + 2;
     /** Operation constant for the toggle projection operation. */
-    public static final int TOGGLE= BASE + 3;
+    public static const int TOGGLE= BASE + 3;
     /** Operation constant for the expand all operation. */
-    public static final int EXPAND_ALL= BASE + 4;
+    public static const int EXPAND_ALL= BASE + 4;
     /**
      * Operation constant for the collapse all operation.
      *
      * @since 3.2
      */
-    public static final int COLLAPSE_ALL= BASE + 5;
+    public static const int COLLAPSE_ALL= BASE + 5;
 
     /**
      * Internal listener to changes of the annotation model.