diff dwtx/jface/text/hyperlink/HyperlinkManager.d @ 147:000f9136b8f7

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:35:05 +0200
parents 75302ef3f92f
children f70d9508c95c
line wrap: on
line diff
--- a/dwtx/jface/text/hyperlink/HyperlinkManager.d	Sun Aug 24 22:34:04 2008 +0200
+++ b/dwtx/jface/text/hyperlink/HyperlinkManager.d	Sun Aug 24 22:35:05 2008 +0200
@@ -89,7 +89,7 @@
      * hyperlink presenter and no further detector
      * is consulted.
      */
-    public static final DETECTION_STRATEGY FIRST= new DETECTION_STRATEGY("first"); //$NON-NLS-1$
+    public static const DETECTION_STRATEGY FIRST= new DETECTION_STRATEGY("first"); //$NON-NLS-1$
 
     /**
      * All detected hyperlinks from all detectors are collected
@@ -99,7 +99,7 @@
      * returns <code>true</code>.
      * </p>
      */
-    public static final DETECTION_STRATEGY ALL= new DETECTION_STRATEGY("all"); //$NON-NLS-1$
+    public static const DETECTION_STRATEGY ALL= new DETECTION_STRATEGY("all"); //$NON-NLS-1$
 
     /**
      * All detected hyperlinks from all detectors are collected
@@ -110,14 +110,14 @@
      * returns <code>true</code>.
      * </p>
      */
-    public static final DETECTION_STRATEGY LONGEST_REGION_ALL= new DETECTION_STRATEGY("all with same longest region"); //$NON-NLS-1$
+    public static const DETECTION_STRATEGY LONGEST_REGION_ALL= new DETECTION_STRATEGY("all with same longest region"); //$NON-NLS-1$
 
     /**
      * All detected hyperlinks from all detectors are collected
      * and form all those with the longest region only the first
      * one is passed to the hyperlink presenter.
      */
-    public static final DETECTION_STRATEGY LONGEST_REGION_FIRST= new DETECTION_STRATEGY("first with longest region"); //$NON-NLS-1$
+    public static const DETECTION_STRATEGY LONGEST_REGION_FIRST= new DETECTION_STRATEGY("first with longest region"); //$NON-NLS-1$
 
 
     /** The text viewer on which this hyperlink manager works. */