diff dwtx/jface/text/link/ILinkedModeListener.d @ 162:1a5b8f8129df

...
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 00:51:37 +0200
parents c4fb132a086c
children
line wrap: on
line diff
--- a/dwtx/jface/text/link/ILinkedModeListener.d	Wed Aug 27 14:49:30 2008 +0200
+++ b/dwtx/jface/text/link/ILinkedModeListener.d	Mon Sep 08 00:51:37 2008 +0200
@@ -38,27 +38,27 @@
 public interface ILinkedModeListener {
 
     /** Flag to <code>leave</code> specifying no special action. */
-    int NONE= 0;
+    static const int NONE= 0;
     /**
      * Flag to <code>leave</code> specifying that all nested modes should
      * exit.
      */
-    int EXIT_ALL= 1 << 0;
+    static const int EXIT_ALL= 1 << 0;
     /**
      * Flag to <code>leave</code> specifying that the caret should be moved to
      * the exit position.
      */
-    int UPDATE_CARET= 1 << 1;
+    static const int UPDATE_CARET= 1 << 1;
     /**
      * Flag to <code>leave</code> specifying that a UI of a parent mode should
      * select the current position.
      */
-    int SELECT= 1 << 2;
+    static const int SELECT= 1 << 2;
     /**
      * Flag to <code>leave</code> specifying that document content outside of
      * a linked position was modified.
      */
-    int EXTERNAL_MODIFICATION= 1 << 3;
+    static const int EXTERNAL_MODIFICATION= 1 << 3;
 
     /**
      * The leave event occurs when linked is left.